@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #1a2a2a; /* Deep Forest Green */
    --secondary: #d4a373; /* Warm Wood / Gold */
    --accent: #e9edc9; /* Soft Leaf */
    --text: #2f3e46;
    --text-light: #52796f;
    --bg-light: #fefae0;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Sections */
section {
    padding: 100px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.4);
}

/* Content Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.info-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.info-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
}

.section-tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.text-content {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}

/* alternating sections */
.alternate-bg {
    background-color: var(--bg-light);
}

.reversed {
    grid-template-columns: 1fr 1fr;
}

.reversed .info-text {
    order: 2;
}

.reversed .image-box {
    order: 1;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* List Style */
.checklist {
    list-style: none;
    margin-top: 2rem;
}

.checklist li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 800;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 10%;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .nav-links {
        display: none; /* simple burger menu would be better, but keeping it simple as per request scope */
    }
    .info-cards {
        grid-template-columns: 1fr;
    }
    .reversed .info-text {
        order: 1;
    }
    .reversed .image-box {
        order: 2;
    }
}
