/* ===================== BASE STYLES ===================== */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #0F2A1F;
    color: #F2EFEA;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    color: #F2EFEA;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }

p {
    font-size: 1rem;
    color: #F2EFEA;
}

.accent {
    color: #B08D57;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 80px 20px;
}

.section-light {
    background-color: #1F3D2B;
}

.section-dark {
    background-color: #0F2A1F;
}

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0F2A1F; /* solid header color */
    border-bottom: 1px solid #0F2A1F;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;       /* vertically center logo and nav */
    justify-content: center;   /* center logo horizontally */
    padding: 20px 40px;        /* header taller than logo */
    min-height: 100px;         /* ensures header height >= logo */
}

/* Header container to position nav on sides if needed */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center; /* logo in center */
    width: 100%;
    position: relative;
}

/* ===== LOGO ===== */
.header-logo {
    height: 100px;             /* fits inside header */
    transition: all 0.3s ease;
    position: relative;       /* not absolute */
}

/* ===== NAVIGATION ===== */
.nav {
    position: absolute;
    right: 40px;              /* keeps nav on the right */
    display: flex;
    gap: 30px;
}

.nav a {
    color: #F2EFEA;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
}

.nav a:hover {
    color: #B08D57;
}

/* ===== SHRINK HEADER ON SCROLL ===== */
.site-header.shrink {
    padding: 10px 40px;       /* smaller padding */
}

.site-header.shrink .header-logo {
    height: 50px;             /* shrink logo proportionally */
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 40px;              /* same as nav for mobile */
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #F2EFEA;
    margin: 6px 0;
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #121212;
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #F2EFEA;
    margin: 6px 0;
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #121212;
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===================== HERO ===================== */
.hero {
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #F2EFEA;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 100vh;
    margin-top: -80px;
    padding-top: 160px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #B08D57;
    color: #F2EFEA;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 30px;
}

.btn:hover {
    opacity: 0.9;
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #0F2A1F;
    color: #F2EFEA;
    text-align: center;
    padding: 40px 20px;
}

/* ===================== SOCIAL LINKS ===================== */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.social-links a {
    font-size: 48px;
    color: #F2EFEA;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .nav {
        margin-top: 10px;
    }

    .nav a {
        margin: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}



