/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(0deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.about-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.about-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Old styles removed */
.about-hero-content {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

/* About Sections */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.about-section.alt-bg {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.about-section.dark-bg {
    background: #000000;
    color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.85);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

/* Stats Cards */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 85, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.2);
    border-color: var(--accent-color);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mission-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.15);
}

.mission-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.mission-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.3rem;
}

/* Notice Box */
.notice-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 0, 85, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    margin: 40px 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.notice-icon {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.notice-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Programs Grid (Music Types) */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.program-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.15);
}

.program-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.program-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-section p {
    font-size: 1.2rem;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.85);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

.btn-primary i {
    margin-right: 10px;
}

/* Contact Info */
.contact-info-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 85, 0.05);
    border-radius: 15px;
    margin: 40px 0;
}

.contact-info-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--accent-color) 10%, 
        var(--accent-color) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border: 4px solid #000;
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(255, 0, 85, 0.2),
        0 0 20px rgba(255, 0, 85, 0.6);
    transition: all 0.3s ease;
}

.timeline-dot.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 4px rgba(255, 0, 85, 0.2),
            0 0 20px rgba(255, 0, 85, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 
            0 0 0 8px rgba(255, 0, 85, 0.1),
            0 0 30px rgba(255, 0, 85, 0.8);
    }
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 8px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -12px;
    border-width: 10px 12px 10px 0;
    border-color: transparent rgba(255, 0, 85, 0.3) transparent transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -12px;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent rgba(255, 0, 85, 0.3);
}

.timeline-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Timeline Year Badge (optional - shown on hover) */
.timeline-item::after {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.timeline-item:hover::after {
    opacity: 1;
    top: -25px;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        left: -12px !important;
        right: auto !important;
        border-width: 10px 12px 10px 0 !important;
        border-color: transparent rgba(255, 0, 85, 0.3) transparent transparent !important;
    }
    
    .timeline-item::after {
        left: 30px;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-dot {
        width: 18px;
        height: 18px;
        border: 3px solid #000;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 60px !important;
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-grid,
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 50px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
}
