/* Variables de color y tipografía */
:root {
    --color-primary: #8B0000; /* Rojo profundo */
    --color-accent: #FFD700; /* Dorado */
    --color-bg: #1C2526; /* Negro profundo para fondo */
    --color-text: #F5F5F5; /* Blanco suave */
    --color-whatsapp: #25D366; /* Verde WhatsApp */
    --color-light: #FFFFFF; /* Blanco puro */
    --font-title: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
}

/* Encabezado */
.main-header {
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-title);
    color: var(--color-accent) !important;
    font-size: 1.75rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.nav-link {
    color: var(--color-text) !important;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent) !important;
    transform: translateY(-2px);
}

/* Sección Hero con Carrusel */
.hero-section {
    position: relative;
    height: 80vh;
}

.carousel-inner {
    height: 100%;
}

.hero-slide {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Sección Menú */
.menu-section {
    background-color: var(--color-bg);
    padding: 5rem 0;
}

.menu-section h2,
.packages-section h2,
.contact-section h2 {
    font-family: var(--font-title);
    color: var(--color-accent);
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3.5rem;
}

.menu-section h2::after,
.packages-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background-color: var(--color-primary);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-title {
    font-family: var(--font-title);
    color: var(--color-accent);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    color: var(--color-text);
}

/* Sección Paquetes */
.packages-section {
    background-color: var(--color-bg);
    padding: 5rem 0;
}

.packages-section .card.featured {
    background-color: #A52A2A; /* Rojo ligeramente más claro para destacar */
    border: 2px solid var(--color-accent);
}

.packages-section .card.featured .card-title,
.packages-section .card.featured .card-text {
    color: var(--color-light);
}

.packages-section .card.featured .price {
    color: var(--color-accent);
}

.price {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Botones */
.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1EBD56;
    border-color: #1EBD56;
    transform: translateY(-2px);
}

/* Sección Contacto */
.contact-section {
    background-color: var(--color-primary);
    padding: 5rem 0;
}

.contact-section a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--color-light);
}

/* Pie de página */
.main-footer {
    background-color: var(--color-primary);
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Botón flotante de WhatsApp */
.whatsapp-float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-whatsapp);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: #1EBD56;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.75rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
    }

    .menu-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .whatsapp-float-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-slide {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .menu-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .whatsapp-float-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-slide {
        height: 50vh;
    }
}

/* Animación de fund