/* SHARED HERO SECTION - IDENTICAL ACROSS ALL PAGES */
/* This file contains the exact styling from index.html to ensure pixel-perfect consistency */

/* CRITICAL HERO SECTION - EXACT SAME AS MAIN LANDING PAGE */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 1rem 1rem;
    padding-top: 60px; /* Proper spacing below navbar so header isn't cut off */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0a0a0a !important;
}

/* OVERRIDE THE GREEN GLOW FROM DESIGN SYSTEM */
.hero-section::before {
    display: none !important;
}

/* Large Hero Brand - EXACT same styling, 3x bigger */
.hero-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px; /* 3px gap between blocks */
    margin-bottom: calc(2rem - 30px); /* Move backlit letters 30px closer to blocks - UNIFIED SPACING */
    width: 100%;
    max-width: 100vw;
    overflow: visible;
}

.hero-brand-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* 3x bigger (was 20px) */
    height: 60px; /* 3x bigger (was 20px) */
    border-radius: 3px;
    font-size: 78px; /* Slightly smaller than 84px */
    font-weight: bold;
    color: #000;
    background: #00ff41;
    border: 2px solid #ff4444;
    box-shadow: none;
    transition: all 0.3s ease;
    font-family: 'Minion Pro', 'Minion Pro Bold', 'Times New Roman', serif;
}

.hero-brand-letter:nth-child(6) {
    /* The "Z" - make it look like the favicon */
    background: #FFFF00;
    border: 2px solid #ff4444;
    color: #ff4444;
    box-shadow: none;
    font-size: 84px; /* Larger font for the Z */
}

.hero-brand-letter:nth-child(10) {
    /* The space - make it green like the others */
    background: #00ff41;
    border: 2px solid #ff4444;
    box-shadow: none;
    width: 60px; /* Same size as letter blocks */
}

/* Removed hover effect to keep backlight static */

.hero-section.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
    color: #0a0a0a;
    margin-bottom: 60px;
    text-align: center;
    background: transparent;
    font-family: 'Minion Pro', 'Minion Pro Bold', 'Times New Roman', serif;
    font-weight: 600;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    z-index: 1;
}

/* NEW ELEGANT BACKLIGHT SYSTEM */
.hero-subtitle::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    filter: blur(8px) brightness(1.2);
    opacity: 0.9;
    z-index: -1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hero-subtitle::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    filter: blur(16px) brightness(1.5);
    opacity: 0.6;
    z-index: -2;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* HOVER EFFECTS - Interactive backlight */
.hero-subtitle:hover::before {
    filter: blur(6px) brightness(1.8);
    opacity: 1;
    transform: scale(1.05);
}

.hero-subtitle:hover::after {
    filter: blur(12px) brightness(2.0);
    opacity: 0.8;
    transform: scale(1.1);
}

/* JavaScript will automatically set data-text for multi-span subtitles */
.hero-subtitle[data-text]::before,
.hero-subtitle[data-text]::after {
    content: attr(data-text);
}

.hero-subtitle span {
    margin: 0 6px; /* Tighter spacing to fit on one line */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .hero-brand {
        gap: 2px; /* 2px gap on mobile */
        margin-bottom: 1.5rem;
    }
    
    .hero-brand-letter {
        width: 40px; /* Smaller on mobile */
        height: 40px;
        font-size: 52px;
    }
    
    .hero-brand-letter:nth-child(6) {
        font-size: 56px;
    }
    
    .hero-brand-letter:nth-child(10) {
        width: 40px;
    }
    
    .hero-subtitle span {
        margin: 0 8px; /* SMALL spacing on mobile */
    }
}

@media (max-width: 480px) {
    .hero-brand {
        gap: 1px; /* 1px gap on very small screens */
    }
    
    .hero-brand-letter {
        width: 30px;
        height: 30px;
        font-size: 39px;
    }
    
    .hero-brand-letter:nth-child(6) {
        font-size: 42px;
    }
    
    .hero-brand-letter:nth-child(10) {
        width: 30px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 30px;
    }
    
    .hero-subtitle span {
        margin: 0 6px; /* SMALL spacing on very small screens */
    }
} 