/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === GENERAL === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../images/night-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    padding-top: 80px;
}

/* === HEADER FIJO === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 90px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

/* === MENÚ HAMBURGUESA === */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    z-index: 102;
}

/* === MENÚ DE NAVEGACIÓN === */
.nav-menu {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    transition: background 0.3s;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-item:hover {
    background: #c17606;
    color: white;
}

.language-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 0.25rem 0.7rem;
    border: 1px solid #007bff;
    background: transparent;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: #007bff;
    color: white;
}

/* OCULTAR COMPLETAMENTE EL BOTÓN DE CAMPANA Y MENÚ DE RESERVA */
.bell-menu-toggle,
#bell-btn,
#reservation-menu {
    display: none !important;
}

/* === CONTENIDO PRINCIPAL === */
.main-content {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item[style*="opacity: 1"] {
    opacity: 1;
    z-index: 10;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    right: 5%;
    text-align: center;
    color: white;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-caption h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 11;
    transition: background 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.5);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 11;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

/* === SECCIÓN DE SERVICIOS === */
.services-section {
    padding: 4rem 2rem;
    background: rgba(0, 10, 30, 0.85);
    margin-top: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 1.2rem 1rem 0.5rem;
    color: #007bff;
}

.service-card p {
    padding: 0 1rem 1.2rem;
    line-height: 1.5;
    color: #555;
}

/* === SECCIÓN DE CONTACTO === */
.contact-section {
    padding: 4rem 2rem;
    background: rgba(0, 10, 30, 0.85);
    margin-top: 3rem;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form,
.contact-map {
    flex: 1;
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-form h3,
.contact-map h3 {
    margin-bottom: 1.5rem;
    color: #007bff;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.footer {
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* === SMOOTH SCROLL === */
html {
    scroll-behavior: smooth;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    header {
        padding: 0 1rem;
    }

    .logo {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
    }

    .logo-img {
        max-height: 40px;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 12px 0;
        font-size: 1.2rem;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .language-selector {
        margin-top: 30px;
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .lang-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .carousel-container {
        height: 60vh;
    }

    .carousel-caption {
        padding: 0.5rem;
        bottom: 1rem;
        left: 2%;
        right: 2%;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-control {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .services-gallery {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-map {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}