.homecoming-section-embed {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.25rem;
    text-align: center;
}

.homecoming-title-embed {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #8b1538;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.homecoming-title-embed::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 72%;
    height: 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f9c846, #ff6b6b);
    opacity: 0.75;
}

.homecoming-description-embed {
    font-size: 1.125rem;
    color: #424242;
    margin-bottom: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.video-container-embed {
    position: relative;
    max-width: 420px; /* Optimized for iPhone portrait aspect ratio */
    margin: 0 auto 1.5rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #000;
    aspect-ratio: 9/16; /* iPhone portrait ratio */
}

.video-container-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homecoming-cta-embed {
    display: inline-block;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #8b1538);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homecoming-cta-embed:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(255, 107, 107, 0.35);
    text-decoration: none;
    color: white;
}

/* Mobile responsiveness for video section */
@media (max-width: 768px) {
    .video-container-embed {
        max-width: 280px; /* Smaller on mobile but maintains portrait ratio */
        border-radius: 20px;
    }
    
    .homecoming-description-embed {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-container-embed {
        max-width: 240px;
    }
}
