/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    background: #f5f1eb;
    color: #333;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 30px;
}

.pretitle {
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(45px, 12vw, 90px);
    font-weight: normal;
}

.date {
    margin-top: 25px;
    font-size: 18px;
    letter-spacing: 4px;
}
*/

/* =========================
   CONFIGURACIÓN GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f7f3ee;
    color: #3d3935;
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
}

button,
a {
    font-family: inherit;
}


/* =========================
   PORTADA
========================= */

.hero {
    position: relative;
    height: 100svh;
    min-height: 650px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.28);
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 30px;
}

.pretitle {
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(48px, 13vw, 90px);
    font-weight: normal;
    line-height: 1.1;
}

.date {
    margin-top: 25px;
    font-size: 18px;
    letter-spacing: 3px;
}

.place {
    margin-top: 8px;
    font-size: 16px;
}


/* =========================
   SECCIONES
========================= */

.section {
    max-width: 700px;
    margin: 0 auto;
    padding: 90px 28px;

    text-align: center;
}

.eyebrow {
    margin-bottom: 18px;

    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #8b8178;
}

.section h2 {
    margin-bottom: 30px;

    font-size: clamp(28px, 7vw, 42px);
    font-weight: normal;
    line-height: 1.25;
}

.section p {
    margin-bottom: 18px;
    font-size: 17px;
}


/* =========================
   SALUDO PERSONALIZADO
========================= */

.guest-greeting {
    font-size: 22px !important;
    font-style: italic;
    margin-bottom: 45px !important;
}


/* =========================
   BIENVENIDA
========================= */

.welcome {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* =========================
   CEREMONIA
========================= */

.event {
    background: #eee8e0;
    max-width: none;
}

.event-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 35px 25px;

    border: 1px solid #d4ccc2;
}

.event-card p {
    margin-bottom: 8px;
}

.event-place {
    font-size: 22px !important;
}


/* =========================
   FOTOGRAFÍA
========================= */

.photo-section {
    width: 100%;
    height: 65vh;
    min-height: 450px;
    overflow: hidden;
}

.photo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   BOTONES
========================= */

.button {
    display: inline-block;

    margin-top: 20px;
    padding: 13px 30px;

    border: 1px solid #777067;

    background: transparent;
    color: #3d3935;

    text-decoration: none;

    font-size: 14px;
    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s ease;
}

.button:hover {
    background: #3d3935;
    color: white;
}


/* =========================
   UBICACIÓN
========================= */

.location {
    background: #f7f3ee;
}


/* =========================
   AUTOBÚS
========================= */

.bus {
    background: #eee8e0;
}


/* =========================
   DESPEDIDA
========================= */

.goodbye {
    padding-top: 110px;
    padding-bottom: 110px;
}

.goodbye h2 {
    font-size: clamp(38px, 10vw, 60px);
}


/* =========================
   REGALO
========================= */

.gift {
    background: #e8e1d8;
}

.gift-card {
    max-width: 480px;
    margin: 40px auto 0;

    padding: 35px 25px;

    background: #f7f3ee;
}

.couple-name {
    font-size: 24px !important;
}

.iban-label {
    margin-top: 25px;
    margin-bottom: 5px !important;

    font-size: 11px !important;
    letter-spacing: 3px;
}

#iban {
    font-family: Arial, sans-serif;
    font-size: 15px;
    word-break: break-all;
}


/* =========================
   TABLET / ORDENADOR
========================= */

@media (min-width: 768px) {

    .section {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .photo-section {
        height: 750px;
    }

}


#rsvp-form {
    text-align: center;
}

.form-group {
    margin-bottom: 45px;
}

.form-group > label:first-child {
    display: block;
    margin-bottom: 15px;
}

#rsvp-form select,
#rsvp-form input,
#rsvp-form textarea {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
