.cruise-highlights {
    background-color: var(--main-grey);
}

.cruise-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fa;
    /* border-radius: 24px; */
    box-shadow: 8px 8px 24px #e0e0e0, -8px -8px 24px #ffffff;
    padding: 32px 24px;
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
    background: var(--white-color);
    /* border-radius: 20px; */
    border: 1px solid var(--deep-blue);
    box-shadow: 0px 13px 48px 0px rgb(153 110 59 / 20%);
    margin-bottom: 30px;
    padding: 0;
}

.cruise-highlight-box:hover {
    box-shadow: 4px 4px 12px #e0e0e0, -4px -4px 12px #ffffff;
}

.cruise-highlight-box:nth-child(even) {
    flex-direction: row-reverse;
}


@media (max-width: 768px) {
    .cruise-highlight-box {
        flex-direction: column;
    }

    .cruise-highlight-box:nth-child(even) {
        flex-direction: column;
    }
}

.cruise-highlight-img,
.cruise-highlight-content {
    flex: 1;
}

.cruise-highlight-img img {
    min-width: 500px;
    height: 500px;
    /* padding: 5px; */
    /* border-radius: 20px; */
    object-fit: cover;
    transform: scale(1.005);
}

.cruise-highlight-content {
    padding: 20px;

}

.cruise-highlight-box:nth-child(odd) .cruise-highlight-content {
    border-right: 8px solid var(--rich-gold);
}

.cruise-highlight-box:nth-child(even) .cruise-highlight-content {
    border-left: 8px solid var(--rich-gold);
}

.cruise-highlight-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--deep-blue);
}

.gastronomy-wrapper {
    background: rgba(249, 249, 249, 0.5);
    position: relative;
}



.gastronomy-section,
.restaurant-section {
    margin-bottom: 40px;
}

.gastronomy-content h2,
.restaurant-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--black-color);
}

.gastronomy-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.gastronomy-content p,
.restaurant-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gastronomy-section .row,
.restaurant-section .row {
    align-items: center;
}

.gastronomy-content,
.restaurant-content {
    padding: 20px;
}

.gastronomy-section .gastronomy-image img,
.restaurant-section .restaurant-image img {
    max-height: 500px;
    min-width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {

    .gastronomy-section .col-md-6,
    .restaurant-section .col-md-6 {
        margin-bottom: 30px;
    }

    .restaurant-section .col-md-6.order-md-2 {
        order: 1 !important;
    }

    .restaurant-section .col-md-6.order-md-1 {
        order: 2 !important;
    }

    .gastronomy-content h2,
    .restaurant-content h2 {
        font-size: 2em;
    }

    .gastronomy-content h3 {
        font-size: 1.3em;
    }

    .gastronomy-section .gastronomy-image img,
    .restaurant-section .restaurant-image img {
        height: 300px;
        min-width: 100%;
        object-fit: cover;
    }
}