:root{
    --primary-gradient: linear-gradient(90deg, #00b4db 0%, #00d2ff 50%, #05d6a0 100%);
    --text-dark: #002347;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Base */
.header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 900;
    font-size: 22px;
}

.logo-icon {
    width: 28px;
    color: #00b4db;
}

/* Menu Desktop */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: #00b4db;
}

/* Botón Booking */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-book {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: var(--transition);
}

.btn-book:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Hidden Elements Desktop */
.menu-checkbox, .hamburger, .close-menu, .menu-overlay {
    display: none;
}

/* --- RESPONSIVE (Móvil/Tablet) --- */

.fl{ float:left}
.wmi{ width:50% }
.r{ text-align:right}
.l{ text-align:right}
.footer {
    background-color: #0a1128;  
    color: #94a3b8; 
    padding: 30px 0;
    font-size: 14px;
    margin-top: auto;  
}
.footer a {
    color: #94a3b8;
    text-decoration: none;
 
}


@media (max-width: 992px) {
    /* Mostrar Hamburguesa */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
    }

    /* Menu Lateral (Drawer) */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido a la derecha */
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        padding: 60px 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 20px 30px;
        font-size: 18px;
    }

    /* Botón Cerrar "X" */
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 35px;
        color: var(--text-dark);
        cursor: pointer;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    /* LOGICA CHECKBOX HACK */
    .menu-checkbox:checked ~ .nav-wrapper {
        right: 0; /* Entra el menú */
    }

    .menu-checkbox:checked ~ .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
	
	
    .btn-book {
        position: absolute;
        left: 50%;
        top: 8%;
    }
	
	.wmi{ width:100% }
}
 
 





/* --- LÓGICA DE SUBMENÚ --- */

.sm-p {
    position: relative;
}

.sm-ico {
    font-size: 12px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Estado oculto base */
 .sm {
    list-style: none;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}
.sm li { border: none !important;}
.sm a {
    padding: 10px 20px !important;
    display: block;
    font-size: 14px !important;
}

/* --- ESTILO DESKTOP --- */
@media (min-width: 993px) {
    .sm {
        position: absolute;
        top: 120%; /* Aparece un poco más abajo */
        left: 0;
        min-width: 200px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 100;
        transform: translateY(10px);
    }

    .sm-p:hover .sm {
        visibility: visible;
        opacity: 1;
        top: 100%;
        transform: translateY(0);
    }

    .sm a {
        padding: 10px 20px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    .sm a:hover {
        background-color: #f0faff;
    }
}




/* --- ESTILO MÓVIL SOFISTICADO --- */
@media (max-width: 992px) {
    .sm {
        visibility: visible;
        opacity: 1;
        max-height: 0; /* Efecto acordeón */
        overflow: hidden;
        background: #f1f5f9; /* Fondo sutil para diferenciarlo */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Al tocar/hacer focus se despliega */
    .sm-p:hover .sm,
    .sm-p:focus-within .sm {
        max-height: 300px; /* Altura suficiente para los items */
    }

    /* Rotación del ícono solicitado */
	.sm-ico {	float: right; }
	
	
    .sm-p:hover .sm-ico {		
        transform: rotate(180deg);
        color: #00b4db;
    }

    .sm li {
        border-bottom: none !important;
    }

    .sm a {
        padding: 15px 40px !important; /* Más indentación */
        font-size: 16px !important;
        color: #555 !important;
    }
}


 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* Contenedor del Catálogo */
.catalog-container {
    display: grid;
    /* Por defecto: 1 columna (Móvil) */
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 40px 20px;
}

/* Item del Catálogo */
.catalog-item {
    position: relative;
    border-radius: 4px; /* Un poco de redondez como en la imagen */
    overflow: hidden;
    height: 205px; /* Altura fija para que todos sean iguales */
    cursor: pointer;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Importante: Ajusta la imagen sin deformarla */
    transition: transform 0.5s ease;
}

/* Efecto Zoom al pasar el mouse */
.catalog-item:hover img {
    transform: scale(1.1);
}

/* Overlay con el Texto */
.catalog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7)); /* Sombra para que el texto resalte */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.catalog-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- RESPONSIVE --- */

/* Tablets (2 columnas) */
@media (min-width: 600px) {
    .catalog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PC (4 columnas) */
@media (min-width: 1024px) {
    .catalog-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

