/* ================================
   CABECERA CON VIDEO
================================ */
.header-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.header-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.header-contenido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    margin-top: 80px;
    z-index: 5;
}

.titulo-restaurante {
    font-size: 3.5rem;
    font-weight: bold;
}

.subtitulo-restaurante {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* ================================
   NAVBAR
================================ */
.navbar-custom {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.logo-header {
    width: 60px;
}

.nombre-restaurante {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.navbar-custom .nav-link {
    color: #fff;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f8d27a;
}

/* ================================
   SEPARADORES ONDULADOS
================================ */
.wave-separator-header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.wave-separator-top {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
    background-color: #ffffff;
}

/* ================================
   SERVICIOS
================================ */
#servicios {
    background-color: #ffffff;
}

.servicio-card {
    border: none;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.582);
    transition: transform 0.3s;
}

.servicio-card:hover {
    transform: translateY(-8px);
}

.servicio-icon {
    width: 110px;
}

#servicios .row {
    row-gap: 3rem;
}

/* ================================
   IMAGEN DESTACADA
================================ */
.imagen-destacada {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #000000;
    margin-top: 0;
}

.imagen-destacada .contenido {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.imagen-destacada img {
    width: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
    margin-bottom: 20px;
}

.imagen-destacada h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px 0;
    color: #ffffff;
}

.imagen-destacada p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* ================================
   EQUIPO
================================ */
.equipo-separador {
    position: relative;
    width: 100%;
    margin-top: -120px;
    z-index: 5;
    text-align: center;
}

.equipo-separador img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}

.equipo-separador-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.equipo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* ================================
   CARTA
================================ */
.btn-menu {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-menu:hover {
    transform: translateY(-5px);
    background: #f8d27a;
    color: #000;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* ================================
   CONTACTO
================================ */
#contacto {
    padding: 80px 0;
}

#contacto h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* ================================
   MAPA
================================ */
.mapa-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

#carta .equipo-card img {
    height: 220px;
    object-fit: contain;
    background-color: rgb(197, 197, 197);
}