/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
*/
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
/*
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
    /* ===========================
   BASE GENERAL
=========================== */
body.barber-main {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d) !Important;
    /*   min-height: 100vh;*/
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

/* TOP BAR */
.top-row {
    background-color: #1c1c1c;
    /*height: 3.5rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;*/
}

    .top-row a {
        color: #ffcb74;
        text-decoration: none;
        font-weight: bold;
    }

        .top-row a:hover {
            color: #ffa500;
            text-decoration: underline;
        }

/* ===========================
   CONTENEDOR GENERAL
=========================== */
.page-container-barber {
    padding: 25px;
    max-width: 1100px;
    margin: auto;
}

/* ===========================
   TARJETAS PRINCIPALES
=========================== */
.card-modern-barber {
    background: #1b1b1b;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid #323232;
    color: #f1f1f1;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.3);
}

    .card-modern-barber h2,
    .card-modern-barber h3 {
        color: #ffcb74;
    }

/* ===========================
   BOTONES
=========================== */
.btn-barber-primary {
    background: linear-gradient(90deg, #df9d39, #ffcb74);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    color: #1c1c1c;
    font-weight: bold;
}

    .btn-barber-primary:hover {
        opacity: 0.9;
    }

.btn-barber-secondary {
    background: #444;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    color: white;
}

/* ===========================
   INPUTS
=========================== */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.input-modern {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

    .input-modern:focus {
        background: #333 !important;
        border-color: #ffcb74 !important;
        box-shadow: 0 0 5px rgba(255,203,116,0.4) !important;
    }

/* ===========================
   TARJETAS DE MEMBRESÍA
=========================== */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.membership-card {
    background: #242424;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

    .membership-card h4 {
        color: #ffcb74;
    }

    .membership-card .price {
        display: block;
        margin-top: 10px;
        font-size: 20px;
        font-weight: bold;
        color: #df9d39;
    }

/* ===========================
   TARJETAS DE SERVICIOS
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #242424;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333;
}

    .service-card h4 {
        color: #ffcb74;
    }

    .service-card .price {
        display: block;
        margin-top: 10px;
        font-size: 18px;
        font-weight: bold;
        color: #df9d39;
    }

/* ===========================
   FOOTER
=========================== */
footer {
    text-align: center;
    padding: 25px;
    color: #ffcb74;
    font-size: 14px;
}
/* ====== OVERLAY DEL MODAL ====== */
.modal-modern-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999 !important; /* MUY IMPORTANTE */
}

/* Oculto */
.modal-modern-overlay.d-none {
    display: none !important;
}

/* ====== CONTENEDOR DEL MODAL ====== */
.modal-modern {
    width: 700px;
    max-width: 90%;
    background: #1e1e1e;
    padding: 25px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 0 18px rgba(0,0,0,0.8);

    z-index: 10000 !important;
}

/* Header */
.modal-header-barber {
    color: #ffcb74;
    border-bottom: 1px solid #444;
}

/* Botón de cerrar */
.close-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
.close-btn:hover {
    color: #ffcb74;
}
main, .container, .container-fluid {
    background: transparent !important;
}
