/* Sustainable Tourism Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2023/11/pexels-tom-fisk-2739664.jpg');
    background-size: cover;
    background-position: bottom center;
    min-height: 546px;
}


/* Content Wrapper */
.content-wrapper {
    padding: 40px 0;
}

/* Countries Section */
.countries-section {
    margin-bottom: 80px;
}

.country-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
}

.country-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.country-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.country-card:hover .country-overlay {
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));*/
}

.country-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 0;
        padding-top: 60px;
        padding-bottom: 115px;
    }

    .content-wrapper p {
        font-size: 1rem;
    }

    .country-image {
        height: 200px;
    }

    .country-name {
        font-size: 1.25rem;
    }
}