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

/* --- BASE SETTINGS --- */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0f1115;
    color: #e5e7eb;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --- COMPONENTS --- */
header {
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-wrapper, .chart-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    height: 300px;
    width: 100%;
    position: relative;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1d24;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 50;
    border: 1px solid #333;
    border-top: 3px solid #fca311;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
#mobile-menu {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: top;
}

.menu-hidden {
    transform: scaleY(0);
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.menu-visible {
    transform: scaleY(1);
    opacity: 1;
    height: auto;
}

/* --- BACKGROUNDS --- */
.hero-bg {
    background-image: linear-gradient(rgba(15, 31, 5, 0.7), rgba(15, 31, 5, 0.8)), url('https://dwdserve.myds.me/tnlandscan/images/hartbg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
}

.construction-bg {
    position: relative;
}
.construction-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://dwdserve.myds.me/tnlandscan/images/batesbg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: luminosity;
}

.parks-bg {
    position: relative;
}
.parks-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://dwdserve.myds.me/tnlandscan/images/farmbg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

/* Our Story Page Background */
body.story-page {
    background-image: linear-gradient(rgba(15, 17, 21, 0.92), rgba(15, 17, 21, 0.95)), url('https://dwdserve.myds.me/tnlandscan/images/burgerbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}