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

:root {
    --color-forest: #2d6a4f;
    --color-forest-light: #40916c;
    --color-meadow: #52b788;
    --color-meadow-light: #74c69d;
    --color-sage: #b7e4c7;
    --color-cream: #f5f0e8;
    --color-warm-white: #faf8f4;
    --color-bark: #3a2e25;
    --color-earth: #5c4a3a;
    --color-stone: #8a7968;
    --color-mist: #e8e4de;
    --color-gold: #daa520;
    --color-gold-light: #f0d060;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-accent: 'Lora', Georgia, serif;
    --font-ui: 'Nunito', 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-bark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--color-gold);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-bark);
    line-height: 1.3;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-sage);
    border-top-color: var(--color-forest);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    font-family: var(--font-ui);
    color: var(--color-stone);
    font-size: 0.95rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-forest) 0%, #1b4332 100%);
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.logo:hover {
    color: var(--color-gold-light);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text small {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.85;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: block;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 0.5rem 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: var(--color-bark);
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--color-sage);
    color: var(--color-forest);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

main {
    margin-top: 72px;
    min-height: calc(100vh - 72px - 300px);
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27,67,50,0.55) 0%, rgba(45,106,79,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.25rem;
    font-family: var(--font-accent);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(218,165,32,0.35);
}

.hero-btn:hover {
    background: var(--color-gold-light);
    color: var(--color-bark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,165,32,0.45);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
}

.section-title p {
    color: var(--color-stone);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-top: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.park-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.park-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.park-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.park-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.park-card:hover .park-card-image img {
    transform: scale(1.05);
}

.park-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-forest);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.park-card-body {
    padding: 1.5rem;
}

.park-card-body h3 {
    margin-bottom: 0.5rem;
}

.park-card-body h3 a {
    color: var(--color-bark);
}

.park-card-body h3 a:hover {
    color: var(--color-forest);
}

.park-card-body p {
    color: var(--color-stone);
    font-size: 0.95rem;
    line-height: 1.6;
}

.park-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-mist);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--color-stone);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-forest);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.read-more-link:hover {
    color: var(--color-gold);
}

.read-more-link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.read-more-link:hover::after {
    transform: translateX(4px);
}

.info-section {
    background: linear-gradient(135deg, var(--color-forest) 0%, #1b4332 100%);
    color: #fff;
    padding: 4rem 1.5rem;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.info-item h3 {
    color: var(--color-gold-light);
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

.features-section {
    background: var(--color-warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-sage), var(--color-meadow-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-forest);
}

.feature-text h3 {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}

.feature-text p {
    color: var(--color-stone);
    font-size: 0.95rem;
}

.article-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.article-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.article-hero .hero-overlay {
    z-index: 2;
}

.article-hero-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.article-hero-content h1 {
    color: #fff;
    font-size: 2.8rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.article-hero-content .article-meta {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-ui);
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.article-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-earth);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-earth);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-image-block {
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-image-block figcaption {
    padding: 0.8rem 1.2rem;
    background: var(--color-warm-white);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--color-stone);
    text-align: center;
}

.article-sidebar-box {
    background: linear-gradient(135deg, var(--color-sage), var(--color-meadow-light));
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin: 2rem 0;
}

.article-sidebar-box h3 {
    color: var(--color-forest);
    margin-bottom: 0.8rem;
}

.article-sidebar-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-sidebar-box li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--color-bark);
    padding-left: 1.2rem;
    position: relative;
}

.article-sidebar-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--color-forest);
    border-radius: 50%;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-mist);
    gap: 1rem;
}

.article-nav a {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.article-nav a:hover {
    background: var(--color-sage);
}

.page-header {
    background: linear-gradient(135deg, var(--color-forest) 0%, #1b4332 100%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.4rem;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-accent);
    max-width: 600px;
    margin: 0.8rem auto 0;
    font-size: 1.1rem;
}

.about-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-earth);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.about-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    color: var(--color-forest);
    margin-bottom: 0.6rem;
}

.contact-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-card h3 {
    color: var(--color-forest);
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: var(--color-earth);
    font-size: 0.95rem;
}

.contact-card a {
    font-weight: 600;
}

.policy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.policy-content h2 {
    color: var(--color-forest);
    margin-top: 2.5rem;
}

.policy-content p,
.policy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-earth);
}

.policy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.external-links {
    background: var(--color-warm-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.external-links h3 {
    color: var(--color-forest);
    margin-bottom: 1rem;
}

.external-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.external-links li {
    padding: 0.5rem 0;
}

.external-links a {
    font-family: var(--font-ui);
    font-weight: 600;
}

.site-footer {
    background: linear-gradient(135deg, var(--color-bark) 0%, #2a1f17 100%);
    color: rgba(255,255,255,0.8);
    padding: 3.5rem 1.5rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-col h3 {
    color: var(--color-gold-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-ui);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-gold-light);
}

.footer-col a {
    color: var(--color-gold-light);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 1.2rem 1.5rem;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-earth);
}

.cookie-text a {
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-btn.accept {
    background: var(--color-forest);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: var(--color-forest-light);
}

.cookie-btn.reject {
    background: var(--color-mist);
    color: var(--color-bark);
}

.cookie-btn.reject:hover {
    background: var(--color-stone);
    color: #fff;
}

.breadcrumb {
    padding: 1rem 0;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--color-stone);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.breadcrumb a {
    color: var(--color-stone);
}

.breadcrumb a:hover {
    color: var(--color-forest);
}

.breadcrumb span {
    margin: 0 0.4rem;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--color-forest) 0%, #1b4332 100%);
        z-index: 1000;
        transition: right var(--transition);
        padding: 80px 1.5rem 2rem;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        padding: 0.8rem 0;
        font-size: 1.05rem;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.08);
        box-shadow: none;
        min-width: auto;
        border-radius: var(--radius-sm);
        padding: 0.3rem 0;
        margin-top: 0.3rem;
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: rgba(255,255,255,0.85);
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        height: 55vh;
        min-height: 380px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .article-hero-content h1 {
        font-size: 2rem;
    }

    .article-image-block img {
        height: 260px;
    }

    .article-nav {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

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

    .section-container {
        padding: 3rem 1rem;
    }

    .page-header {
        padding: 3rem 1rem 2rem;
    }
}