:root {
    --swamp-dark: #0b1a0e;
    --swamp-green: #2d5a27;
    --moss: #8da47e;
    --warning-orange: #d97706;
    --text-light: #f3f4f6;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--swamp-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: var(--moss);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 700;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--moss);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 26, 14, 0.7), var(--swamp-dark));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 15vh;
}

.hero-content h1 {
    font-family: 'Creepster', cursive;
    font-size: 6rem;
    margin-bottom: 1rem;
    color: var(--moss);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--warning-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b45309;
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid var(--moss);
    color: var(--moss);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: bold;
}

/* Grid Section */
.info-section {
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--moss);
}

.features {
    list-style: none;
    margin-top: 1.5rem;
}

.features li {
    background: rgba(141, 164, 126, 0.1);
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    border-left: 4px solid var(--moss);
}

.swamp-card {
    height: 400px;
    background: #1a2e1d;
    border: 2px dashed var(--moss);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* CTA Section */
.cta-section {
    background: var(--swamp-green);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--moss);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    nav ul { display: none; }
}
