/* Hero Section */
.team-hero {
    background: url('https://quimbaya-tours.com/wp-content/uploads/2023/12/iStock-1408955173-min.jpg') center/cover;
    min-height: 546px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Content Sections */
.content-section {
    padding-bottom: 80px;
}

.section-header h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 33px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 32px;
    color: #41a1ce;
}

.section-content {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    text-align: center;
}

.section-content p {
    max-width: 800px;
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #484848;
}

.section-content strong {
    color: #333;
    font-weight: 600;
}

.video-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 900px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Interactive Map Container */

.map-intro {
    max-width: 800px;
    text-align: start;
}

.map-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Iframe Container */
.map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Fullscreen Link */
.fullscreen-link {
    text-align: start;
    background-color: #274f73;
    width: fit-content;
    padding: 5px 20px 5px 10px;
    border-radius: 10px;
}

.fullscreen-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.fullscreen-link a:hover {
    color: #5ba7cc;
    transform: translateX(5px);
}

@media (max-width: 575px) {
    .team-hero {
        min-height: 0;
        padding-top: 60px;
        padding-bottom: 115px;
    }
}

@media (min-width: 992px) {
    .section-header h2 {
        font-size: 30px;
    }

    .section-content p, .map-intro p {
        font-size: 14px;
    }


}