/* Destinations Section */
.destinations-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.destinations-header {
    text-align: center;
    /* Default mobile */
    margin-bottom: 4rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .destinations-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }
}

.destinations-controls {
    display: flex;
    gap: 12px;
}

.destinations-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.destinations-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    /* Will be controlled by GSAP */
    width: max-content;
}

.destination-card {
    position: relative;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.destination-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0;
    /* Hidden initially, shown on hover/active */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-link {
    opacity: 1;
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.destination-card:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .destinations-title {
        font-size: 2rem;
    }

    .destination-card {
        width: 280px;
        height: 400px;
    }
}