:root {
    --primary-color: #722F37; /* Elegant Burgundy / Wine */
    --secondary-color: #1A2B4C; /* Elegant Navy Blue */
    --bg-light: #F8F9FA; /* Off-white / light neutral */
    --bg-alt: #EAEAEA; /* Subtle warm grey for sections */
    --text-dark: #1F2937; /* Carbon / Dark slate */
    --text-light: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color); /* Headings in Navy Blue for elegance */
    margin-bottom: 15px;
    font-weight: 700;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-light { color: var(--text-light) !important; }

p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

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

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

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 30px auto;
}

.divider-left {
    margin: 0 0 30px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
}
.btn-primary:hover {
    background-color: #5c242c;
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light) !important;
}
.btn-secondary:hover {
    background-color: #111e36;
    box-shadow: 0 4px 12px rgba(26, 43, 76, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light) !important;
    border-color: var(--text-light);
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.15);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.25rem;
    margin-top: 20px;
}

.btn-huge {
    padding: 20px 45px;
    font-size: 1.4rem;
    display: block;
    margin: 20px auto;
    max-width: 350px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary-color);
    background-image: url('img/Captura%20de%20pantalla%202026-05-22%20121322.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.8) 0%, rgba(114, 47, 55, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 900px;
    padding: 30px;
}

.hero h1 {
    color: var(--text-light);
    font-size: 4.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Quick Services */
.quick-services {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: #FFFFFF;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Content Sections */
.seccion-texto {
    padding: 100px 0;
}

/* Celebraciones */
.celebraciones {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--secondary-color);
}

.celebraciones-img-container {
    flex: 1 1 50%;
    min-height: 400px;
}

.celebraciones-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.celebraciones-content {
    flex: 1 1 50%;
    padding: 100px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.celebraciones-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.lista-celebraciones {
    list-style: none;
    margin: 25px 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lista-celebraciones li {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    color: var(--bg-light);
}

.lista-celebraciones li::before {
    content: '■';
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Espacios / Galeria */
.espacios {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.galeria-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

/* Ubicacion */
.ubicacion {
    padding: 100px 0;
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ubicacion-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.ubicacion-buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 350px;
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Cierre */
.cierre {
    padding: 120px 0;
    background-color: var(--primary-color);
    color: white;
}

.cierre h2 {
    font-size: 3rem;
    color: white;
}

.cierre .divider {
    background-color: white;
}

.cierre-telefonos {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #111827;
    color: var(--bg-alt);
    padding: 70px 0 50px 0;
}

footer h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 2rem;
}

footer p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #D1D5DB;
}

.footer-link {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.footer-link:hover {
    color: var(--primary-color);
}

/* Sticky Mobile Nav */
.sticky-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-call {
    background-color: var(--primary-color);
    color: white !important;
}

.sticky-map {
    background-color: var(--secondary-color);
    color: white !important;
}

/* Responsive */
@media (max-width: 992px) {
    .celebraciones {
        flex-direction: column;
    }
    .celebraciones-img-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
    }

    .container {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 30px auto 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .celebraciones-content {
        padding: 60px 20px;
    }
    
    .celebraciones-content h2 {
        font-size: 2.2rem;
    }
    
    .lista-celebraciones {
        grid-template-columns: 1fr;
    }
    
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cierre h2 {
        font-size: 2.2rem;
    }
    
    .btn-huge {
        font-size: 1.25rem;
        padding: 18px 20px;
    }
    
    .sticky-mobile-nav {
        display: flex;
    }
}
