/* Page Titles */
.page-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: default;
    margin-bottom: 2rem;
}

.page-title:hover {
    transform: scale(1.02);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.page-title .text-highlight {
    color: #ffd700;
    transition: all 0.3s ease;
}

.page-title:hover .text-highlight {
    color: #ffe44d;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
