/* =========================================
   SINGLE DESTINATION HERO
   ========================================= */

.wt-single-dest-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-color: #111;
    display: flex;
    flex-direction: column;
}

.wt-single-dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay as requested */
    background: linear-gradient(to top, rgba(17, 12, 8, 1) 0%, rgba(17, 12, 8, 0.4) 100%);
    z-index: 1;
}

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

.wt-single-dest-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12vh;
    padding-bottom: 2rem;
}

.wt-single-dest-topbar {
    width: 100%;
}

.wt-single-dest-content {
    max-width: 800px; /* Wider description */
}

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

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

.wt-single-dest-tag {
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.wt-single-dest-title {
    font-size: 5rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.wt-single-dest-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-style: italic;
    text-transform: none; /* Ensure not uppercase */
    margin-bottom: 1.5rem;
}

.wt-single-dest-desc {
    color: #ccc;
    font-size: 1.1rem; /* Bigger description */
    line-height: 1.6;
    margin: 0;
}

/* Info Bar */
.wt-dest-info-bar {
    position: relative;
    z-index: 2;
    background-color: rgba(22, 17, 13, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-dest-info-grid {
    display: flex;
    width: 100%;
}

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

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

.wt-dest-info-item:last-child {
    border-right: none;
    padding-right: 0;
}

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

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

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

.wt-dest-info-val {
    font-size: 0.95rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .wt-dest-info-grid {
        flex-wrap: wrap;
    }
    .wt-dest-info-item {
        flex: 0 0 50%;
    }
    .wt-dest-info-item:nth-child(2) {
        border-right: none;
    }
    .wt-dest-info-item:nth-child(3),
    .wt-dest-info-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .wt-single-dest-title {
        font-size: 3.5rem;
    }
}

/* =========================================
   LONG DESCRIPTION SECTION
   ========================================= */

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

.wt-dest-content-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.wt-dest-content-left {
    flex: 0 0 35%;
}

.wt-dest-content-right {
    flex: 1;
}

.wt-dest-sec-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

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

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

.wt-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

.wt-post-content p {
    margin-bottom: 1.5rem;
}

.wt-post-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Content Section */
@media (max-width: 1024px) {
    .wt-dest-content-layout {
        flex-direction: column;
        gap: 3rem;
    }
    .wt-dest-content-left,
    .wt-dest-content-right {
        width: 100%;
        flex: none;
    }
}

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

/* =========================================
   PRACTICAL / BEST TIME SECTION
   ========================================= */

.wt-dest-practical-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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-dest-practical-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

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

.wt-dest-practical-right {
    flex: 0 0 45%;
}

.wt-dest-practical-desc {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Best Time Cards */
.wt-dest-bt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02); /* Very subtle card background */
    border-radius: 4px;
    margin-bottom: 8rem; /* Space between best time and know before */
}

.wt-dest-bt-card {
    padding: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-dest-bt-card:last-child {
    border-right: none;
}

.wt-dest-bt-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.wt-dest-bt-num {
    font-size: 0.75rem;
    color: #666;
}

.wt-dest-bt-season {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.wt-dest-bt-title {
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
    font-weight: normal;
    color: #fff;
    margin: 0 0 1rem 0;
}

.wt-dest-bt-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Know Before */
.wt-dest-kb-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.wt-dest-kb-left {
    flex: 0 0 35%;
}

.wt-dest-kb-title {
    font-size: 2rem;
    font-weight: normal;
    font-family: 'Fraunces', serif;
    color: #fff;
    margin: 0;
}

.wt-dest-kb-right {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.wt-dest-kb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.wt-dest-kb-item {
    padding: 2.5rem;
    display: flex;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-dest-kb-item:nth-child(even) {
    border-right: none;
}

.wt-dest-kb-item:nth-last-child(-n+2):nth-child(odd),
.wt-dest-kb-item:last-child {
    border-bottom: none;
}

.wt-dest-kb-num {
    color: var(--primary);
    font-family: 'Fraunces', serif;
    font-size: 1rem;
}

.wt-dest-kb-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .wt-dest-bt-grid {
        grid-template-columns: 1fr;
    }
    .wt-dest-bt-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .wt-dest-bt-card:last-child {
        border-bottom: none;
    }
    .wt-dest-kb-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .wt-dest-practical-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .wt-dest-kb-grid {
        grid-template-columns: 1fr;
    }
    .wt-dest-kb-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .wt-dest-kb-item:last-child {
        border-bottom: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

/* =========================================
   DESTINATION EXPERIENCES SECTION
   ========================================= */

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

.wt-dest-experiences-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.wt-dest-experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Button style */
.wt-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}

.wt-btn-outline:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .wt-dest-experiences-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .wt-dest-experiences-grid {
        grid-template-columns: 1fr;
    }
}
