body {
    font-family: 'SourceSans', sans-serif;
    font-weight: 400;
    color: #222;
    background-color: black;
}

h1, h2 {
    font-family: 'Flexo', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

h3, h4, h5 {
    font-family: 'MyriadPro', sans-serif;
    font-weight: 600;
}

/*
    .navbar .nav-link {
        font-family: 'MyriadPro', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
*/

.btn {
    font-family: 'Flexo', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

footer {
    font-family: 'MyriadPro', sans-serif;
}

.top-bar {
    background-color: #ff1623;
}

/*
    .navbar .nav-link {
        font-weight: 500;
    }
*/

.categoria {
    height: auto !important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    width: 100% !important;
}

.categoria::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.categoria h4 {
    position: relative;
    z-index: 2;
}




@font-face {
    font-family: 'Flexo';
    src: url('../fonts/Flexo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SchoolBookNew';
    src: url('../fonts/SchoolBookNew-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSans';
    src: url('../fonts/SourceSansVariable-Roman.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSans';
    src: url('../fonts/SourceSansVariable-Italic.otf') format('opentype');
    font-weight: 100 900;
    font-style: italic;
}

@media (max-width: 767px) {
    .horario-row::after {
        display: none;
    }
}


/* ===============================
   NAVBAR ESTILO CORPORATIVO
================================= */

.navbar {
    background-color: #000 !important; /* Fondo negro */
    --bs-navbar-padding-y: 1.5rem;
}

.navbar .nav-link {
    font-family: 'MyriadPro', sans-serif;
    font-weight: 600;
    color: #ffffff !important; /* Blanco por defecto */
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Hover */
.navbar .nav-link:hover {
    color: #ff1623 !important; /* Rojo corporativo */
}

/* Activo (seleccionado) */
.navbar .nav-link.active {
    color: #ff1623 !important;
}

/* Botón Reservaciones */
.navbar .btn-danger {
    background-color: #ff1623;
    border: none;
}

.navbar .btn-danger:hover {
    background-color: #8f0e12;
}

/* Línea vertical roja */
.navbar .navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 2px;
    background-color: #ff1623; /* Rojo corporativo */
}

.navbar .navbar-nav .nav-item {
    position: relative;
    padding: 0 18px;
}

/* ===============================
   LINEA ROJA MENU ACTIVO
================================= */

.navbar .nav-link {
    color: #ffffff !important;
    position: relative;
    padding-bottom: 0px;
}

/* Activo */
.navbar .nav-link.active {
    color: #ff1623 !important;
    border-bottom: 1px solid #ff1623; /* Línea roja */
}


/* ===============================
   FLECHAS SLIDER PERSONALIZADAS
================================= */

/* Contenedor del botón */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff1623; /* Rojo corporativo */
    border-radius: 50%;
    opacity: 1;
}

/* Ícono blanco */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0); /* Hace la flecha blanca */
    width: 25px;
    height: 25px;
}

/* Efecto hover elegante */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #8f0e12; /* rojo más oscuro */
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev {
  left: 10px;
}


/* ===============================
   SEPARADOR ROJO HORARIO
================================= */

.horario-row {
    position: relative;
}

.horario-row::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 2px;
    background-color: #ff1623; /* rojo corporativo */
    transform: translateX(-50%);
}

/* ===============================
   MAPA FULL WIDTH
================================= */

.map-container {
    width: 100%;
    height: 650px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* ===============================
   SECCIÓN RESERVAS FONDO NEGRO
================================= */

.reservas-section {
    background-color: #000;
    color: #fff;
}

.reservas-section h2 {
    color: #ff1623; /* título rojo */
    font-family: 'SchoolBookNew', sans-serif;
    font-weight: 700;
}

/* Inputs */
.reservas-section .form-control,
.reservas-section .form-select {
    background-color: #111;
    border: 1px solid #444;
    color: #fff;
}

/* Placeholder blanco tenue */
.reservas-section .form-control::placeholder {
    color: #bbb;
}

/* Focus elegante */
.reservas-section .form-control:focus,
.reservas-section .form-select:focus {
    background-color: #111;
    border-color: #ff1623;
    box-shadow: 0 0 5px rgba(177, 18, 23, 0.6);
    color: #fff;
}

/* Mensajes de validación */
.reservas-section .invalid-feedback {
    color: #ff6b6b;
}

/* ===============================
   FOOTER ROJO CORPORATIVO
================================= */

footer {
    background-color: #ff1623; /* Rojo corporativo */
    color: #ffffff; /* Texto blanco */
    padding: 40px 0;
}

footer p,
footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #000000; /* efecto hover elegante */
}

footer img {
    max-height: 100px;
}

/* ===============================
   INPUTS BLANCOS EN SECCIÓN NEGRA
================================= */

.reservas-section {
    background-color: #000;
    color: #fff;
}

/* Inputs y Select blancos */
.reservas-section .form-control,
.reservas-section .form-select {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #000;
}

/* Placeholder gris suave */
.reservas-section .form-control::placeholder {
    color: #777;
}

/* Focus elegante rojo */
.reservas-section .form-control:focus,
.reservas-section .form-select:focus {
    border-color: #ff1623;
    box-shadow: 0 0 6px rgba(177, 18, 23, 0.5);
}

/* Validación */
.reservas-section .invalid-feedback {
    color: #ff6b6b;
}

.bg-dark {
    background-color: #171717 !important;
} 


.carousel-caption {
  position: absolute;
  right: 70%;
  bottom: 1.25rem;
  left: 0%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.bg-danger {
    background-color: #ff1623 !important;
    border: none;
}

.Font1 {
    font-family: 'SchoolBookNew', sans-serif;
    font-weight: 600;
}

.text-danger {
    color: #ff1623 !important;
}

.btn-danger {
    background-color: #ff1623 !important;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 90px;
    }
}

@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item:not(:last-child)::after {
    display: none;
  }
}


.navbar-toggler {
    border-color: #ff1623;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff1623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.galeria-img {
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.galeria-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}


.categoria-card {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.categoria-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

a:not(:has(img)) {
    display: inline-block;
    transition: transform 0.3s ease;
}

a:not(:has(img)):hover {
    transform: scale(1.1);
}

a:has(img) {
    display: inline-block;
    overflow: hidden;
}

a:has(img) img {
    transition: transform 0.3s ease;
}

a:has(img):hover img {
    transform: scale(1.1);
}

