/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: clamp(0.8rem, 2vw, 1.5rem) 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.05);
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(25px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 400;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-bottom: 3rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
}

.hero p {
    color: var(--text-mid);
    margin: 0 auto;
    max-width: 700px;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    mix-blend-mode: screen;
    max-width: 100%;
}

/* --- Sections & Layouts --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2.5rem, 8vw, 6rem);
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.about-image:hover {
    border-color: rgba(var(--accent-gold-rgb), 0.2);
    transform: scale(1.02);
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
    background: linear-gradient(to bottom, transparent, #000);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    margin-bottom: 2.5rem;
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.25rem;
}

.footer-col ul li a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-low);
    font-size: 0.85rem;
}

/* --- Global Media Queries --- */
@media (max-width: 968px) {
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        width: 100%;
        right: 0;
        opacity: 0.4;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid>div {
        order: 1 !important;
    }

    .about-grid>div:last-child {
        order: 2 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .btn {
        width: 100%;
    }
}