/* =========================================
   SINGLE EXPERIENCE HERO
   ========================================= */

.wt-single-exp-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Changed from 100vh */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    color: #fff;
}

.wt-single-exp-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Dark gradient from bottom up */
    background: linear-gradient(to top, rgba(17, 12, 8, 1) 0%, rgba(17, 12, 8, 0.9) 30%, rgba(17, 12, 8, 0.4) 100%);
    z-index: 1;
}

.wt-single-exp-content-wrap {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wt-single-exp-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12vh; /* Reduced from 15vh to move back link higher */
    padding-bottom: 2rem; /* Space above info bar */
}

/* Top bar (back link) */
.wt-single-exp-topbar {
    width: 100%;
}

.wt-back-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.wt-back-link:hover {
    color: var(--primary);
}

/* Main Content */
.wt-single-exp-content {
    max-width: 800px;
}

.wt-single-exp-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.wt-single-exp-title {
    font-size: 4.5rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.wt-single-exp-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.wt-single-exp-desc {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

/* Buttons */
.wt-single-exp-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.wt-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: #fff;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.wt-btn-solid:hover {
    background-color: #d1561f;
}

.wt-btn-outline {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wt-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Bottom Info Bar */
.wt-single-exp-info-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: #1a1512; /* Dark solid color from design */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-info-col {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-info-col:first-child {
    padding-left: 0;
}

.wt-info-col:not(:first-child) {
    padding-left: 2rem;
}

.wt-info-col-last {
    border-right: none;
}

.wt-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.wt-info-icon svg {
    width: 18px;
    height: 18px;
}

.wt-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wt-info-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.wt-info-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .wt-single-exp-info-bar .wt-container {
        grid-template-columns: 1fr 1fr !important;
    }
    .wt-info-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem 0 !important;
    }
    .wt-info-col:nth-child(2n) {
        border-right: none;
        padding-left: 1.5rem !important;
    }
    .wt-info-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .wt-single-exp-hero {
        height: auto;
        min-height: 100vh;
    }
    .wt-single-exp-title {
        font-size: 3rem;
    }
    .wt-single-exp-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-btn-solid, .wt-btn-outline {
        justify-content: center;
    }
}

/* =========================================
   ROUTE HIGHLIGHTS SECTION
   ========================================= */

.wt-route-highlights-section {
    background-color: var(--background);
    padding: 8rem 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-route-highlights-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.wt-route-highlights-left {
    flex: 0 0 40%;
}

.wt-route-highlights-right {
    flex: 1;
}

.wt-rh-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666; /* or a subtle brownish grey */
    margin-bottom: 1rem;
}

.wt-rh-title {
    font-size: 3.5rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    line-height: 1.1;
    margin: 0;
}

.wt-rh-title em {
    color: var(--primary);
    font-style: italic;
}

.wt-rh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.wt-rh-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-rh-item:nth-child(2n) {
    border-right: none;
}

/* Remove bottom border for the last row */
.wt-rh-item:nth-last-child(-n+2):nth-child(odd),
.wt-rh-item:nth-last-child(-n+2):nth-child(odd) ~ .wt-rh-item {
    border-bottom: none;
}

.wt-rh-num {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.wt-rh-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

/* Responsive Route Highlights */
@media (max-width: 1024px) {
    .wt-route-highlights-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .wt-route-highlights-left {
        flex: none;
        width: 100%;
    }
    .wt-route-highlights-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wt-route-highlights-section {
        padding: 5rem 0;
    }
    .wt-rh-title {
        font-size: 2.5rem;
    }
    .wt-rh-grid {
        grid-template-columns: 1fr;
    }
    .wt-rh-item {
        border-right: none;
    }
    .wt-rh-item:nth-last-child(-n+2):nth-child(odd) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Restore for all but last */
    }
    .wt-rh-item:last-child {
        border-bottom: none !important;
    }
}

/* =========================================
   ITINERARY / DAY BY DAY SECTION
   ========================================= */

.wt-itinerary-section {
    background-color: var(--background);
    background-image: radial-gradient(circle at 20% 30%,#e9632614,#0000 50%),radial-gradient(circle at 80% 70%,#66795314,#0000 50%);
    padding: 8rem 0;
    color: #fff;
}

.wt-itinerary-layout {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.wt-itinerary-left {
    flex: 0 0 45%;
}

.wt-itinerary-right {
    flex: 1;
}

/* Timeline */
.wt-itinerary-timeline-wrap {
    margin-top: 3rem;
}

.wt-day-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.wt-day-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wt-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wt-timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.wt-timeline-item:last-child {
    margin-bottom: 0;
}

.wt-timeline-dot {
    position: absolute;
    left: -2.35rem; /* Center on the border-left of parent */
    top: 0.15rem;
    width: 12px;
    height: 12px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-timeline-dot::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
}

.wt-timeline-time {
    color: var(--primary);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.wt-timeline-event {
    font-size: 1.4rem;
    font-family: 'Fraunces', serif;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.wt-timeline-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Right Side - Day Tabs */
.wt-day-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.wt-day-tab {
    background-color: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wt-day-tab:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.wt-day-tab.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Itinerary Card */
.wt-itinerary-card {
    background-color: #16110D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
}

.wt-card-section {
    margin-bottom: 2.5rem;
}

.wt-card-heading {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
}

.wt-card-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-card-row:first-of-type {
    padding-top: 0;
}

.wt-card-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.wt-cr-label {
    color: #999;
    font-size: 0.9rem;
}

.wt-cr-value {
    color: #fff;
    font-size: 0.95rem;
    text-align: right;
}

.wt-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wt-included-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.wt-included-list li:last-child {
    margin-bottom: 0;
}

.wt-included-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Responsive Itinerary */
@media (max-width: 1024px) {
    .wt-itinerary-layout {
        flex-direction: column;
        gap: 4rem;
    }
    .wt-itinerary-left, .wt-itinerary-right {
        width: 100%;
        flex: none;
    }
    .wt-day-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .wt-itinerary-section {
        padding: 5rem 0;
    }
    .wt-itinerary-card {
        padding: 1.5rem;
    }
}

/* =========================================
   GALLERY SECTION
   ========================================= */

.wt-gallery-section {
    background-color: var(--background);
    padding: 8rem 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-gallery-header {
    margin-bottom: 4rem;
}

.wt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 450px 250px;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.wt-gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.wt-gallery-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.wt-gallery-item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.wt-gallery-item-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.wt-gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.wt-gallery-quote {
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #999;
    max-width: 66%; /* Aligns nicely with the first 2 columns */
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .wt-gallery-grid {
        grid-template-rows: 350px 200px;
    }
}

@media (max-width: 768px) {
    .wt-gallery-section {
        padding: 5rem 0;
    }
    .wt-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 300px 300px 300px;
    }
    .wt-gallery-item-1,
    .wt-gallery-item-2,
    .wt-gallery-item-3,
    .wt-gallery-item-4 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .wt-gallery-quote {
        max-width: 100%;
        font-size: 1.1rem;
    }
}

/* =========================================
   CTA / BOOKING SECTION
   ========================================= */

.wt-cta-section {
    background-color: oklch(20% .014 60); /* Requested by user */
    padding: 8rem 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-cta-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.wt-cta-left {
    flex: 1;
}

.wt-cta-right {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wt-cta-title {
    font-size: 3.5rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.wt-cta-title em {
    color: var(--primary);
    font-style: italic;
}

.wt-cta-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.wt-btn-full {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .wt-cta-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .wt-cta-right {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .wt-cta-section {
        padding: 5rem 0;
    }
    .wt-cta-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   NEXT ROUTE SECTION
   ========================================= */

.wt-next-route-section {
    background-color: var(--background);
    padding: 6rem 0 8rem 0;
    color: #fff;
}

.wt-next-route-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.wt-next-route-img {
    flex: 0 0 450px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    display: block;
    transition: opacity 0.3s ease;
}

.wt-next-route-img:hover {
    opacity: 0.9;
}

.wt-next-route-content {
    flex: 1;
}

.wt-next-route-meta {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.wt-next-route-title {
    font-size: 3rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.wt-next-route-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wt-next-route-title a:hover {
    color: var(--primary);
}

.wt-next-route-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.wt-next-route-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wt-next-route-link:hover {
    color: var(--primary);
}

/* Responsive Next Route */
@media (max-width: 1024px) {
    .wt-next-route-img {
        flex: 0 0 350px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .wt-next-route-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .wt-next-route-img {
        flex: none;
        width: 100%;
        height: 250px;
    }
    .wt-next-route-title {
        font-size: 2.5rem;
    }
}
