:root {
    --gold: #c5a059;
    --dark: rgba(0,74,99,.9);
    --light: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body { line-height: 1.6; color: var(--dark); }



/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--dark);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links li a:hover { color: var(--gold); }

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('inicio.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }

/* Cards & Sections */
.section { padding: 4rem 10%; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; position: relative; }
.section-title::after {
    content: ''; width: 50px; height: 3px; background: var(--gold);
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-info { padding: 1.5rem; }

.btn-reserve {
    background: var(--gold);
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplificación para móvil */
    .hero h1 { font-size: 2rem; }
}

/* Dining Section */
.bg-dark { background-color: rgba(0,74,99,.9); color: var(--white); }
.gold-text { color: var(--white) !important; }

.dining-container { display: flex; flex-direction: column; gap: 40px; margin-top: 30px; }
.dining-item { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.dining-item.reverse { flex-direction: row-reverse; }
.dining-text { flex: 1; padding: 20px; }
.dining-item img { flex: 1; width: 50%; height: 350px; object-fit: cover; border-radius: 4px; }

/* Weddings Section */
.weddings-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1350');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
    color: white;
}
.weddings-content { max-width: 700px; margin: 0 auto; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
}
.btn-outline:hover { background: var(--gold); color: white; }

/* Galería Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: 0.5s;
    cursor: pointer;
}
.gallery-item img:hover { filter: grayscale(0%); transform: scale(1.03); }

/* Ajustes Responsive */
@media (max-width: 768px) {
    .dining-item, .dining-item.reverse { flex-direction: column; }
    .dining-item img { width: 100%; }
}
/* Footer Styles */
.main-footer {
    background-color: var(--dark); /* Mismo color que el Navbar */
    color: var(--white);
    padding: 60px 10% 20px;
    border-top: 2px solid var(--gold); /* Línea decorativa dorada */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    color: white;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Redes Sociales */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

/* Línea final */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: white;
}

/* Ajuste para iconos (FontAwesome) */
.footer-col i {
    margin-right: 10px;
    color: var(--gold);
}

/* Promo Section Styles */
.promo-header {
    text-align: center;
    margin-bottom: 50px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card.highlight {
    border: 2px solid var(--gold);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 20px;
    z-index: 10;
}

.promo-badge.gold {
    background: var(--gold);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 1.2rem;
}

.promo-perks {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.promo-perks li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
}

.promo-perks i {
    color: var(--gold);
    margin-right: 8px;
}

/* Responsividad para Promociones */
@media (max-width: 600px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* Contenedor para alinear links y botón de llamada */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Estilo del botón de llamada */
.call-action {
    display: flex;
    align-items: center;
    gap: 10px;
    /*background-color: var(--gold);*/
    color: var(--white) !important;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    /*border: 1px solid var(--gold);*/
}
.call-action img {
    width: 30px;
    height: 30px
}
.call-action i {
    font-size: 1rem;
    /* Animación sutil para llamar la atención */
    animation: pulse-phone 2s infinite;
}

.call-action:hover {
    background-color: transparent;
    color: var(--gold) !important;
}

/* Ocultar el texto en móviles para ahorrar espacio */
@media (max-width: 900px) {
    .call-text {
        display: none;
    }
    .call-action {
        padding: 10px;
        border-radius: 50%; /* Se vuelve circular en móvil */
    }
}

/* Animación del icono */
@keyframes pulse-phone {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Estilos para el Logo con Imagen Blanca y Transparente */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.logo-img {
    height: 60px; /* Ajusta esta altura para que el logo se vea bien en tu header */
    width: auto; /* Mantiene la proporción de la imagen */
    display: block;
}

.logo-link:hover {
    transform: scale(1.02); /* Efecto sutil al pasar el mouse */
}

/* Ajuste responsive para móviles */
@media (max-width: 768px) {
    .logo-img {
        height: 50px; /* Un poco más pequeño en móviles */
    }
}

/* --- Nuevos Estilos para la Imagen del Footer --- */

.footer-image-wrap {
    width: 100%;
    margin-top: 40px; /* Espacio después de las columnas de texto */
    margin-bottom: 20px; /* Espacio antes de la línea de copyright */
    overflow: hidden; /* Asegura que nada sobresalga */
    display: flex;
    justify-content: center;
}

.footer-graphic {
    width: 100%;
    max-width: 1200px; /* Limita el ancho en pantallas muy grandes */
    height: 250px; /* Altura fija para escritorio */
    object-fit: cover; /* Recorta la imagen para llenar el espacio sin deformarse */
    object-position: center; /* Centra el recorte */
    
    /* Estética de lujo: Borde dorado sutil y opacidad baja */
    border-top: 1px solid rgba(197, 160, 89, 0.3); /* Oro sutil */
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    opacity: 0.6; /* Hace la imagen más sutil sobre el fondo oscuro */
    filter: grayscale(20%); /* Un ligero toque artístico */
    transition: opacity 0.3s ease;
}

.footer-graphic:hover {
    opacity: 0.9; /* Resalta ligeramente al pasar el mouse */
    filter: grayscale(0%);
}

/* --- Responsividad para Móviles (Media Query) --- */

@media (max-width: 768px) {
    .footer-image-wrap {
        margin-top: 20px;
        padding: 0 5%; /* Añade un pequeño margen lateral en móvil */
    }

    .footer-graphic {
        height: 150px; /* Reduce la altura en pantallas pequeñas para no ocupar mucho espacio vertical */
        border-radius: 4px; /* Opcional: añade bordes redondeados en móvil */
    }
}

/* Split Tour Section */
.split-tour {
    background-color: var(--dark);
    color: var(--white);
    padding: 100px 5%;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lado del Texto */
.tour-info-side {
    flex: 1;
}

.left-align {
    text-align: left;
    margin-bottom: 20px;
}

.left-align::after {
    left: 0;
    transform: none; /* Mueve la línea dorada a la izquierda */
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.tour-features {
    list-style: none;
    margin-top: 30px;
}

.tour-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.tour-features i {
    color: var(--gold);
}

/* Lado Visual */
.tour-visual-side {
    flex: 1.2; /* El tour es un poco más ancho que el texto */
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
}

.tour-overlay {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=800');
    background-size: cover;
    z-index: 5;
}

/* Ajuste para Móvil */
@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        text-align: center;
    }

    .left-align {
        text-align: center;
    }

    .left-align::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .tour-features li {
        justify-content: center;
    }

    .iframe-wrapper {
        height: 300px;
    }
}

/* Contenedor de imagen con precio */
.card-img-container {
    position: relative;
    overflow: hidden;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 3px;
}

/* Descripción de la Suite */
.suite-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Detalles de capacidad/tamaño */
.suite-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
    color: var(--dark);
    font-weight: 600;
}

.suite-details i {
    color: var(--gold);
    margin-right: 5px;
}

/* Fila de Iconos de Amenidades */
.suite-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
    font-size: 1.1rem;
}

.suite-amenities i:hover {
    color: var(--gold);
    transform: translateY(-3px);
    transition: 0.3s;
    cursor: pointer;
}

/* Ajuste del botón para incluir el icono de WhatsApp */
.btn-reserve i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Badge de Disponibilidad sobre la imagen */
.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(40, 167, 69, 0.9); /* Verde éxito */
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

/* Fila de especificaciones (Personas, Camas, Tamaño) */
.suite-specs {
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 15px 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.spec-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.spec-item span {
    font-size: 0.7rem;
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Separador entre items (opcional) */
.spec-item:not(:last-child) {
    border-right: 1px solid #ddd;
}
