/* --- 1. Variables & Root --- */
:root {
    --color-sage: #c0c8b5;
    --color-blue-grey: #91a8a3;
    --color-dark-green: #5a7066;
    --color-black-green: #1f2520;
    --color-terracotta: #d4663e;
    --color-coral: #cb7e68;
    --color-cream: #ede6d0;
    --color-mint: #cae6d1;
    --color-bronze: #947852;
    --color-sand: #e3ceb4;
    --color-white: #ffffff;
    --color-gold: #d4af37;

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition-speed: 0.3s;
}

/* --- 2. General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-black-green);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* --- 3. Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    color: var(--color-black-green);
    margin-bottom: 1rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-terracotta);
}

/* --- 4. Navigation & Logo --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all var(--transition-speed) ease-in-out;
    color: var(--color-white);
    background-color: transparent; /* Explicitly start transparent */
}

nav.scrolled {
    background-color: var(--color-black-green);
    padding: 1rem 5%; /* Shrinks slightly when scrolling */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1100; /* Keeps logo visible above mobile overlay */
}

.logo img {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--color-terracotta);
}

/* --- 5. Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../assets/images/interior/Latoya0033.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
}

.hero h1 {
    font-size: 4rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- 6. Sections General --- */
section {
    padding: 5rem 10%;
}

/* Menu Tabs */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-black-green);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--color-black-green);
    color: white;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

/* --- 7. Reviews Section --- */
.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 350px;
}

.review-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- 8. Mobile Navigation & Burger --- */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: currentColor;
    margin: 5px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--color-black-green);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0; /* Handled by JS animation */
        margin: 1.5rem 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }
}

/* Burger Animation */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* Animation defined in JS */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}
.logo-img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease;
}

.social-icon {
    height: 32px;
    width: auto;
    margin-right: 15px;
    transition: all 0.3s ease;
}

/* --- MOBILE (Screen width 768px or smaller) --- */
@media screen and (max-width: 768px) {
    .logo-img {
        height: 55px; /* Your custom mobile height */
    }

    .social-icon {
        height: 32px; /* Keeps icons tap-friendly */
        margin-right: 10px;
    }

    /* Centers the social icons block in the mobile menu overlay */
    .nav-links li:first-child {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}
.about-text {
    font-size: 20px;
}
#contact{
    background-color: #1A1A1A, #1B3022, #4A0E0E;
}