/* =========================================================
   venues.css  –  Shared styles for all 5 Pura Vida Casas venue pages
   Scoped under .pvc-venue-page to avoid conflicts with existing site CSS
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
.pvc-venue-page {
    --cream: #f5f0e8;
    --sand: #ede8dc;
    --warm-tan: #c9b89a;
    --rust: #c96a3c;
    --rust-dk: #a8522b;
    --dark: #1a1a14;
    --text: #3a3530;
    --text-lt: #6b6259;
    --white: #ffffff;
    --radius: 6px;
    --transition: 0.35s ease;

    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.pvc-venue-page .pvv-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pvc-venue-page .pvv-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    animation: pvvHeroZoom 8s ease forwards;
}

@keyframes pvvHeroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.00);
    }
}

.pvc-venue-page .pvv-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.pvc-venue-page .pvv-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 900px;
    text-align: center;
    width: 100%;
}

.pvc-venue-page .pvv-hero__title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin: 0 0 1rem;
}

.pvc-venue-page .pvv-hero__subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.pvc-venue-page .pvv-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pvc-venue-page .pvv-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.pvc-venue-page .pvv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.pvc-venue-page .pvv-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 2;
    animation: pvvBounce 2s infinite;
}

.pvc-venue-page .pvv-hero__scroll svg {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

@keyframes pvvBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.pvc-venue-page .pvv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: none;
    border-radius: 40px;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.pvc-venue-page .pvv-btn--primary {
    background: #d47a5a;
    color: var(--white);
}

.pvc-venue-page .pvv-btn--primary:hover {
    background: #b56245;
    color: var(--white);
    transform: translateY(-2px);
}

.pvc-venue-page .pvv-btn--outline {
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.pvc-venue-page .pvv-btn--outline:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ============================================================
   INTRO SECTION (image + text)
   ============================================================ */
.pvc-venue-page .pvv-intro {
    padding: 5rem 0;
    background: var(--white);
}

.pvc-venue-page .pvv-intro__img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
}

.pvc-venue-page .pvv-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.pvc-venue-page .pvv-intro__img:hover img {
    transform: scale(1.04);
}

.pvc-venue-page .pvv-intro__eyebrow {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 500;
    margin-bottom: .8rem;
}

.pvc-venue-page .pvv-intro__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.4rem;
}

.pvc-venue-page .pvv-intro__body {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--text-lt);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.pvc-venue-page .pvv-features {
    background: var(--off-white);
    padding: 6rem 0;
}

.pvc-venue-page .pvv-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.pvc-venue-page .pvv-feature-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pvc-venue-page .pvv-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.pvc-venue-page .pvv-feature-card__icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 50%;
    background: rgba(212, 122, 90, 0.15);
    /* Light rust/orange background */
    color: #d47a5a;
    /* Rust/orange icon color */
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

.pvc-venue-page .pvv-feature-card__title {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.pvc-venue-page .pvv-feature-card__text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0;
}

/* ============================================================
   PERFECT FOR (photo grid strip)
   ============================================================ */
.pvc-venue-page .pvv-perfect {
    padding: 5rem 0;
    background: var(--white);
}

.pvc-venue-page .pvv-perfect__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pvc-venue-page .pvv-perfect__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.pvc-venue-page .pvv-perfect__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pvc-venue-page .pvv-perfect__item:hover img {
    transform: scale(1.06);
}

/* Gradient overlay — always visible at the bottom */
.pvc-venue-page .pvv-perfect__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.4rem 1.4rem;
    background: linear-gradient(to top, rgba(15, 10, 5, 0.78) 0%, transparent 100%);
    transition: padding 0.3s ease;
}

.pvc-venue-page .pvv-perfect__label {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.pvc-venue-page .pvv-perfect__desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.pvc-venue-page .pvv-gallery {
    background: var(--sand);
    padding: 5rem 0;
}

.pvc-venue-page .pvv-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 10px;
}

.pvc-venue-page .pvv-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.pvc-venue-page .pvv-gallery__item.span-col-2 {
    grid-column: span 2;
}

.pvc-venue-page .pvv-gallery__item.span-row-2 {
    grid-row: span 2;
}

.pvc-venue-page .pvv-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pvc-venue-page .pvv-gallery__item:hover img {
    transform: scale(1.06);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.pvc-venue-page .pvv-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.pvc-venue-page .pvv-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.pvc-venue-page .pvv-cta:hover .pvv-cta__bg {
    transform: scale(1.0);
}

.pvc-venue-page .pvv-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 25, 0.6);
}

.pvc-venue-page .pvv-cta__content {
    position: relative;
    z-index: 2;
    padding: 4rem 1.5rem;
    max-width: 700px;
}

.pvc-venue-page .pvv-cta__title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.pvc-venue-page .pvv-cta__sub {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.2rem;
    letter-spacing: normal;
    text-transform: none;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.pvc-venue-page .pvv-faq {
    padding: 5rem 0 6rem;
    background: var(--cream);
}

.pvc-venue-page .pvv-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.pvc-venue-page .pvv-faq__item:last-child {
    margin-bottom: 0;
}

.pvc-venue-page .pvv-faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.pvc-venue-page .pvv-faq__question:hover {
    color: #d47a5a;
}

.pvc-venue-page .pvv-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #d47a5a;
    transition: transform 0.3s ease;
}

.pvc-venue-page .pvv-faq__item.open .pvv-faq__icon {
    transform: rotate(45deg);
}

.pvc-venue-page .pvv-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
    padding: 0 1.5rem;
}

.pvc-venue-page .pvv-faq__item.open .pvv-faq__answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .pvc-venue-page .pvv-perfect__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pvc-venue-page .pvv-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .pvc-venue-page .pvv-gallery__item.span-col-2 {
        grid-column: span 1;
    }

    .pvc-venue-page .pvv-gallery__item.span-row-2 {
        grid-row: span 1;
    }

    .pvc-venue-page .pvv-gallery__item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 767px) {
    .pvc-venue-page .pvv-hero {
        height: 65vh;
    }

    .pvc-venue-page .pvv-hero__content {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .pvc-venue-page .pvv-perfect__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pvc-venue-page .pvv-gallery__grid {
        grid-template-columns: 1fr;
    }

    .pvc-venue-page .pvv-intro__img {
        height: 280px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .pvc-venue-page .pvv-perfect__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.pvc-venue-page .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.pvc-venue-page .lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.pvc-venue-page .close-lightbox {
    position: absolute;
    top: 55px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
    line-height: 1;
}

.pvc-venue-page .close-lightbox:hover {
    color: var(--rust);
    transform: rotate(90deg);
}

.pvc-venue-page .lightbox-content {
    text-align: center;
    max-width: 80%;
    max-height: 90vh;
    margin-top: 5rem;
    animation: pvvZoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pvc-venue-page .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.pvc-venue-page .lightbox-nav:hover {
    background: rgba(212, 122, 90, 0.2);
    color: var(--rust);
    border-color: var(--rust);
}

.pvc-venue-page .lightbox-nav.prev {
    left: 40px;
}

.pvc-venue-page .lightbox-nav.next {
    right: 40px;
}

.pvc-venue-page .lightbox-content img {
    max-width: 100vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    object-fit: contain;
}

.pvc-venue-page #lightbox-caption {
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

@keyframes pvvZoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}