/* =========================================================================
   PVC CR FAMILY RETREATS - CSS
   ========================================================================= */

:root {
    --teal: #4a9b8c;
    --teal-dark: #357a6d;
    --teal-light: #6bbdae;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --cream: #f2ede6;
    --cream-dk: #e8e0d4;
    --brown: #3d2b1a;
    --brown-mid: #6b4c30;
    --gold: #c9a058;
    --text-dark: #2c2016;
    --text-mid: #5a4535;
    --text-light: rgba(255, 255, 255, 0.85);
    --nav-h: 70px;
    --radius-lg: 20px;
}

.tour-page {
    background-color: var(--off-white);
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
}

.tour-page h1,
.tour-page h2,
.tour-page h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brown);
}

/* ═══ 1. HERO SECTION ═══ */
.tour-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #2d5a27 url('../img/tour.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 800px;
    margin: 0 20px;
}

.hero-main-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-bottom {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb-container {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-nav a {
    color: var(--teal);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 10px;
    color: #ccc;
}

/* ═══ 2. INTRO SECTION ═══ */
.tour-intro {
    padding: 2rem 5%;
    text-align: center;
    background-color: var(--white);
}

.intro-heading {
    font-size: 2.2rem;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.tour-package-info p {
    font-size: 1.2rem;
    color: var(--text-mid);
}

.intro-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gold);
}

/* ═══ 3. TOP IMAGE GRID ═══ */
.tour-top-gallery {
    padding: 0 5%;
    margin-bottom: 6rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.grid-item {
    position: relative;
    padding-top: 75%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 155, 140, 0.85);
    /* var(--teal) with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* ═══ 4. ACCOMMODATIONS ═══ */
.tour-accommodations {
    padding: 6rem 5%;
    background: var(--cream);
}

.section-title-line {
    text-align: center;
    font-size: 2.8rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.acc-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.acc-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.acc-card h3 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.acc-location {
    font-size: 1.1rem;
    color: var(--brown-mid);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.acc-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.acc-thumb-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.acc-thumb {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.acc-text {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.acc-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff !important;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.acc-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* ═══ 5. DINING ═══ */
.tour-dining {
    padding: 6rem 5%;
    background-color: var(--cream-dk);
    text-align: center;
}

.dining-title {
    font-size: 2.8rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.dining-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dining-main-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dining-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══ 6. ACTIVITIES ═══ */
.tour-activities {
    padding: 6rem 5%;
    text-align: center;
    background: #fff;
}

.act-title {
    font-size: 2.5rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.act-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.act-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.inner-act-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.inner-act-grid .grid-item {
    padding-top: 100%;
}

.book-now-btn {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

/* ═══ 7. SCHEDULE ═══ */
.tour-schedule {
    padding: 6rem 5%;
    background-color: var(--off-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.day-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.day-price {
    font-size: 1rem;
    color: #777;
}

/* ═══ CONTACT & FOOTER ═══ */
.tour-final-contact {
    padding-bottom: 6rem;
}

.final-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('	https://www.puravidacasas.com/uploads/2/8/7/1/28712979/background-images/622035696.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-banner-title {
    font-size: 2.8rem;
    color: #fff !important;
}

.contact-mini-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.btn-submit-mini {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit-mini:hover {
    background: var(--teal);
}

.final-footer-info {
    padding: 4rem 5%;
    background: #fff;
}

.final-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.phone-block {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.review-author {
    font-weight: 700;
    color: var(--teal-dark);
    display: block;
    margin-bottom: 1rem;
}

.contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method a {
    color: var(--teal-dark);
    text-decoration: none;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 992px) {

    .acc-container,
    .act-grid-container,
    .dining-showcase-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .tour-hero-content {
        padding: 2rem;
    }
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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




.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {

    position: absolute;
    top: 68px !important;
    left: 0;
    right: 0;
}