/*-----------------------------------------------------------------------*/
/* Hero Video Section */
/*-----------------------------------------------------------------------*/
.hero-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0) 70%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 550px;
    color: white;
    text-align: left;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-credential {
    font-size: 0.87rem;
    font-weight: 600;
    color: #f3c54d;
    margin: -10px 0 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-button-primary,
.hero-button-secondary {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.hero-button-primary {
    background: #f3c54d;
    color: #05233d;
}

.hero-button-primary:hover {
    opacity: 0.9;
}

.hero-button-secondary {
    border: 2px solid white;
    color: white;
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .hero-container {
        height: auto;
        overflow: visible;
        background: #05233d;
    }

    .hero-video {
        height: 360px;
        object-fit: cover;
        object-position: center center;
    }

    .hero-container::before {
        display: none;
    }

    .hero-overlay {
        position: static;
        transform: none;
        max-width: none;
        padding: 28px 20px 32px;
        color: white;
        text-align: center;
        background: #05233d;
    }

    .hero-overlay h1 {
        font-size: 2rem;
        margin: 0 0 12px;
        text-shadow: none;
    }

    .hero-overlay p {
        font-size: 1rem;
        margin: 0 0 22px;
        text-shadow: none;
    }

    .hero-credential {
        font-size: 0.78rem;
        margin: -12px 0 22px;
        text-shadow: none;
    }

    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-button-primary,
    .hero-button-secondary {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/*-----------------------------------------------------------------------*/
/* Featured By Section */
/*-----------------------------------------------------------------------*/
.featured-by {
    background: #FFFFFF;
    padding: 104px 20px 80px;
}
.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 38px;
}
.featured-logos img {
    display: block;
    width: auto;
}

/*-----------------------------------------------------------------------*/
/* About Me Section (home page teaser) */
/*-----------------------------------------------------------------------*/
.about-me-section {
    background: linear-gradient(to right, #001F3F, #004080);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 90%;
    color: #FFFFFF;
}

/*-----------------------------------------------------------------------*/
/* Upcoming Shows Section */
/*-----------------------------------------------------------------------*/
.event-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.upcoming-shows-section a:hover img {
    transform: scale(1.05);
}
.upcoming-shows-section a:hover p {
    color: #004080;
}

.upcoming-shows-section img {
    width: 400px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

@media only screen and (min-width: 768px) {
    .upcoming-shows-section {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .upcoming-shows-section {
        padding: 0px 20px;
    }

    .event-flex-container {
        gap: 0px;
    }
}

/*-----------------------------------------------------------------------*/
/* Videos Section */
/*-----------------------------------------------------------------------*/
.videos-container {
    width: 100%;
}

.video-container {
    margin-bottom: 20px;
}

@media only screen and (min-width: 769px) {
    .videos-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .video-container iframe {
        width: 560;
        height: 315;
    }
}

@media only screen and (max-width: 768px) {
    .video-container {
        max-width: 560px;
        margin: 0px auto;
    }

    .video-container > div {
        position: relative;
        padding-bottom: 56.25%;
        height: 0px;
    }

    .video-container iframe {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
}

/*-----------------------------------------------------------------------*/
/* Closing CTA Section */
/*-----------------------------------------------------------------------*/
.closing-cta {
    background: #05233d;
    padding: 64px 20px;
    margin-top: 40px;
}

.closing-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.closing-cta h2 {
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 28px;
}

.closing-cta .hero-button-primary {
    display: inline-block;
}
