/* Estilos Generales */
body {
    background-color: #f0f2f5;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.card {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 0 0 40px 0; /* Quitamos padding superior para la imagen floral */
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    /*overflow: hidden; / * Para que la imagen del header no se salga */
}

/* Nuevo Encabezado Floral */
.floral-header {
    background-image: url('/images/floral-header.jpg'); /* Imagen de flores */
    background-size: cover;
    background-position: center top;
    padding: 60px 20px 40px; /* Espacio para el texto */
    color: #333;
}

.top-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #555;
}

h1 {
    font-family: 'Great Vibes', cursive; /* Fuente estilo manuscrito */
    font-size: 4rem;
    margin: 0;
    font-weight: normal;
    color: #333;
    line-height: 1.2;
}

/* Subtítulo Principal */
.main-subtitle {
    font-size: 1.1rem;
    margin: 30px 0 20px;
    color: #666;
}

/* Contenedor de la Imagen de la Pareja */
.image-container {
    margin: 0 20px 30px;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Fecha y Contador (Ajustes menores) */
.date-highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #333;
}

.countdown-container {
    margin: 20px 0 40px;
}

/* ... (Estilos del contador .text-faltan, .decor-line, .countdown, etc. permanecen igual) ... */
.text-faltan { font-family: 'Cinzel', serif; font-size: 1.2rem; color: #555; margin-bottom: 5px; }
.decor-line { font-size: 1.5rem; color: #888; margin: 5px 0; }
.countdown { display: flex; justify-content: center; align-items: center; gap: 10px; font-family: 'Cinzel', serif; color: #333; }
.time-box { display: flex; flex-direction: column; align-items: center; }
.time-box span:first-child { font-size: 2.5rem; font-weight: 700; }
.label { font-size: 0.6rem; letter-spacing: 1px; color: #888; margin-top: -5px; }
.separator { font-size: 2rem; padding-bottom: 15px; color: #aaa; }


/* Nueva Sección de Detalles de la Ceremonia */
.ceremony-details {
    margin: 40px 0;
    color: #555;
}

.rings-icon {
    width: 50px;
    margin-bottom: 15px;
}

.ceremony-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.ceremony-details p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Estilos de los Formularios (Ajustes de espaciado) */
.interact {
    padding: 0 30px;
}
/* ... (El resto de estilos de formulario, inputs, botones, etc. permanecen igual) ... */
form { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; text-align: left; }
input, select, textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Montserrat', sans-serif; }
textarea { resize: vertical; height: 80px; }
label { font-weight: 600; margin-bottom: -5px; color: #555; }
button { background-color: #333; color: white; padding: 12px; border: none; border-radius: 5px; cursor: pointer; transition: 0.3s; font-family: 'Montserrat', sans-serif; font-weight: 600; }
button:hover { background-color: #555; }
.btn-music { background-color: #6c757d; }
hr { border: 0; height: 1px; background: #eee; margin: 30px 0; }
h3 { font-family: 'Cinzel', serif; margin-bottom: 20px; color: #333; }



/********************************************************************************\
* Para el reprodyctor de musica                                                  *
\********************************************************************************/
 
.music-player-container {
    text-align: center;
    margin-top: -30px; /* Para subirlo un poco hacia las flores */
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.music-text {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    font-style: italic;
}

.custom-audio {
    height: 30px;
    width: 80%;
    max-width: 300px;
    border-radius: 20px;
}


/* Actualiza esto en tu CSS */

.countdown-container {
    padding: 20px;
    background-color: #fafafa; /* Un fondo muy sutil */
    border-radius: 8px;
    margin: 30px auto;
}

/* Las líneas decorativas estilo "Bigote" o curvas */
.decor-line {
    font-size: 2rem;
    color: #888;
    margin: -10px 0;
    font-family: 'Great Vibes', cursive; /* Usamos la fuente cursiva para el adorno */
}

/* Números más grandes y oscuros como en la foto */
.time-box span:first-child {
    font-size: 3rem; /* Más grande */
    font-weight: 700;
    color: #222;
    line-height: 1;
}

/* Etiquetas (DÍAS, HORAS...) más pequeñas */
.label {
    font-size: 0.5rem;
    font-weight: bold;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* El separador (:) más sutil */
.separator {
    font-size: 2rem;
    color: #ccc;
    margin-top: -15px;
}