/*:root { --primary-red: #C62828; --white: #FFFFFF; }

body {
    padding-bottom: 60px;
}

.navbar { background-color: var(--primary-red); }
.navbar .nav-link, .navbar .navbar-brand { color: var(--white) !important; }

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

footer { background: #f8f9fa; }

.gallery-thumbnail { cursor: pointer; }
*/

:root {
    --asca-bg: #FFFFF7;
    --asca-primary: #c52227;
    --asca-hover: #FFFFF7;
    --asca-dark: #1f2937;
    --asca-muted: #6b7280;
    --asca-card: #ffffff;
    --asca-accent: #0ea5e9;
    --asca-success: #16a34a;
    --asca-warning: #f59e0b;
    --asca-danger: #dc2626;
}

html, body {
    background: var(--asca-bg);
    color: var(--asca-dark);
}

/* Navbar */
.asca-navbar {
    background: var(--asca-primary);
    color: #fff;
}
.inputPrefinBgColor {
    background-color: #59AC77;    
}
    .asca-navbar .navbar-brand,
    .asca-navbar .nav-link,
    .asca-navbar .navbar-text {
        color: #fff !important;
    }

        .asca-navbar .nav-link:hover,
        .asca-navbar .dropdown-item:hover {
            color: var(--asca-primary) !important;
            background: var(--asca-hover) !important;
        }

.asca-badge-role {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Search bar styling */
.search-wrap {
    width: 100%;
    max-width: 680px;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(197, 34, 39, .25);
    border-color: var(--asca-primary);
}

/* Cards */
.asca-card {
    background: var(--asca-card);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(31, 41, 55, 0.06);
}

    .asca-card:hover {
        box-shadow: 0 10px 36px rgba(31, 41, 55, 0.10);
        transform: translateY(-2px);
        transition: all .25s ease;
    }

/* Footer */
.asca-footer {
    background: #111827;
    color: #e5e7eb;
}

    .asca-footer a {
        color: #e5e7eb;
        text-decoration: none;
    }

        .asca-footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

/* Utility tweaks */
.cursor-pointer {
    cursor: pointer;
}

.sticky-top.safe {
    top: 0;
}

/* Section headings */
.section-title {
    font-weight: 800;
    letter-spacing: .3px;
    color: var(--asca-dark);
}

.section-sub {
    color: var(--asca-muted);
}

/* Stat cards */
.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Ground chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f1f5f9;
    border-radius: 999px;
    padding: .35rem .75rem;
    color: #0f172a;
}

/* Coaches */
.coach-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.coach-card:hover {
    transform: translateY(-3px);
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 36px rgba(31, 41, 55, .12);
}

/* Testimonials */
.testimonial-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
}

.testimonial-card {
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: start;
    background: var(--asca-card);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(31, 41, 55, .06);
}

    .testimonial-card .quote {
        font-style: italic;
    }

.testimonial-track::-webkit-scrollbar {
    height: 8px;
}

.testimonial-track::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}

/* Ensure dropdown fits on small screens */
/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-caption {
        padding: 0.75rem;
    }
}

/* Tablet (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-caption {
        padding: 1.5rem;
    }
}

/* Desktop (769px and above) */
@media (min-width: 769px) {
    .hero-caption {
        padding: 2.5rem;
    }
}

