/* DIRECT HERO FIX - Most aggressive fix to show hero content */
/* This targets the exact elements in the HTML */

/* Force main element visible */
main#main-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
}

/* Force hero section - exact selector from HTML */
section.hero#home {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    height: auto !important;
    max-height: none !important;
    padding: 150px 20px 100px !important;
    margin-top: 60px !important;
    margin-bottom: 0 !important;
    background-color: #1a1a2e !important;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    z-index: 1 !important;
    overflow: visible !important;
    transform: none !important;
    -webkit-transform: none !important;
}

/* Force hero-content div - exact selector */
section.hero#home .hero-content,
.hero .hero-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background: transparent !important;
}

/* Force h1 - exact selector */
section.hero#home .hero-content h1,
.hero .hero-content h1,
section.hero#home h1,
.hero h1 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 11 !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin: 10px 0 !important;
    padding: 10px !important;
    width: auto !important;
    height: auto !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
}

/* Force p - exact selector including #typewriter */
section.hero#home .hero-content p,
.hero .hero-content p,
section.hero#home p#typewriter,
.hero p#typewriter,
#typewriter {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 11 !important;
    font-size: 1.5rem !important;
    margin: 10px 0 30px 0 !important;
    padding: 10px !important;
    width: auto !important;
    height: auto !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
}

/* Force hero-buttons - exact selector */
section.hero#home .hero-content .hero-buttons,
.hero .hero-content .hero-buttons,
section.hero#home .hero-buttons,
.hero .hero-buttons {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 11 !important;
    gap: 1rem !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
}

/* Force buttons inside hero-buttons */
section.hero#home .hero-content .hero-buttons .btn,
.hero .hero-content .hero-buttons .btn,
section.hero#home .hero-buttons .btn,
.hero .hero-buttons .btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 12 !important;
    color: inherit !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    margin: 0 !important;
}

/* Override any pseudo-elements that might block */
section.hero#home::before,
.hero::before {
    z-index: 1 !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
}

/* Ensure video doesn't block */
section.hero#home video,
.hero video,
#hero-background-video {
    z-index: 0 !important;
    pointer-events: none !important;
}
