/* ============================================
   Rush Haven Seasonal Campground
   Confident Corporate · Navy & Gold
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1A1A2E;
    background-color: #FAFAF8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0A2342;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* --- Section Eyebrow --- */
.section-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A45C;
    margin-bottom: 12px;
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 20px;
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Lead --- */
.lead {
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #C8A45C;
    color: #0A2342;
    border-color: #C8A45C;
}

.btn-primary:hover {
    background-color: #B8944C;
    border-color: #B8944C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 92, 0.35);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 92, 0.15);
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(10, 35, 66, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo-text {
    letter-spacing: 0.02em;
}

.logo-light .logo-text {
    color: #fff;
}

/* --- Nav Menu --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    color: #C8A45C;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(200, 164, 92, 0.15);
    border: 1px solid rgba(200, 164, 92, 0.4);
    color: #C8A45C !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: #C8A45C !important;
    color: #0A2342 !important;
}

/* --- Nav Toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 35, 66, 0.88) 0%,
        rgba(10, 35, 66, 0.7) 50%,
        rgba(10, 35, 66, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A45C;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(200, 164, 92, 0.4);
    border-radius: 4px;
    background-color: rgba(200, 164, 92, 0.08);
}

.hero-headline {
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #C8A45C;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* --- About --- */
.about {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 35, 66, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.2);
    border: 4px solid #FAFAF8;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: #C8A45C;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.about-content .section-eyebrow {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content > p.lead {
    margin-bottom: 16px;
}

.about-content > p {
    color: #444;
    margin-bottom: 28px;
}

.about-highlights {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
}

.highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Amenities --- */
.amenities {
    padding: 100px 0;
    background-color: #0A2342;
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C8A45C, #E8C97A, #C8A45C);
}

.amenities .section-eyebrow {
    color: #C8A45C;
}

.amenities .section-title {
    color: #fff;
}

.amenities .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.amenity-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 164, 92, 0.3);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(200, 164, 92, 0.12);
    border-radius: 10px;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* --- Seasons --- */
.seasons {
    padding: 100px 0;
    background-color: #F3F1EC;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.season-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 36px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #C8A45C;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.season-card:hover::before {
    transform: scaleX(1);
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.1);
}

.season-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.season-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.season-period {
    font-size: 13px;
    font-weight: 600;
    color: #C8A45C;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.season-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background-color: #FAFAF8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Location --- */
.location {
    padding: 100px 0;
    background-color: #F3F1EC;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.location-content {
    padding-right: 16px;
}

.location-content .section-title {
    margin-bottom: 20px;
}

.location-content > p.lead {
    margin-bottom: 24px;
}

.location-details {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
}

.contact-item a {
    color: #0A2342;
    text-decoration: underline;
    text-decoration-color: rgba(10, 35, 66, 0.2);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #C8A45C;
    text-decoration-color: #C8A45C;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.12);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background-color: #0A2342;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C8A45C, #E8C97A, #C8A45C);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    color: #fff;
    margin-bottom: 20px;
}

.contact-info > p.lead {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.contact-detail a:hover {
    color: #C8A45C;
    text-decoration-color: #C8A45C;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C8A45C;
    background-color: rgba(200, 164, 92, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background-color: #0A2342;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: #C8A45C;
    text-decoration: underline;
    text-decoration-color: rgba(200, 164, 92, 0.3);
}

/* --- Form Success --- */
.form-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background-color: rgba(200, 164, 92, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background-color: #061A30;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #C8A45C;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C8A45C;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C8A45C;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #C8A45C;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(10, 35, 66, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(200, 164, 92, 0.15);
    }
    
    .nav-menu.open {
        transform: translateY(0);
    }
    
    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
        width: 100%;
    }
    
    .nav-cta {
        margin-top: 8px;
        padding: 12px 16px !important;
    }
    
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat {
        flex: none;
        width: calc(50% - 8px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-images {
        max-width: 500px;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -10px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        padding-right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .about-accent {
        display: none;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
