/* ============ ABOUT PAGE STYLES ============ */
/* STIFF BEAST™ About Page - WordPress Block Theme */

:root {
    --primary-black: #000000;
    --primary-red: #D40000;
    --primary-gold: #FFD700;
    --primary-white: #FFFFFF;
    --primary-orange: #FF4500;
}

/* ============ PAGE HEADER ============ */
.about-page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.15);
}

.about-page-header .page-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.about-page-header .page-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
}

/* ============ HERO SECTION ============ */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.about-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/themes/stiff-beast/assets/images/gongc.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 1;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #E6B800 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #E6B800 !important;
    background-clip: unset !important;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.about-hero .hero-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-left: 4px solid var(--primary-gold);
}

/* ============ BADGE SECTION ============ */
.badge-section {
    padding: 60px 20px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08) 0%, rgba(212, 0, 0, 0.08) 100%);
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
    overflow: hidden;
}

.badges-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(212, 0, 0, 0.12) 100%);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
}

.badge-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(212, 0, 0, 0.15) 100%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.08);
}

/* ============ SHOWCASE SECTION ============ */
.showcase-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,0,0,0.08) 0%, transparent 50%);
    z-index: 1;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.showcase-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.8),
        0 0 100px rgba(255,215,0,0.1);
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.showcase-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.9),
        0 0 120px rgba(255,215,0,0.2);
    border-color: var(--primary-gold);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.05);
}

.clickable-image {
    cursor: zoom-in;
}

/* ============ CTA SECTION ============ */
.about-cta {
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange)) !important;
    padding: 100px 20px;
    text-align: center;
}

.about-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-btn {
    padding: 18px 60px;
    font-weight: 900;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.about-cta .cta-btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.about-cta .cta-btn-primary:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    color: var(--primary-black);
}

.about-cta .cta-btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.about-cta .cta-btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-red);
}

/* ============ IMAGE MODAL ============ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    cursor: zoom-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.image-modal-close:hover {
    color: var(--primary-gold);
}

.image-modal-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .about-page-header {
        padding: 40px 15px;
    }
    
    .about-page-header .page-title {
        font-size: 2rem;
    }
    
    .about-page-header .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero {
        min-height: 60vh;
        padding: 40px 20px;
    }
    
    .about-hero .hero-content {
        padding: 40px 20px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .about-hero .hero-text {
        font-size: 1rem;
        padding: 20px;
    }
    
    .badge-section {
        padding: 40px 15px;
    }
    
    .badges-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .badge-item {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .showcase-section {
        padding: 50px 15px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .showcase-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cta {
        padding: 60px 20px;
    }
    
    .about-cta .cta-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-cta .cta-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-page-header .page-title {
        font-size: 1.5rem;
    }
    
    .about-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero .hero-text {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .badge-item {
        font-size: 0.7rem;
        padding: 10px 15px;
    }
    
    .showcase-title {
        font-size: 1.4rem;
    }
    
    .about-cta .cta-title {
        font-size: 1.4rem;
    }
    
    .about-cta .cta-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}
