
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Georgia, serif;

    background:
    radial-gradient(
        circle at top,
        #fffdf7,
        #F8F1D6 60%,
        #f6ecd0
    );

    color:#4D0011;

    overflow-x:hidden;
}

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;
    z-index:2;

    background:linear-gradient(
        rgba(248,241,214,.92),
        rgba(248,241,214,.92)
    );

    padding:40px 20px;
}

.overlay{
    max-width:700px;
}

.subtitulo{
    letter-spacing:4px;
    color:#7B1830;
    margin-bottom:20px;
}

.monograma{
    width:120px;
    height:120px;
    border:2px solid #DBBE9B;
    border-radius:50%;
    margin:0 auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    color:#DBBE9B;
    
    box-shadow:
    0 0 30px rgba(219,190,155,.15);
}

.decoracion{
    margin:20px 0;
    color:#DBBE9B;
    font-size:1.3rem;
    letter-spacing:5px;
}

.hero h1{
    font-size:4.3rem;
    color:#7B1830;
    font-weight:300;
}

.ampersand{
    font-size:4rem;
    color:#DBBE9B;
    margin:10px 0;
}

.fecha{
    margin-top:15px;
    font-size:1.4rem;
    letter-spacing:4px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#7B1830;
    color:white;
    text-decoration:none;
    border:none;
    border-radius:8px;
    padding:16px 40px;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;

    letter-spacing:2px;
    font-weight:600;
    box-shadow:
    0 10px 25px rgba(77,0,17,.20);
}

.btn:hover{
    background:#4D0011;
}

.contador{
    padding:100px 20px;
    text-align:center;
    background:white;
}

.contador h2{
    margin-bottom:40px;
    color:#7B1830;
}

#countdown{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

#countdown div{
    min-width:120px;
}

#countdown span{
    font-size:4rem;
    color:#7B1830;
    display:block;
}

#countdown small{
    letter-spacing:2px;
}

.evento{
    padding:100px 20px;
    text-align:center;
}

.evento h2{
    margin-bottom:50px;
    color:#7B1830;
}

.card{
    max-width:600px;
    margin:25px auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card h3{
    color:#7B1830;
    margin-bottom:15px;
}

.card p{
    margin:8px 0;
}

.confirmacion{
    background:#4D0011;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.confirmacion h2{
    margin-bottom:25px;
}

.confirmacion .btn{
    background:#DBBE9B;
    color:#4D0011;
    font-weight:bold;
}

@media(max-width:768px){

.hero h1{
    font-size:3.5rem;
}

.ampersand{
    font-size:3rem;
}

#countdown span{
    font-size:2.5rem;
}

#countdown{
    gap:20px;
}

}

.fade1,
.fade2,
.fade3,
.fade4,
.fade5,
.fade6,
.fade7,
.fade8{
    opacity:0;
    transform:translateY(15px);
    animation:appear .8s ease forwards;
}

.fade1{animation-delay:.2s;}
.fade2{animation-delay:.6s;}
.fade3{animation-delay:1s;}
.fade4{animation-delay:1.3s;}
.fade5{animation-delay:1.6s;}
.fade6{animation-delay:1.9s;}
.fade7{animation-delay:2.2s;}
.fade8{animation-delay:2.5s;}

@keyframes appear{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.marco{
    position:fixed;
    top:20px;
    left:20px;
    right:20px;
    bottom:20px;
    border:1px solid rgba(219,190,155,.45);
    pointer-events:none;
    z-index:1;
}

.flor-si,
.flor-sd,
.flor-ii,
.flor-id{
    position:fixed;
    z-index:0;
    pointer-events:none;
}

.flor-si{
    top:0;
    left:0;
    width:260px;
}

.flor-sd{
    top:0;
    right:0;
    width:260px;
}

.flor-ii{
    bottom:0;
    left:0;
    width:260px;
}

.flor-id{
    bottom:0;
    right:0;
    width:260px;
}
