/* ==== COLORES PERSONALIZABLES ==== */
:root {
    --fondo-principal: #000000;
    --fondo-secundario: #181818;
    --rosa-oscuro: #000000;
    --texto-principal: #C9A58E;
    --sombra: rgba(0, 0, 0, 0.2);
    --fuente: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fuente);
}

body {
    background-color: var(--fondo-principal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 480px;
    width: 100%;
    background-color: var(--fondo-secundario);
    padding: 1rem;
    border-radius: 8px;
    background: var(--fondo-secundario) url('img/bg_sides.png') repeat-y center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* ==== ENCABEZADO ==== */
.header {
    text-align: center;
}

.header h5 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--texto-principal);
}

.header h1 {
    font-size: 4rem;
    color: var(--texto-principal);
}

.header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--texto-principal);
    font-family: 'Cursive', sans-serif;
}

/* ==== CONTADOR ==== */
.countdown {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    color: var(--texto-principal);
    font-weight: bold;
}

.countdown span {
    text-align: center;
    font-size: 1rem;
}

.countdown span span {
    font-size: 2rem;
    display: block;
}

/* ==== BOTONES ==== */
.btn {
    background-color: var(--rosa-oscuro);
    color: white;
    padding: 0.8rem 1.2rem;
    margin: 0.5rem auto;
    border-radius: 30px;
    text-align: center;
    display: block;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px var(--sombra);
}

.buttons p {
    text-align: center;
    margin: 0.5rem 0;
    color: var(--texto-principal);
}

/* ==== ITINERARIO ==== */
.itinerario {
    margin: 2rem 0;
    text-align: center;
}

.itinerario h3 {
    margin-bottom: 1rem;
    color: var(--texto-principal);
}

.itinerario ul {
    list-style: none;
    padding: 0;
}

.itinerario li {
    padding: 0.3rem 0;
    font-size: 1rem;
}

/* ==== SECCIONES ADICIONALES ==== */
.extras, .vestimenta, .regalo, .qr {
    text-align: center;
    margin: 1.5rem 0;
}

.dress-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==== QR ==== */
.qr-img {
    width: 150px;
    height: 150px;
    margin: 1rem auto;
    display: block;
}
