/* ===================================
   About Page Styles
   =================================== */

/* Hero Section */
.about-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(220, 20, 60, 0.4) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced About Content */
.about-detailed {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-red);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.experience-badge span.years {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge span.text {
    font-size: 14px;
    font-weight: 500;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Light Mode Overrides */
body.light-mode .about-hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(220, 20, 60, 0.1) 100%);
}

body.light-mode .stats-section {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

body.light-mode .experience-badge {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge span.years {
        font-size: 28px;
    }
}