/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(53, 53, 53, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

/* Show header when scrolled */
.site-header.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-family: var(--font-fancy);
    font-size: var(--font-size-logo);
    font-weight: 900;
    text-decoration: none;
    transition: filter .35s ease;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.33);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(45deg, var(--bride-color), var(--groom-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--bride-color), var(--groom-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-link {
    position: relative;
    background: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: var(--font-size-language-switcher);
}

.lang-link::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--bride-color), var(--groom-color));
    border-radius: inherit;
    z-index: -1;
}

.lang-link:hover {
    background: transparent;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        text-align: center;
    }

    .nav-container.active {
        display: flex;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active {
        margin-top: 1rem;
    }

    .language-switcher {
        display: none;
    }

    .nav-container.active .language-switcher {
        margin-top: 1rem;
        display: inherit;
    }
}

@media (max-width: 480px) {   
    .nav-logo a {
        font-size: 1.4rem;
    }
}