/*
 * Diseño de Invitación de Baby Shower - Estilo "Cielo y Estrellas"
 * Adaptado y corregido por Gemini
 * V3.0 - Paleta de colores mejorada y contraste optimizado
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Raleway:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

/* Variables de color - Paleta del Cielo Nocturno y Estrellas */
:root {
    --primary-color: #4A698D;        /* Azul oscuro, como el cielo */
    --secondary-color: #F0F4F8;      /* Gris perla, para fondos claros */
    --text-dark: #2C3E50;            /* Azul marino, muy oscuro para el texto principal */
    --text-light: #fefefe;           /* Blanco roto */
    --accent-color: #D2A4B8;         /* Rosa polvoriento, un toque de color cálido */
}

/* --- Estilos Base --- */
html, body {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 0;
}

/* --- Botón para la Música (CORREGIDO) --- */
.music-toggle-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(210, 164, 184, 0.7));
}

.music-toggle-button:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.1) rotate(360deg);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

/* --- Sección Hero (Principal) --- */
.hero {
    background-image: url('images/hero-baby.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65); /* Overlay más oscuro para mejor contraste */
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    width: 100%;
    padding: 0 10px;
}

.hero h1 {
    font-family: 'Poiret One', sans-serif;
    font-size: 7em;
    margin-bottom: 10px;
    color: var(--text-light);
    letter-spacing: 5px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    font-weight: 700;
}

.hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 300;
    word-wrap: break-word;
}

.date-location p {
    font-size: 1.4em;
    margin: 8px 0;
    font-weight: 400;
    word-wrap: break-word;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 3em;
    font-weight: 700;
    color: var(--text-light);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    text-shadow: none;
}

.countdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.countdown-item span:last-child {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    margin-top: 5px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ESTILO PARA EL MENSAJE "¡ES EL GRAN DÍA!" --- */
#weddingDayMessage {
    font-family: 'Poiret One', sans-serif;
    font-size: 5em;
    color: var(--text-light);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    margin-top: 50px;
    word-wrap: break-word;
    text-align: center;
    letter-spacing: 2px;
}

/* --- Secciones Generales --- */
section {
    padding: 100px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

section h2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 4em;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    font-weight: 700;
    letter-spacing: 1px;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 1px;
}

.section-intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    word-wrap: break-word;
    font-weight: 300;
    color: var(--text-dark);
}

/* --- Sección de la Historia --- */
.story {
    background-color: #fff;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
    margin-top: 50px;
}

.story-text {
    flex: 1;
    max-width: 700px;
    padding: 0 15px;
    word-wrap: break-word;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-image {
    flex: 1;
    order: -1;
    width: 90%;
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    display: block;
}

.story-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* --- Sección de Detalles --- */
.details {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-bottom: 100px;
}

.details h2 {
    color: var(--text-light);
}

.details h2::after {
    background-color: var(--secondary-color);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
    text-align: center;
    padding: 0 15px;
}

.detail-item {
    background-color: var(--secondary-color); /* Fondo claro para mejor contraste */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--accent-color);
    backdrop-filter: blur(5px);
    color: var(--text-dark); /* Color de texto oscuro para el contraste */
}

.detail-item:hover {
    transform: translateY(-10px);
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.detail-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    word-wrap: break-word;
    font-weight: 400;
}

.detail-item p {
    font-size: 1.15em;
    margin-bottom: 10px;
    word-wrap: break-word;
    font-weight: 300;
}

.detail-item i {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.detail-item:hover i {
    color: var(--primary-color);
}

.button-small {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 1em;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-small:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
    color: var(--text-light);
}

/* --- Sección de Galería --- */
.gallery {
    background-color: var(--secondary-color);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 15px;
}

.image-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
    border: 1px solid var(--primary-color);
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-grid a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 105, 141, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-grid a:hover::after {
    opacity: 1;
}

.image-grid a:hover img {
    transform: scale(1.1);
}

/* --- Sección de Subir Fotos --- */
.upload-photos {
    background-color: #fff;
}

.upload-form-container {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 750px;
    margin: 50px auto 80px auto;
    text-align: left;
    width: calc(100% - 30px);
    color: var(--text-light);
}

.upload-form-container label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.2em;
    font-family: 'Raleway', sans-serif;
}

.upload-form-container input[type="file"] {
    width: 100%;
    padding: 15px 12px;
    margin-bottom: 25px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 1.1em;
    cursor: pointer;
    box-sizing: border-box;
}

.upload-form-container input[type="file"]::-webkit-file-upload-button {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.upload-form-container input[type="file"]::-webkit-file-upload-button:hover {
    background-color: var(--secondary-color);
}

.upload-form-container .button-link {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* --- Carrusel de Fotos (Swiper.js) --- */
.uploaded-photos-carousel {
    margin-top: 80px;
    background-color: var(--secondary-color);
    padding: 50px 0;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
}

.uploaded-photos-carousel .carousel-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.swiper {
    width: 95%;
    max-width: 1000px;
    height: 450px;
    margin: 0 auto;
    border-radius: 10px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-dark);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    border-radius: 10px;
}

/* Navegación de Swiper (Flechas) */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--accent-color) !important;
    transform: scale(1.1) translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 26px !important;
    font-weight: bold;
}

/* Paginación de Swiper (Puntos) */
.swiper-pagination-bullet {
    background: var(--primary-color) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1 !important;
    transform: scale(1.3);
}

.no-photos-message {
    color: var(--text-dark);
    margin-top: 30px;
    font-style: italic;
    font-size: 1.2em;
}

/* Skeleton Loader */
.skeleton-slide {
    background: linear-gradient(90deg, #e0e0e0 25%, #d3d3d3 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 10px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Sección de Regalos --- */
.gifts {
    background-color: #fff;
    padding-bottom: 100px;
}

.gift-options {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.gift-item {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.gift-item h3 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    word-wrap: break-word;
    font-weight: 400;
}

.gift-item p {
    font-size: 1.2em;
    margin-bottom: 20px;
    word-wrap: break-word;
}

/* --- Sección de Preguntas Frecuentes --- */
.faq {
    background-color: var(--secondary-color);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
    padding: 0 15px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--text-dark);
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.faq-item summary {
    font-weight: 500;
    font-size: 1.3em;
    padding: 25px;
    cursor: pointer;
    outline: none;
    color: var(--text-dark);
    position: relative;
    user-select: none;
    word-wrap: break-word;
}

.faq-item summary::after {
    content: '→';
    font-family: 'Raleway', sans-serif;
    position: absolute;
    right: 25px;
    font-size: 1.5em;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '↓';
    transform: none;
}

.faq-item p {
    padding: 0 25px 25px;
    margin: 0;
    font-size: 1.1em;
    color: var(--text-dark);
    word-wrap: break-word;
}

/* --- Sección de Confirmación (RSVP) --- */
.rsvp {
    background-color: #fff;
    padding-bottom: 100px;
}

.rsvp > p {
    font-size: 1.2em;
    margin-bottom: 40px;
    padding: 0 15px;
    word-wrap: break-word;
    color: var(--text-dark);
}

.rsvp-call-to-action {
    margin-top: 50px;
    padding: 40px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: calc(100% - 30px);
}

.rsvp-call-to-action p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: var(--primary-color);
    font-family: 'Poiret One', sans-serif;
    word-wrap: break-word;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 15px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1em;
    color: var(--text-dark);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(74, 105, 141, 0.5);
}

.button-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    text-align: center;
    margin-top: 20px;
}

.button-link:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.button-link.small {
    padding: 12px 25px;
    font-size: 1.1em;
}

.form-message {
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark);
}

/* --- ESTILO PARA EL MENSAJE DE RSVP CERRADO --- */
#rsvpClosedMessage {
    font-family: 'Poiret One', sans-serif;
    font-size: 1.7em;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Pie de Página --- */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 30px;
    font-size: 1.1em;
    letter-spacing: 1px;
    width: 100%;
}

/* --- Estilos del Cargador de Página --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    border: 7px solid var(--primary-color);
    border-top: 7px solid var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 25px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-loader p {
    font-family: 'Poiret One', sans-serif;
    font-size: 1.2em;
    color: var(--text-dark);
}

body.loading-active {
    overflow: hidden;
}

/* --- Ajustes Responsivos para PC (Pantallas grandes) --- */
@media (min-width: 769px) {
    .container {
        width: 85%;
        max-width: 1300px;
    }

    .hero h1 { font-size: 8em; }
    .hero p { font-size: 1.8em; }
    .date-location p { font-size: 1.5em; }
    .countdown-item { font-size: 3.5em; padding: 25px 45px; }
    section h2 { font-size: 5.5em; }
    .section-intro-text { font-size: 1.3em; }
    .story-text p { font-size: 1.2em; }
    .detail-item h3 { font-size: 2.8em; }
    .detail-item p { font-size: 1.25em; }
    .button-link { font-size: 1.4em; padding: 20px 40px; }
    .details-grid { grid-template-columns: repeat(3, 1fr); gap: 60px; padding: 0; }
    .image-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 35px; padding: 0; }
    .image-grid a { height: 350px; }
    .gift-options { flex-direction: row; padding: 0; }
    .gift-item { flex: 1; }
    .faq-list { max-width: 900px; padding: 0; }

    /* Ajustes específicos para PC en la sección de la historia */
    .story-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .story-text {
        padding-right: 50px;
        max-width: 50%;
        padding-left: 0;
    }

    .story-image {
        order: unset;
        max-width: 45%;
        margin: 0;
    }

    .story-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 600px;
    }

    /* Ajustes específicos para PC en el carrusel de fotos */
    .swiper {
        height: 550px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 55px;
        height: 55px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 30px !important;
    }
    
    .upload-form-container, .rsvp-call-to-action {
        width: 100%;
        padding: 40px;
    }
}

/* --- Ajustes Responsivos (Pantallas pequeñas) --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 4.5em; }
    .hero p { font-size: 1.2em; }
    .countdown { flex-wrap: wrap; gap: 20px; }
    .countdown-item { font-size: 2em; padding: 15px 25px; }
    section h2 { font-size: 3.2em; }
    .image-grid a { height: 250px; }
    .image-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .rsvp-call-to-action { padding: 20px; }
    .button-link { font-size: 1.1em; padding: 15px 30px; }
    .gift-options { flex-direction: column; }
    .gift-item { text-align: center; }
    .faq-list { width: 95%; }

    /* Ajustes específicos para móviles en el carrusel de fotos */
    .swiper {
        height: 350px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px !important;
    }
    
    .upload-form-container input[type="file"]::-webkit-file-upload-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    .music-toggle-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
    #weddingDayMessage {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 3.5em; }
    .hero p { font-size: 1em; }
    .countdown-item {
        font-size: 1.5em;
        padding: 8px 12px;
        min-width: 30px;
    }
    .countdown-item span:first-child {
        display: block;
        font-size: 1.8em;
    }
    .countdown-item span:last-child {
        display: block;
        font-size: 0.7em;
    }
    section h2 { font-size: 2.5em; }
    #weddingDayMessage {
        font-size: 2.5em;
    }
}