﻿body {
}

/* =========================
   ABOUT PAGE STYLES ONLY
========================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT RED PANEL */
.about-highlight {
    background: #d6342a;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

    .about-highlight img {
        width: 80px;
        margin-bottom: 30px;
    }

    .about-highlight h3 {
        font-size: 20px;
        line-height: 1.6;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* RIGHT CONTENT (ANIMATION) */
.about-content {
    background: #ffeb73;
    padding: 50px;
    animation: slideFromRight 1.2s ease forwards;
    opacity: 0;
}

/* SLIDE RIGHT → LEFT */
@keyframes slideFromRight {
    from {
        transform: translateX(120px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #222;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        animation: none;
        opacity: 1;
    }
}


/* =========================
   ABOUT HERO / BREADCRUMB
========================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("/images/breadcrumb/about-badminton-hero.jpg") center right / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4) );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .about-hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        padding: 14px 40px;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 6px;
        letter-spacing: 1px;
    }

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 260px;
    }

    .about-hero-content h1 {
        font-size: 32px;
        padding: 10px 24px;
    }
}
