/* National Park / Heritage Brand Palette - Red Rock Theme */
:root {
    --primary-rust: #A34732;
    /* Deep Terracotta */
    --accent-sand: #C47C5D;
    /* Burnt Orange / Warm Sandstone */
    --secondary-sage: #8A9A5B;
    /* Sage Green - Buttons & Accents */

    --bg-warm-white: #F9F4EE;
    /* Sandstone Cream */
    --bg-alt: #F2EFE9;
    /* Stone neutral */

    --text-dark: #332B25;
    /* Grounded dark brown */
    --text-light: #5E534A;
    /* Muted earth brown */
    --white: #FFFFFF;

    /* Spacing & Layout */
    --section-padding: 6rem 2rem;
    --container-width: 1100px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-rust);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    /* Reduced height, wider padding */
    border-radius: 50px;
    /* Pill shape for friendly look */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth lift */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    /* Fun lift animation */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #CDB67E;
    /* Warm Sandy Gold */
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B29B62;
    /* Darker Gold */
}

.btn-submit {
    background-color: var(--secondary-sage);
    color: var(--white);
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: 50px;
    /* Consistent pill shape */
}

.btn-submit:hover {
    background-color: #657352;
    transform: translateY(-3px);
    /* Lift */
    box-shadow: 0 10px 20px rgba(122, 137, 100, 0.3);
}

/* Header */
.main-header {
    background-color: #FFFFFF;
    /* Solid white restored */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    position: sticky;
    /* Sticky positioning */
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px;
    /* Increased size significantly */
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    /* Immersive height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    /* Dark text inside cream card */
    overflow: hidden;
    margin-top: 0;
    /* Zero gap */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay (60%) for readability */
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 1rem;
    position: relative;
    /* Removed Cream Card Style - Pure text on gradient */
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    top: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    /* Restored shadow for legibility */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    /* Bright White text */
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    /* Bright White body */
    letter-spacing: 0;
    line-height: 1.6;
}

.hero-text {
    display: none;
    /* Reduced clutter */
}

/* Wave Divider */
.custom-shape-divider-bottom-16812 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-16812 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-16812 .shape-fill {
    fill: var(--bg-warm-white);
    /* Match section background */
}

/* Announcement Section */
.announcement-section {
    padding: var(--section-padding);
    background-color: var(--bg-warm-white);
    /* Creamy background */
}

.announcement-card {
    /* "Card" class name kept for structural reference, but styling is removed */
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.announcement-card h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    /* Dark Charcoal Headings */
    text-align: center;
    width: 100%;
}

.announcement-card h2::after {
    /* Removed center underline for cleaner editorial look */
    content: none;
}

.announcement-grid {
    /* Stacked Editorial Layout - No Grid */
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 0;
}

.announcement-item {
    /* Editorial List Item */
    background-color: transparent;
    padding: 4rem 0;
    border: none;
    box-shadow: none;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    /* Editorial Divider */
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item:hover {
    transform: none;
    box-shadow: none;
}

.icon-box {
    color: var(--secondary-sage);
    /* Icons in Sage Green per request */
    /* Using Rust accent here. No Sage to avoid mixing. */
    margin-bottom: 0;
    flex-shrink: 0;
    padding-top: 5px;
}

.announcement-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-rust);
    /* Headings in Terracotta/Rust */
    font-family: 'Playfair Display', serif;
    /* Ensure serif for headings */
}

.announcement-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background-color: var(--bg-alt);
    /* Stone/Paper neutral */
    position: relative;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    /* Clean, authoritative look - less "card", more "content" */
    background-color: transparent;
    border-left: 4px solid var(--accent-sand);
    /* Sandstone Accent */
    text-align: left;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    /* Wide editorial gap */
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    /* Dark Charcoal */
}

.contact-info p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.contact-details li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--secondary-sage);
    /* Bullet points in Sage */
    /* Rust accent */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.contact-form-container {
    /* Minimalist Form - text on background */
    background-color: transparent;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.contact-form-container h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    /* Underline style inputs */
    border: none;
    border-bottom: 2px solid #DDD;
    border-radius: 0;
    font-family: inherit;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    background-color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-sage);
    background-color: transparent;
}

/* Footer */
.main-footer {
    background-color: #221E1B;
    color: rgba(255, 255, 255, 0.4);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    :root {
        --section-padding: 3rem 1.5rem;
        /* Further reduced padding */
    }

    .content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .decorative-block {
        width: 100%;
        height: 250px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* Much smaller for better mobile fit */
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        top: 0;
        /* Reset top offset on mobile as vertical space is scarce */
    }

    .announcement-grid {
        gap: 0;
    }

    .announcement-item {
        flex-direction: column;
        /* Stack icon and text on mobile */
        gap: 1rem;
        padding: 2.5rem 0;
    }

    .announcement-item h3 {
        font-size: 1.5rem;
    }

    .icon-box {
        margin-bottom: 0.5rem;
    }

    .contact-info h2,
    .announcement-card h2,
    .about-content h2 {
        font-size: 2rem;
        /* Consistent smaller headings */
        margin-bottom: 2rem;
    }

    .about-content {
        padding: 2rem 1rem;
        /* Less padding in about box */
        border-left-width: 3px;
    }

    .contact-form-container {
        padding: 1rem 0;
    }
}

@media (max-width: 600px) {
    .main-header .container {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .logo {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Even smaller for phones */
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}