/* About section slideshow styles */
/* About section slideshow styles */
.about-slideshow {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4/3;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .about-slideshow {
        max-width: 98vw;
        aspect-ratio: 4/5;
        height: auto;
    }
}
.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #181818;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
    border-radius: 18px;
}
.about-slide.active {
    opacity: 1;
    z-index: 2;
}
.about-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7em;
    z-index: 10;
}
.about-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}
.about-dot.active {
    background: var(--primary);
    opacity: 1;
}
/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-image-placeholder::before {
    content: '📸 THOMAS + NMAX';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 69, 0, 0.3);
    letter-spacing: 3px;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    border: 2px solid var(--primary);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}
