body::-webkit-scrollbar {
    display: none;
}

/* Estilos generales */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: rgb(250, 244, 234);
}

/* Header con imagen de fondo */
.header {
    position: relative;
    background: url('../img/fondoheader2.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Caja blanca con esquinas curvas */
.header-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 40px 0 40px 0;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título principal */
.header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8a6f56;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

/* Nombres de los novios */
.nombres {
    font-size: 4rem;
    font-weight: bold;
    color: #6d5c4f;
    margin-bottom: 30px;
    font-family: "Dancing Script", serif;
}

/* Contador */
.countdown h2 {
    font-size: 40px;
    color: #7a6652;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
}

#contador {
    font-size: 22px;
    font-weight: bold;
    background: #d8c3a5;
    color: #4d3d33;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

/* Fecha del evento */
#fecha-evento {
    font-size: 35px;
    font-style: italic;
    color: #9d8875;
}

/* Responsivo */
@media (max-width: 600px) {
    .header {
        height: auto;
        padding: 40px 20px;
    }

    .header-overlay {
        padding: 20px;
        border-radius: 30px 0 30px 0;
    }

    .header-content h1 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .nombres {
        font-size: 35px;
        margin-bottom: -10px;
    }

    .countdown h2 {
        font-size: 30px;
    }

    #fecha-evento{
        font-size: 25px;
    }

    #contador {
        font-size: 18px;
        padding: 8px;
    }
}
