/**
 * Hero Header Styles
 * Family Media Manager Plugin
 */

/* Hero Header Container */
.fmm-hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Slideshow Container */
.fmm-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.fmm-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: blur(1px); /* Soft, dreamy effect */
}

.fmm-hero-slide.active {
    opacity: 1;
}

/* Blue Tint Overlay */
.fmm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 128, 185, 0.50); /* Blue overlay with 50% opacity */
    z-index: 1;
}

/* Content Container */
.fmm-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Heading */
.fmm-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* Tagline */
.fmm-hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0 0 15px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Domain */
.fmm-hero-domain {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .fmm-hero-header {
        height: 300px;
    }
    
    .fmm-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .fmm-hero-tagline {
        font-size: 1.2rem;
    }
    
    .fmm-hero-domain {
        font-size: 1rem;
    }
}
