/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom,rgba(255,255,255,1), rgba(255,255,255,0.2) 62%,  rgba(255,255,255,0)), 
                url('../img/figma_beach_hero.png');
    background-size: cover;
    background-position: center;
    color: black;
    padding: 180px 0 120px;
    text-align: center;
    height:675px;
}

.hero-title {
    font-size: 3.1rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color:rgba(0,0,0,0.6);
}

.hero-btn-row{
    height:3.25em;
    align-items: center;
}

.btn-custom {
    background-color: white;
    border: none;
    color: black;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
}
    .btn-custom:hover {
        background-color: #9ab0a5;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: white;
    }

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    padding: 10px 28px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
}

.btn-outline-custom:hover {
    background-color: white;
    color: #333;
}

.link-custom{
    background-color: white;
    border: none;
    /* color: black; */
    padding: 12px 30px;
    /* font-weight: 600; */
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
    cursor:pointer;
}
    .link-custom:hover{
        color: var(--color-sage) !important;
        transform: scale(1.1);
    }

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color:black;
}

    .section-subtitle {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
        color: var(--muted);
    }
    
.section-title-small{
    font-size: 2.06rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color:black;
}
/* Destinations */
.destinations-section {
    margin: 0 auto;
    color: black;
}

.destination-row{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    height: max-content;
    padding: 15px 0;
    margin: auto var(--bs-gutter-x);
}

.destination-card {
    border-radius: 2px;
    overflow: hidden;
    /* margin-bottom: 30px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    background-color: white;
    height:100%;
}

    .destination-card:hover {
        transform: translateY(-10px);
    }

.destination-img {
    height: 200px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.destination-content {
    padding: 20px;
}

.destination-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Experiences */
.experiences-section {
    /* background-color: var(--color-cream); */
    /* width: 80%; */
    margin: 0 auto;
    color: black;
}
    .experiences-section .row{
        row-gap: 20px;
    }

.experience-row{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    height: max-content;
    padding: 15px 0;
    margin: auto var(--bs-gutter-x);
}

.experience-card {
    background-color: white;
    border-radius: 2px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    .experience-card:hover {
        transform: translateY(-10px);
    }
.experience-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-sage);
}

.experience-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: var(--color-stone);
    font-size: 0.9rem;
}

.experience-img {
    height: 13rem;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Custom Trip Section */
.custom-trip-section {
    background-color: white;
}

.custom-trip-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Reviews */
.reviews-section {
    position:relative;
    background-color: white;
}
.reviews-title {
    font-size: 1.8rem;
    text-align: left;
    color:black;
    padding: 0 2vw 0 1vw;
}
    .reviews-subtitle {
        text-align: left;
        padding: 0 2vw 0 1vw;
        display: flex;
        justify-content: space-between;
    }
        .reviews-subtitle > span:first-child{ 
            width:60%; 
        }
        .reviews-subtitle > span:last-child{ 
            text-align: right !important;
            width: max-content;
            padding-right: 0 !important;
            padding-top: 0;
            font-size: 1rem;
            vertical-align: top;
        }

.reviews-card {
    background-color: white;
    border-radius: 2px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.reviews-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: var(--color-stone);
    font-size: 0.9rem;
}
.reviews-img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
    object-position: center;
}
.grey-thin-text {
    padding-top: 10px;
}
.reviews-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    height: max-content;
    padding: 5px 0;
}
    /* .reviews-row:after{
        content: "›";
        display: flex;
        position: absolute;
        justify-content: end;
        align-items: center;
        color: rgba(0,0,0,0.4);
        font-size: 2rem;
        padding: 1.2vw;
        right: -7px;
        width: 15vw;
        height: 50%;
        background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));

    }
    .reviews-row::-webkit-scrollbar{
        width:5px;
        height:0px;
    }
    .reviews-row::-webkit-scrollbar-track{
        -webkit-box-shadow:inset 0 0  6px #A5A5A5;
        border-radius: 2px;
    }
    .reviews-row::-webkit-scrollbar-thumb {
        background: #CCC;
        border-radius: 2px;
        border: 1px solid #AAA;
    } */

/* About Section */
.about-section {
    background-color: transparent;
}

.about-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-sage);
}

/* Scroll-X Section */
.scrollX-row:after{
    content: "›";
    display: flex;
    position: absolute;
    justify-content: end;
    align-items: center;
    color: rgba(0,0,0,0.4);
    font-size: 2rem;
    padding: 1.2vw;
    right: -7px;
    width: 1vw;
    height: 60%;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));

}
.scrollX-row::-webkit-scrollbar{
    width:5px;
    height:0px;
}
.scrollX-row::-webkit-scrollbar-track{
    -webkit-box-shadow:inset 0 0  6px #A5A5A5;
    border-radius: 2px;
}
.scrollX-row::-webkit-scrollbar-thumb {
    background: #CCC;
    border-radius: 2px;
    border: 1px solid #AAA;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 150px 0 100px;
        height: 140vw;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}