/* Destinations Section Styles */

.destinations-section {
    padding: 90px 20px;
    background-color: #eef2ed;
    font-family: 'Montserrat', sans-serif;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-header {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #285638;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.destinations-header p {
    font-size: 16px;
    color: #555555;
}

/* Grid Layout */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Destination Card - Explicit minimum height added */
.destination-card {
    position: relative;
    height: 420px;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d1dcd0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-img-box {
    width: 100%;
    height: 100%;
    background-color: #b5c4b4;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Floating White Label Box */
.destination-badge-box {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 18px 15px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.destination-badge-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.destination-badge-box p {
    font-size: 13px;
    color: #555555;
    margin: 0;
    font-weight: 500;
}

/* Hover Effects */
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40, 86, 56, 0.2);
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}

.destination-card:hover .destination-badge-box {
    background-color: #285638;
}

.destination-card:hover .destination-badge-box h3,
.destination-card:hover .destination-badge-box p {
    color: #ffffff;
}

/* Scroll Animation Initial States */
.animate-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}