/* Start custom CSS for html, class: .elementor-element-ff72b74 *//* =========================================
   VOYANEST - DESTINATIONS PAGE
   ========================================= */

.destinations-page {
    width: 100%;
    background: #faf9f6;
    color: #26352f;
    font-family: "Poppins", sans-serif;
}


/* =========================================
   HERO SECTION
   ========================================= */

.destination-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85");background-image:background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85"); background-image: ;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 29, 25, 0.82),
        rgba(15, 29, 25, 0.38),
        rgba(15, 29, 25, 0.08)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 22px;
    color: #d9c29c;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 25px;
}

.hero-content h1 span {
    color: #e4cda5;
    font-style: italic;
}

.hero-content p {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 25px;
    background: #e4cda5;
    color: #26352f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn span {
    font-size: 20px;
}

.hero-btn:hover {
    background: white;
    transform: translateY(-3px);
}


/* =========================================
   INTRO SECTION
   ========================================= */

.destination-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 110px 25px 80px;
}

.section-label,
.small-label {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #a07c4a;
}

.destination-intro h2 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15;
    font-weight: 400;
    margin: 18px 0;
}

.destination-intro h2 span {
    font-style: italic;
    color: #a07c4a;
}

.destination-intro p {
    max-width: 600px;
    margin: auto;
    color: #6c756f;
    line-height: 1.8;
    font-size: 15px;
}


/* =========================================
   DESTINATION SECTION
   ========================================= */

.destinations-section {
    width: 86%;
    max-width: 1400px;
    margin: auto;
}

.destination-category {
    margin-bottom: 120px;
}

.category-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.category-heading h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin: 12px 0 0;
}

.category-heading h2 span {
    color: #a07c4a;
    font-style: italic;
}

.view-all {
    color: #26352f;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #26352f;
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.view-all:hover {
    color: #a07c4a;
    border-color: #a07c4a;
}


/* =========================================
   DESTINATION GRID
   ========================================= */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.destination-card {
    background: white;
    overflow: hidden;
    transition: 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(38, 53, 47, 0.12);
}

.destination-image {
    height: 330px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.location-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.92);
    color: #26352f;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}


/* =========================================
   CARD CONTENT
   ========================================= */

.destination-info {
    padding: 25px 25px 28px;
}

.destination-info h3 {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 8px;
}

.destination-info p {
    color: #7a817c;
    font-size: 12px;
    margin: 0 0 22px;
}

.explore-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #26352f;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #d6d6d1;
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.explore-link span {
    font-size: 17px;
    transition: 0.3s ease;
}

.explore-link:hover {
    color: #a07c4a;
}

.explore-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================
   INTERNATIONAL SECTION
   ========================================= */

.international {
    padding-top: 20px;
}


/* =========================================
   INSPIRATION BANNER
   ========================================= */

.inspiration-section {
    width: 86%;
    max-width: 1400px;
    min-height: 480px;
    margin: 20px auto 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(20, 38, 31, 0.62),
            rgba(20, 38, 31, 0.62)
        ),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=85");

    background-size: cover;
    background-position: center;
}

.inspiration-content {
    max-width: 700px;
    padding: 40px;
    color: white;
}

.inspiration-content > span {
    font-size: 11px;
    letter-spacing: 4px;
    color: #e4cda5;
    font-weight: 600;
}

.inspiration-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.1;
    font-weight: 400;
    margin: 20px 0;
}

.inspiration-content h2 em {
    color: #e4cda5;
}

.inspiration-content p {
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.inspiration-btn {
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.inspiration-btn:hover {
    background: white;
    color: #26352f;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .destination-hero {
        min-height: 600px;
        padding: 60px 6%;
    }

    .destinations-section,
    .inspiration-section {
        width: 88%;
    }

    .destination-grid {
        gap: 25px;
    }

    .destination-image {
        height: 280px;
    }

    .category-heading h2 {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .destination-hero {
        min-height: 600px;
        padding: 50px 7%;
        background-position: 60% center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .destination-intro {
        padding: 75px 20px 60px;
    }

    .destination-intro h2 {
        font-size: 38px;
    }

    .destinations-section {
        width: 88%;
    }

    .category-heading {
        display: block;
    }

    .category-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .view-all {
        display: inline-block;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .destination-image {
        height: 300px;
    }

    .destination-category {
        margin-bottom: 80px;
    }

    .inspiration-section {
        width: 88%;
        min-height: 450px;
        margin-bottom: 70px;
    }

    .inspiration-content {
        padding: 25px;
    }

    .inspiration-content h2 {
        font-size: 40px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .destination-image {
        height: 250px;
    }

    .destination-info {
        padding: 20px;
    }

    .inspiration-content h2 {
        font-size: 34px;
    }
}
/* =========================================
   FULL WIDTH HERO + CTA
   ========================================= */

/* HERO - remove left & right gap */
.destination-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* CTA / INSPIRATION - remove left & right gap */
.inspiration-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}


/* Prevent horizontal overflow */
.destinations-page {
    overflow-x: hidden;
}/* End custom CSS */