﻿/* ========================================================
   about-us.css
   Page-specific styles for About_us.aspx.
   Depends on Home.css being loaded first — reuses its
   custom properties (--primary-gold, --spacing-*, --radius-*,
   --shadow-*, --transition-*) rather than redefining them.
   ======================================================== */

/* === BREADCRUMB === */
.about-breadcrumb {
    width: 100%;
    padding: 28px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
}

.about-breadcrumb-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

    .about-breadcrumb-title h2 {
        margin: 0;
        font-family: 'Manrope', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
    }

    .about-breadcrumb-title span {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
    }

        .about-breadcrumb-title span a {
            color: var(--black);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

/* === ABOUT SECTION === */
.cr-about {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .cr-about .heading {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        margin-bottom: var(--spacing-sm);
    }

.cr-about-content p {
    margin-bottom: var(--spacing-md);
}

.cr-about-content h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--dark-brown);
}

.cr-about-image {
    position: sticky;
    top: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .cr-about-image img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
    }

/* === STAT COUNTERS === */
.cr-counter-block {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background-color: var(--light-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.cr-counter-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 4px;
    line-height: 1;
}

.cr-counter-title {
    text-align: center;
}

    .cr-counter-title span {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--medium-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .cr-about-image {
        position: static;
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .about-breadcrumb-title h2 {
        font-size: 18px;
    }

    .cr-counter-number {
        font-size: 1.75rem;
    }
}
