:root {
    --forest-green: #2F4F4F;
    --warm-ivory: #F5F5DC;
    --terracotta: #E2725B;
    --deep-ochre: #CC7722;
    --text-dark: #333333;
    --border-light: #E0E0E0;
    --white: #FFFFFF;
}

body {
    font-family: 'Merriweather', serif;
    background-color: var(--warm-ivory);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; }
h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--terracotta); }
h3 { font-size: 1.4rem; margin-top: 1.5rem; }

.container-fluid-custom {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark-panel {
    background-color: var(--forest-green);
    color: var(--warm-ivory);
}

.bg-dark-panel h2, .bg-dark-panel h3 {
    color: var(--warm-ivory);
}

/* Header */
header {
    background: var(--forest-green);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--warm-ivory) !important;
}

.nav-link {
    color: var(--warm-ivory) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--terracotta) !important;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 79, 79, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--warm-ivory);
}

/* Cards & Grids */
.botanical-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.botanical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.botanical-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Stats Strip */
.stat-strip {
    background: var(--deep-ochre);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

/* Accordion */
.accordion .card {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
}

.accordion .card-header {
    background: transparent;
    border: none;
    padding: 20px 0;
}

.accordion .btn-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--forest-green);
    text-decoration: none;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--forest-green);
    color: var(--warm-ivory);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.btn-custom {
    background-color: var(--terracotta);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    border: none;
    padding: 12px 30px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: var(--deep-ochre);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a2e2e;
    color: #a0b2b2;
    padding: 80px 0 20px;
}

footer h3 { color: var(--warm-ivory); margin-bottom: 25px; }
footer a { color: #a0b2b2; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--terracotta); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Catalog Panels */
.edu-panel {
    display: flex;
    margin-bottom: 60px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.edu-panel img {
    width: 40%;
    object-fit: cover;
}

.edu-panel-content {
    padding: 50px;
    width: 60%;
}

@media (max-width: 992px) {
    .edu-panel { flex-direction: column; }
    .edu-panel img, .edu-panel-content { width: 100%; }
    h1 { font-size: 2.5rem; }
}