
.main-header {
    background: linear-gradient(135deg, #ee05a8, #3a2348, #1f1129);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 217, 102, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo h1 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #FFE6A3, #FFB347, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 180, 71, 0.5);
}

.logo p {
    font-size: 0.8rem;
    color: #FFE4B5;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    color: #FFE4B5;
    position: relative;
    backdrop-filter: blur(4px);
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 217, 102, 0.9);
    color: #451768;
    box-shadow: 0 0 20px rgba(255, 217, 102, 0.8);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .main-nav ul {
        justify-content: center;
    }
}