:root {
    --primary: #cf870b;
    --text: #2d2a26;
    --bg: #fdfdfb;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(0,0,0,0.05);
}

* { margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'optima', 'Georgia', serif;
    background: url(/assets/img/bg.jpg);
    background-size: cover;
    color: var(--text);
    overflow-x: hidden;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: -1px;
}
.nav-brand span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Modern Hero --- */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 5%; gap: 5%;
}

.hero-content {
    flex: 1.7;
}

.hero-content p {
    flex: 1.7;
    font-size: 24px;
}





.hero-actions a {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px; /* Pill shape */
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-main {
    background: #cf870b;
    color: white;
    border: 2px solid #cf870b;
}

.btn-main:hover {
    background: #a86d0d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #cf870b;
    border: 2px solid #cf870b;
}

.btn-outline:hover {
    background: rgba(207, 135, 11, 0.1);
    transform: translateY(-2px);
}





.hero-image {
    flex: 1.1;
    position: relative;
}
.hero-image img {
    width: 70%;
    height: 50vh;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 30px 30px 0px var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary);
    font-style: italic;
}

span {
    color: var(--primary);
}


/* --- Discovery Sections --- */
.reveal-section {
    padding: 10px 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reveal-section.reverse{
    flex-direction: row-reverse;
}

section .hero{
    flex: 1;
    max-width: 500px;
    font-size: 18px;
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.reveal-img {
    flex: 1;
    height:500px;
    overflow:hidden;
    border-radius: 8px;
}

.reveal-img img {
    width: 95%;
    height:60%;
    object-fit: cover;
    transition: 0.5s;
}

.reveal-img:hover img {
    transform: scale(1.05);
}

.reveal-text {
    flex: 1;
    max-width: 500px;
    font-size: 18px;
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* --- Form Styling --- */
.contact-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-top:10px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: sans-serif;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}

/* --- Responsive Logic --- */

/* 1. First, hide the toggle button on desktop */
.nav-toggle {
    display: none; 
}

/* 2. Unified Mobile Breakpoint */
@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        background: var(--primary);
        border: none;
        cursor: pointer;
        padding: 0.6rem;
        border-radius: 4px;
    }

    .hamburger {
        width: 22px;
        height: 2px;
        background: white;
        display: block;
        position: relative;
        transition: background 0.2s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: white;
        transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    }

    .hamburger::before { top: -7px; }
    .hamburger::after { bottom: -7px; }

    /* The Animation to 'X' */
    .nav-toggle[aria-expanded="true"] .hamburger {
        background: transparent; /* Hides middle bar */
    }

    .nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg); /* Needs to be negative for the cross */
        bottom: 0;
    }

    /* Menu styling for mobile */
    .nav-menu {
        display: none; 
        position: absolute;
        top: 70px;
        right: 5%;
        background: white;
        border-radius: 8px;
        box-shadow: var(--shadow);
        flex-direction: column;
        width: 200px;
        padding: 1rem;
    }

    .nav-menu.open {
        display: flex;
    }

    /* General Layout adjustments for mobile */
    .hero, .reveal-section {
        flex-direction: column !important;
        text-align: center;
        padding-top: 100px;
    }
}