/* Base brand styles - GoFitness */
:root {
    --brand-black: #000000;
    --brand-orange: #f76405;
}

body {
    background-color: #f8f9fa;
    /* very light */
}

.bg-black {
    background-color: var(--brand-black) !important;
}

.text-orange {
    color: var(--brand-orange) !important;
}

.navbar.bg-black {
    background-color: var(--brand-black) !important;
}

.btn-black {
    background-color: var(--brand-black);
    border-color: var(--brand-black);
    color: #fff;
    transition: all .2s ease-in-out;
}

.btn-black:hover,
.btn-black:focus {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .2);
}

.btn-orange {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transition: all .2s ease-in-out;
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: #e25b04;
    /* slightly darker */
    border-color: #e25b04;
    color: #fff;
    box-shadow: 0 .25rem .5rem rgba(247, 100, 5, .35);
}

.hero-banner img {
    object-fit: cover;
}

.hero-banner .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .55));
    width: 100%;
    max-width: 960px;
    padding: 3.25rem 0 3.25rem; /* más padding vertical */
}
.hero-banner-img { max-height: 420px; object-fit: cover; }
.hero-heading, .hero-subheading { text-shadow: 0 2px 6px rgba(0,0,0,.55); }
.hero-logo { max-width: 200px; }
@media (max-width: 575.98px) { .hero-logo { max-width: 150px; } }

/* Home hero minimal responsive tweaks */
@media (max-width: 575.98px) {
    .hero-banner-img { max-height: 340px !important; }
    .hero-banner h1 { font-size: 1.9rem; }
    .hero-banner p.h3 { font-size: 1.35rem; }
    .hero-banner .hero-overlay { padding: 2.25rem 0 2.25rem; }
}

@media (max-width: 576px) {
    .hero-banner img {
        max-height: 300px !important;
    }

    .hero-banner .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-banner .hero-overlay p {
        font-size: .95rem;
    }
}

.card .card-title {
    color: #222;
}

a {
    color: var(--brand-orange);
}

a:hover {
    color: #d85704;
}

/* Student dashboard & plan selection */
.dash-card:hover {
    box-shadow: 0 0.25rem 0.8rem rgba(0, 0, 0, .08);
}

.dash-action {
    border: none;
    background: #fff;
    box-shadow: 0 0.15rem 0.6rem rgba(0, 0, 0, .06);
}

.dash-action:hover {
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, .12);
}

.plan-card:hover {
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, .12);
}

/* Icono de estado del plan (student dashboard) */
.plan-status-icon {
    font-size: .8rem; /* tamaño ligeramente mayor */
    line-height: 1;   /* evita desalineación vertical */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .student-dashboard h4 {
        font-size: 1.2rem;
    }

    .dash-card .card-body {
        padding: .75rem !important;
    }

    .dash-action .card-body {
        padding: .85rem !important;
    }
}

/* Botones de solo ícono compactos */
.btn-icon {
    padding: .35rem .45rem !important;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.btn-icon i { font-size: 1rem; }

/* Código de confirmación (inputs separados) */
.code-box-group .code-box {
    width: 56px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .5px;
}
@media (max-width: 575.98px){
    .code-box-group .code-box { width: 52px; font-size: 1.4rem; }
}
@media (max-width: 420px){
    .code-box-group .code-box { width: 48px; font-size: 1.25rem; }
}
/* Estética focus */
.code-box-group .code-box:focus {
    box-shadow: 0 0 0 .25rem rgba(247,100,5,.25);
    border-color: var(--brand-orange);
}