/* About Page CSS Fixes - Add this to your main.css or create separate file */

/* About Hero Section - Fixed */
.about-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
}

.about-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6);
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.7) 0%, rgba(0, 179, 147, 0.8) 100%);
    z-index: -1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero .hero-title {
    margin-bottom: 2rem;
    line-height: 0.9;
}

.about-hero .title-line-1,
.about-hero .title-line-2 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    line-height: 0.9;
}

.about-hero .title-line-1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero .title-line-2 {
    color: #00d4aa;
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.7);
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Overview Section - Fixed */
.about-overview {
    padding: 100px 0;
    background: #0a0a0a;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content {
    padding-right: 2rem;
}

.overview-content .section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Event Stats Grid - Fixed */
.event-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    color: #00d4aa;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Flier Showcase - Fixed */
.flier-showcase {
    position: relative;
}

.flier-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.flier-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 212, 170, 0.3);
}

.event-flier {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.flier-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 170, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.flier-container:hover .flier-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        padding-top: 100px;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 3rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto 0;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-content {
        padding-right: 0;
    }
    
    .event-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-overview {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
        padding-top: 80px;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .event-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .flier-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-overview {
        padding: 60px 0;
    }
}