body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    background: url('/assets/img/fondo-restaurante.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
    height: 100vh;
    width: 100vw;
}

#carouselTerraza {
    z-index: 0;
}

/* Navbar blur efecto */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Formularios Bootstrap personalizados */
.form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control:focus {
    box-shadow: none;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.ms-madi-regular {
    font-family: "Ms Madi", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 8rem;
}

.logo-img {
    height: 40px;
    /* o el tamaño que quieras */
    width: auto;
}

/* ==== MENÚ FLOTANTE ==== */
.menu-flotante {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    /* Fondo blanco */
    padding: 12px 10px;
    border-radius: 30px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.menu-flotante .icono {
    color: #000;
    /* Íconos negros por defecto */
    font-size: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-flotante .icono:hover {
    color: #28a745;
    /* Verde (Bootstrap Success) */
    transform: scale(1.2);
}

/* Estilos para el carrusel de imágenes */
.carrusel-img {
    opacity: 0.6;
    filter: brightness(0.7);
    transition: opacity 0.3s;
    object-fit: cover;
    height: 100vh;
    width: 100vw;
}

.carrusel-img:hover {
    opacity: 1;
}

.hero-content {
    z-index: 2;
}