/* ============================================
   IRON EMPIRE GYM - SEAMLESS HERO REDESIGN
   Immersive, full-width hero sections with overlays
   ============================================ */

/* Seamless Hero Container */
.seamless-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    /* Immersive height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; Disable for better mobile perf or test */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 0;
    /* Seamless flow */
    padding: 6rem 1rem;
}

/* Dark Cinematic Overlay */
.seamless-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(13, 13, 13, 0.9) 0%,
            rgba(13, 13, 13, 0.7) 50%,
            rgba(13, 13, 13, 0.9) 100%);
    z-index: 1;
}

/* Texture Overlay (optional for grit) */
.seamless-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpHero 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Typography Overrides for Hero */
.seamless-hero h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background: none;
    -webkit-text-fill-color: #ffffff;
    /* Ensure visible over image */
}

.seamless-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .seamless-hero {
        min-height: auto;
        padding: 5rem 1.5rem;
    }
}