/* ============================================
   ABOUT PAGE PREMIUM STYLES
    Combat Wrestling Federation
   ============================================ */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --card-dark: rgba(30, 40, 75, 0.6);
    --primary-red: #e53935;
    --bright-red: #ff5252;
    --accent-red: #ff1744;
    --text-light: #e0e0e0;
    --text-muted: #b0bec5;
    --border-color: rgba(229, 57, 53, 0.3);
    --border-hover: rgba(229, 57, 53, 0.8);
}

/* ============================================
   ABOUT HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.35) 0%, rgba(229, 57, 53, 0.22) 50%, rgba(10, 14, 39, 0.45) 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.18), transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(255, 82, 82, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(229, 57, 53, 0.08) 0%, transparent 45%);
    animation: heroBgShift 12s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes heroBgShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(-10px, 10px); }
}

.about-hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: pageHeroFade 0.9s ease-out;
}

@keyframes pageHeroFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 
        0 0 20px rgba(229, 57, 53, 0.8),
        0 0 40px rgba(229, 57, 53, 0.4),
        0 0 80px rgba(229, 57, 53, 0.2);
    margin-bottom: 1rem;
    animation: pageHeroTitle 1.2s ease-out;
}

@keyframes pageHeroTitle {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--bright-red);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* ============================================
   ABOUT CONTENT CONTAINER
   ============================================ */

.about-content {
    max-width: 1200px;
    margin: -3rem auto 0;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 5;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* ============================================
   ABOUT SECTIONS
   ============================================ */

.about-section {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.about-section:nth-child(1) { animation-delay: 0.1s; }
.about-section:nth-child(2) { animation-delay: 0.2s; }
.about-section:nth-child(3) { animation-delay: 0.3s; }
.about-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--bright-red));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ============================================
   CONTENT CARDS
   ============================================ */

.content-card {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.7), rgba(20, 30, 60, 0.5));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 16px;
    padding: 2.8rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(229, 57, 53, 0.1) 50%, transparent 100%);
    transition: all 0.6s ease;
    transform: rotate(0deg);
}

.content-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    border: 1px solid rgba(229, 57, 53, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 0 30px rgba(229, 57, 53, 0.5),
        0 0 60px rgba(229, 57, 53, 0.3),
        inset 0 0 30px rgba(229, 57, 53, 0.1);
    background: linear-gradient(135deg, rgba(40, 55, 100, 0.8), rgba(30, 45, 80, 0.6));
    transform: translateY(-8px);
}

.content-card:hover::before {
    transform: rotate(360deg);
}

.content-card:hover::after {
    opacity: 1;
}

/* ============================================
   TIMELINE STYLES
   ============================================ */

.timeline-item {
    display: flex;
    gap: 3rem;
    position: relative;
    animation: timelineSlide 0.8s ease-out backwards;
}

@keyframes timelineSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    width: 140px;
    display: flex;
    align-items: center;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', cursive;
    box-shadow: 
        0 6px 20px rgba(229, 57, 53, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-date {
    box-shadow: 
        0 8px 30px rgba(229, 57, 53, 0.6),
        0 0 40px rgba(229, 57, 53, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.timeline-content h3 {
    color: var(--bright-red);
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

/* ============================================
   DISTINCTION CONTENT
   ============================================ */

.distinction-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.distinction-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   REVIVAL CONTENT
   ============================================ */

.revival-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.legacy-statement {
    color: var(--bright-red);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), rgba(255, 82, 82, 0.08));
    border: 2px solid rgba(229, 57, 53, 0.4);
    border-left: 4px solid var(--primary-red);
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legacy-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.1), transparent);
    animation: shimmerSlide 3s linear infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   VALUES GRID
   ============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.7), rgba(20, 30, 60, 0.5));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out backwards;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.15), transparent 70%);
    transition: all 0.6s ease;
    transform: rotate(0deg);
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    border: 1px solid rgba(229, 57, 53, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.5s; }

.value-card:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 0 30px rgba(229, 57, 53, 0.5),
        0 0 60px rgba(229, 57, 53, 0.3),
        inset 0 0 30px rgba(229, 57, 53, 0.1);
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(135deg, rgba(40, 55, 100, 0.8), rgba(30, 45, 80, 0.6));
}

.value-card:hover::before {
    top: -50%;
    left: -50%;
    transform: rotate(360deg);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(229, 57, 53, 0.3));
    animation: iconBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.value-card h3 {
    color: var(--bright-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), rgba(139, 0, 0, 0.1));
    border: 2px solid rgba(229, 57, 53, 0.4);
    border-radius: 16px;
    padding: 4rem 2.5rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 82, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 57, 53, 0.08) 0%, transparent 50%);
    animation: bgPulse 6s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-family: 'Bebas Neue', cursive;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        0 8px 25px rgba(229, 57, 53, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    box-shadow: 
        0 12px 40px rgba(229, 57, 53, 0.7),
        0 0 60px rgba(229, 57, 53, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1.1) translateY(-3px);
    background: linear-gradient(135deg, var(--bright-red), #ff7070);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .timeline-item {
        gap: 2rem;
    }

    .timeline-marker {
        width: 120px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .about-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .about-content {
        margin: -2rem auto 0;
        padding: 0 1.5rem 3rem;
    }

    .about-container {
        gap: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-marker {
        width: 100%;
    }

    .timeline-marker::after {
        display: none;
    }

    .timeline-date {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .distinction-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .revival-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .legacy-statement {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.8rem;
    }

    .value-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        margin-top: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 45vh;
        padding: 1rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .about-subtitle {
        font-size: 0.95rem;
    }

    .about-content {
        margin: -1.5rem auto 0;
        padding: 0 1rem 2rem;
    }

    .about-container {
        gap: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    .timeline-date {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .distinction-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .revival-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .legacy-statement {
        font-size: 0.95rem;
        padding: 1.2rem;
        margin-top: 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .value-card {
        padding: 2rem 1rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}