/* ========================================
   OUTSIDERS RUSTIC ATV CAMPGROUND
   Vibrant Modern · Burgundy + Blush
   ======================================== */

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

:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --burgundy-light: #8B3A42;
    --blush: #F4A6A0;
    --blush-light: #FDDDD8;
    --blush-pale: #FDF0EE;
    --cream: #FFF8F6;
    --charcoal: #1A1A1A;
    --dark: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --white: #FFFFFF;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(114, 47, 55, 0.10);
    --shadow-lg: 0 12px 48px rgba(114, 47, 55, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 248, 246, 0.97);
    box-shadow: 0 2px 20px rgba(114, 47, 55, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--burgundy);
}

.logo-mark {
    color: var(--burgundy);
}

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

.logo--light .logo-mark {
    color: var(--blush);
}

/* --- Nav --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--burgundy);
    background: var(--blush-pale);
}

.nav-link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--cream);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 0;
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--burgundy);
    padding-left: 8px;
}

.mobile-cta {
    margin-top: 16px;
    background: var(--burgundy);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius);
    border: none;
    padding: 16px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--burgundy-deep);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 37, 44, 0.92) 0%,
        rgba(114, 47, 55, 0.80) 40%,
        rgba(139, 58, 66, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 166, 160, 0.15);
    border: 1px solid rgba(244, 166, 160, 0.3);
    color: var(--blush-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.text-accent {
    color: var(--blush);
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--blush {
    background: var(--blush);
    color: var(--burgundy-deep);
}

.btn--blush:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 166, 160, 0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Geometric Shapes --- */
.geo {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.geo--1 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    border-radius: 50%;
    top: -80px;
    right: -60px;
    opacity: 0.12;
}

.geo--2 {
    width: 160px;
    height: 160px;
    background: var(--blush-light);
    top: 30%;
    right: 12%;
    transform: rotate(45deg);
    opacity: 0.08;
}

.geo--3 {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    bottom: 15%;
    right: 25%;
    opacity: 0.06;
}

/* --- Section Shared --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.title-light {
    color: var(--white);
}

.label-light {
    color: var(--blush);
}

.label-line-light {
    background: var(--blush);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
}

.desc-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}

/* --- Trail Section --- */
.trail-section {
    padding: 120px 0;
    background: var(--cream);
}

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

.trail-hero-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.trail-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
}

.trail-content {
    padding: 24px 0;
}

.trail-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trail-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-pale);
    border-radius: 10px;
    color: var(--burgundy);
}

/* --- Camp Section --- */
.camp-section {
    padding: 120px 0;
    background: var(--white);
}

.camp-header {
    text-align: center;
    margin-bottom: 64px;
}

.camp-header .section-title {
    max-width: 600px;
    margin: 0 auto 20px;
}

.camp-header .section-desc {
    margin: 0 auto;
}

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

.camp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
}

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

.camp-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.camp-card-body {
    padding: 28px;
}

.camp-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

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

/* --- Vibe Section --- */
.vibe-section {
    position: relative;
    padding: 120px 0;
    background: var(--burgundy);
    overflow: hidden;
}

.vibe-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.vibe-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vibe-content {
    max-width: 520px;
}

.vibe-content .section-desc {
    margin-bottom: 20px;
}

.vibe-content .section-desc + .section-desc {
    margin-top: -8px;
}

.vibe-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vibe-stat {
    display: flex;
    flex-direction: column;
}

.vibe-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blush);
    line-height: 1;
}

.vibe-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

.vibe-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}

.vibe-image {
    position: relative;
}

.vibe-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 2;
}

.vibe-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vibe-img-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--blush);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    opacity: 0.2;
    z-index: 1;
}

/* --- Stay Section --- */
.stay-section {
    padding: 120px 0;
    background: var(--cream);
}

.stay-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--burgundy-deep);
    padding: 80px 64px;
}

.stay-card-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/29702286/pexels-photo-29702286.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1200&h=600') center/cover;
    opacity: 0.15;
}

.stay-card-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.stay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 166, 160, 0.15);
    border: 1px solid rgba(244, 166, 160, 0.3);
    color: var(--blush-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.stay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

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

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

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-pale);
    border-radius: 12px;
    color: var(--burgundy);
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.contact-item a {
    color: var(--burgundy);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid rgba(114, 47, 55, 0.15);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(114, 47, 55, 0.06);
    border: 1px solid rgba(114, 47, 55, 0.12);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

/* --- Footer --- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-tagline {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--blush);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--blush);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--blush-light);
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .trail-grid,
    .vibe-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trail-hero-img {
        aspect-ratio: 16/10;
    }

    .vibe-img-wrapper {
        aspect-ratio: 16/10;
    }

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

    .stay-card {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.4rem;
    }

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

    .footer-top {
        flex-direction: column;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

    .stay-card {
        padding: 48px 28px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stay-actions {
        flex-direction: column;
    }

    .stay-actions .btn {
        justify-content: center;
    }
}
