/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4ECCA5;
    --secondary-color: #FF6B6B;
    --dark-color: #232931;
    --light-color: #EEEEEE;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: white;
    min-height: 100vh;
    position: relative;
    background-image: url('imagen/bc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

/* Solución para fondo fijo en móviles */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-position: center center;
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: -1;
}

/* Encabezado */
header {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Contenido principal */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: var(--text-shadow);
    font-weight: 400;
}

.hero-content h3 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: var(--text-shadow);
    line-height: 1.2;
    font-weight: 700;
}

.celebration-question h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-shadow: var(--text-shadow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Opciones de celebración */
.celebration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Nuevo estilo para las opciones como en la imagen */
.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Colores específicos para cada categoría */
.matrimonio {
    background-color: #FF6B6B;
}

.cumpleanos {
    background-color: #4ECDC4;
}

.bautismo {
    background-color: #7BB2D9;
}

.egreso {
    background-color: #845EC2;
}

.empresarial {
    background-color: #F4A261;
}

.personalizada {
    background-color: #64B6AC;
}

/* Efecto hover como en la imagen proporcionada */
.option:hover .icon-container {
    border: 3px solid white;
}

.option p {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    text-shadow: var(--text-shadow);
    position: relative;
    padding-bottom: 5px;
}

/* Efecto de subrayado como en la imagen */
.option p:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option:hover p:after {
    transform: scaleX(1);
}

/* Pie de página */
footer {
    display: none; /* Ocultar completamente el pie de página */
}

/* Sin efectos de aparición */

/* Diseño responsivo */
@media (max-width: 992px) {
    .logo h1 {
        font-size: 3rem;
    }

    .hero-content h3 {
        font-size: 2.5rem;
    }

    .celebration-question h4 {
        font-size: 2rem;
    }

    .celebration-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content h3 {
        font-size: 2rem;
    }

    .celebration-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .icon-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }

    main {
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .hero-content h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .celebration-question h4 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .celebration-options {
        gap: 1rem;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-image {
        width: 35px;
        height: 35px;
    }

    .option p {
        font-size: 1rem;
    }
}