/* =========================================
   CLEAN & REFACTORED CSS - LOS LIRIOS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #371459;
    --secondary-color: #765f9b;
    --accent-color: #9b8db5;
    --bg-light: #ececec;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --transition: all 0.3s ease;
}

/* --- Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; font-weight: 300; }
h1, h2, h3 { color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2.5rem; }

/* --- Header --- */
.main-header { background: var(--white); padding: 1rem 5%; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.brand-logo a { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo-icon { height: 60px; width: auto; }
.logo-text { height: 35px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: var(--transition); }
.nav-links a:hover { color: var(--secondary-color); }
.btn-reservation { background: var(--primary-color); color: var(--white) !important; padding: 0.7rem 1.5rem; border-radius: 4px; text-transform: uppercase; }
.mobile-menu-icon { display: none; font-size: 1.8rem; color: var(--primary-color); cursor: pointer; }


/* --- Hero Section Update --- */
.hero { 
    height: 100vh; 
    /* Updated to frente1.jpeg */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('../assets/images/frente1.jpeg') center/cover no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.hero-content { background: rgba(255, 255, 255, 0.85); padding: 3rem; border-radius: 12px; max-width: 800px; }
.hero h1 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 400; letter-spacing: 0.5em; margin-bottom: 0.5rem; }
.hero h1 span { display: block; font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 300; line-height: 1; letter-spacing: 2px; }
.hero p { font-size: 1.3rem; color: var(--primary-color); margin: 1.5rem 0 2.5rem; font-weight: 500; }
.btn-outline { background: var(--primary-color); color: var(--white); padding: 1rem 3rem; border-radius: 4px; text-decoration: none; font-weight: 600; text-transform: uppercase; transition: var(--transition); display: inline-block; }
.btn-outline:hover { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }

/* --- Content Sections --- */
.section-padding { padding: 100px 5%; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.bg-alt { background: var(--bg-light); }

/* Venue Overlap */
.overlap-container { position: relative; display: flex; align-items: center; max-width: 1200px; margin: 0 auto; }
.text-card { background: var(--white); padding: 3.5rem; z-index: 2; box-shadow: 15px 15px 40px rgba(0,0,0,0.05); margin-right: -80px; max-width: 500px; border-left: 5px solid var(--primary-color); }
.image-wrapper { flex: 1; z-index: 1; }
.image-wrapper img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
.accent-line { width: 40px; height: 3px; background: var(--accent-color); margin-bottom: 1rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.service-card { background: var(--white); padding: 2.5rem; border-radius: 8px; text-align: center; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1.5rem; }

/* Trust Cards */
.trust-container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-card { flex: 1; min-width: 250px; text-align: center; }
.trust-icon { width: 90px; height: 90px; border: 1px solid var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--primary-color); font-size: 2rem; }

/* --- Footer --- */
.main-footer { background: var(--primary-color); color: var(--white); padding: 4rem 5% 2rem; }
.footer-container { display: flex; justify-content: space-between; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-title { font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 600; color: var(--white); }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: var(--white); font-size: 1.5rem; transition: var(--transition); opacity: 0.8; }
.social-links a:hover { opacity: 1; transform: translateY(-3px); }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 3rem 0 1rem; }
.footer-bottom { text-align: center; font-size: 0.85rem; opacity: 0.6; }

/* --- Fixed WhatsApp Bubble --- */
.whatsapp-float { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    background: #25d366; 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    z-index: 9999; /* Higher priority so it's always on top */
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
/* =========================================
   RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }
    .nav-links { position: absolute; top: 100%; left: -100%; width: 100%; background: var(--white); flex-direction: column; padding: 2rem 0; transition: 0.4s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    .nav-links.active { left: 0; }
    .hero-content { padding: 2rem 1.5rem; width: 92%; }
    .hero h1 span { font-size: 2.5rem !important; white-space: nowrap !important; }
    
    .section-padding { min-height: auto; padding: 60px 5%; }
    .overlap-container { flex-direction: column; }
    .text-card { margin-right: 0; margin-bottom: -40px; width: 95%; padding: 2rem; }
    .image-wrapper { order: -1; }
    .image-wrapper img { height: 350px; }

    .footer-container { flex-direction: column; text-align: center; gap: 2rem; }
    .social-links { justify-content: center; }
    .main-footer { padding: 3rem 5% 1.5rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

