/* ============================================
   Pilgrim's Campground — Styles
   Deep Navy + Warm Gold | Fresh & Airy
   ============================================ */

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

:root {
    --navy: #1e3a5f;
    --navy-light: #2a4f7a;
    --navy-dark: #152a45;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --gold-pale: #f5e6b8;
    --cream: #faf8f4;
    --cream-warm: #f7f3ec;
    --sand: #f0ebe0;
    --sage: #e8ede4;
    --text: #2c3e50;
    --text-light: #5a6e80;
    --text-muted: #8a9ab0;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 4px 20px rgba(30, 58, 95, 0.10);
    --shadow-lg: 0 8px 40px rgba(30, 58, 95, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

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

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

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.nav__logo-icon {
    color: var(--gold);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--navy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--navy-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn--primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.30);
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(30, 58, 95, 0.25);
}

.btn--ghost:hover {
    border-color: var(--navy);
    background: rgba(30, 58, 95, 0.04);
}

.btn--full {
    width: 100%;
}

/* ============================================
   Section Shared
   ============================================ */
.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 50%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero__headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7/8.8;
}

.hero__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__badge svg {
    color: var(--gold);
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    color: var(--cream);
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about__img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--cream);
}

.about__img-accent img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(30, 58, 95, 0.12);
}

/* ============================================
   Amenities
   ============================================ */
.amenities {
    padding: 100px 0;
    background: var(--white);
}

.amenities__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.amenities__subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    background: var(--white);
    border-color: rgba(30, 58, 95, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.amenity-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.amenity-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.amenity-card__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Stay
   ============================================ */
.stay {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
}

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

.stay__text {
    order: 1;
}

.stay__text .section__title {
    margin-bottom: 20px;
}

.stay__text > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.stay__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.stay__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
}

.stay__list li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.stay__image {
    order: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stay__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
}

/* ============================================
   Location
   ============================================ */
.location {
    padding: 100px 0;
    background: var(--white);
}

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

.location__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

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

.location__detail svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.location__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.location__detail p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.location__detail a {
    color: var(--navy);
    font-weight: 500;
    transition: color var(--transition);
}

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

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact .section__eyebrow {
    color: var(--gold-light);
}

.contact .section__title {
    color: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact__quick {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact__quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    transition: all var(--transition);
}

.contact__quick-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(212, 168, 67, 0.4);
    color: var(--gold-light);
}

.contact__quick-item svg {
    color: var(--gold-light);
}

.contact__form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(30, 58, 95, 0.12);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: none;
    text-align: center;
    padding: 16px;
    background: var(--sage);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--navy);
    font-weight: 500;
    margin-top: 16px;
}

.form__success.show {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    padding-bottom: 40px;
    align-items: start;
}

.footer__logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer__logo svg {
    color: var(--gold);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer__contact {
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer__contact a {
    color: var(--gold-light);
    transition: color var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    
    .amenities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(30, 58, 95, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__link {
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper img {
        aspect-ratio: 4/3;
    }
    
    .hero__badge {
        left: 16px;
        bottom: -12px;
    }
    
    .hero__wave svg {
        height: 50px;
    }
    
    .about__grid,
    .stay__inner,
    .location__grid,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stay__text {
        order: 2;
    }
    
    .stay__image {
        order: 1;
    }
    
    .about__images {
        max-width: 100%;
    }
    
    .about__img-secondary {
        right: 0;
        bottom: -20px;
    }
    
    .about__img-accent {
        right: 10px;
        top: -10px;
    }
    
    .amenities__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer__contact {
        text-align: center;
    }
    
    .contact__form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
}
