/*
 * Hero Section Styles for Homepage
 * ElshadaiFM Theme
 */

/* Header Overlay Styles */
.hero-fullscreen .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}



.header-logo-section {
    padding: 20px 0 10px;
    text-align: center;
}

.header-nav-section {
    padding: 10px 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.site-branding h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.site-branding h1 a {
    color: white;
    text-decoration: none;
}

.site-tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 5px 0 0 0;
    color: white;
}

.main-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    font-weight: 500;
    padding: 12px 20px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;



}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero-fullscreen {
    height: 75vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-background iframe {
    width: 120%;
    height: 120%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    border: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(101deg, rgba(13, 58, 107, 0.9) 0%, rgba(8, 37, 66, 0.95) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 3;
}

.hero-content-wrapper {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 0;
    left: 0;
}

.hero-text-content {
    padding-top: 120px;
    text-align: center;
}

.hero-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../../uploads/2025/08/big-text.png');
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100%;
    opacity: 0.4;
    z-index: -1;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .site-branding h1 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
        margin: 0 auto;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.menu-open {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        text-align: center;
        display: block;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header-logo-section {
        padding: 15px 0 8px;
    }
    
    .header-nav-section {
        padding: 8px 0 15px;
    }
    
    .site-branding h1 {
        font-size: 1.8rem;
    }
    
    .site-tagline {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 8px;
        padding: 15px;
    }
    
    .nav-menu li a {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
}