/* Navigation Styles */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    margin-right: 1rem;
    flex-shrink: 0;
}

.nav-logo a {
    text-decoration: none;
    display: inline-block;
}

.nav-logo a:hover {
    transform: none;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    position: relative;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-logo a:hover .logo-text {
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
}

.logo-text::before,
.logo-text::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.logo-text::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.logo-text::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.nav-logo a:hover .logo-text::before,
.nav-logo a:hover .logo-text::after {
    width: 6px;
    height: 6px;
    border-color: rgba(212, 175, 55, 0.3);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a.active {
    color: #d4af37;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.menu-icon.open {
    background-color: transparent;
}

.menu-icon.open::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-icon.open::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1000;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .nav-links a:hover {
        opacity: 1;
        transform: translateY(-2px);
    }
}

/* Skip to Main Content */
.skip-to-main {
    position: fixed;
    top: -100%;
    left: 1rem;
    background: #d4af37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.3s ease;
    z-index: 1001;
}

.skip-to-main:focus {
    top: 0;
}
