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

:root {
    /* Visual Variables for Light/Colorful Theme */
    --primary-color: #2E7D32; /* Rich Green */
    --accent-color: #E65100; /* Vibrant Orange */
    --dark-color: #1a202c; /* Deep Gray/Black */
    --light-color: #FAFAFA; /* Off-white background */
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Header & Navigation */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #BF360C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}
#mobile-menu.active {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.hero-overlay {
    background: linear-gradient(to right, rgba(26, 32, 44, 0.9), rgba(26, 32, 44, 0.6));
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

/* Numbered Lists for Cards */
.custom-number-list {
    list-style: none;
    padding-left: 0;
}
.custom-number-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
}
.custom-number-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: -2px;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.card-container {
    counter-reset: list-counter;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: #e2e8f0;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}

/* Forms */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-text);
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Utilities */
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-accent { background-color: var(--accent-color); }
.min-h-100 { min-height: 100vh; }