body{
    font-family:'Montserrat',sans-serif;
    background:#F8F7F4;
    color:#4E6F8F;
}

p{
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
}

/* NAVBAR */
.navbar{
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    background:#4e6f8f94;
    backdrop-filter:blur(8px);
}

.navbar-brand,
.navbar .nav-link{
    color:white !important;
}

.navbar .nav-link:hover{
    color:#DCE6F0 !important;
}

/* HERO */
.hero{
    height:100vh;
    background:url('../img/hero.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* TARJETA PRINCIPAL */
.overlay{
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    background:rgba(78,111,143,0.13);
    backdrop-filter:blur(12px);
    padding:50px;
    border-radius:25px;
    text-align:center;
    color:#6A8CAF;
    box-shadow:0 10px 40px rgba(0,0,0,.493);
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    font-weight:400;
    text-shadow:2px 2px 5px rgba(0,0,0,.2);
}

.hero p{
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-size:20px;
}

/* BOTÓN */
.btn-gold{
    background:#6A8CAF;
    padding:15px 35px;
    border-radius:50px;
    color:white;
    text-decoration:none;
    display:inline-block;
    margin-top:20px;
    transition:.3s;
    border:none;
}

.btn-gold:hover{
    background:#4E6F8F;
    color:white;
    transform:translateY(-2px);
}

/* CONTADOR */
.countdown{
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:25px;
}

.countdown div{
    background:white;
    color:#4E6F8F;
    padding:15px;
    border-radius:12px;
    min-width:80px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.countdown span{
    display:block;
    font-size:30px;
    font-weight:bold;
    color:#4E6F8F;
}

.countdown p{
    margin:0;
    font-size:14px;
}

/* SECCIONES */
.section{
    padding:50px 0;
}

.section h2{
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    color:#4E6F8F;
    font-family:'Playfair Display',serif;
    margin-bottom:30px;
}

/* GALERÍA */
.gallery{
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.gallery:hover{
    transform:scale(1.05);
}

/* EVENTO */


.evento-img{
    width:100%;
    max-width:400px;
    height:auto;
    display:block;
    margin:0 auto;

    border-radius:25px;
    border:4px solid #ffffff;

    box-shadow:
        0 0 0 3px #D4AF37,
        0 12px 30px rgba(78,111,143,.25);
}


/* TARJETAS */
.card{
    border:none !important;
    border-radius:20px;
    background:#ffffff71;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgb(78,111,143);
}

.card-circle-img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #fff;
    box-shadow:
        0 0 0 3px #D4AF37,
        0 8px 20px rgba(0,0,0,.15);
}

.card-body{
    padding:50px 35px;
}

.card h2,
.card h4{
    text-align:center;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    color:#213e5a;
    margin-bottom:20px;
}

.card h2{
    font-size:32px;
    font-weight:600;
}

/* RSVP */
.card-rsvp{
    max-width:600px;
    margin:auto;
    background:url('../img/form.jpg');
    background-size:auto;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgb(0,0,0);
}

.card-rsvp input,
.card-rsvp select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #dce6f0;
    border-radius:10px;
}o 




.card-rsvp input:focus,
.card-rsvp select:focus{
    outline:none;
    border-color:#6a8caf;
}

.card-rsvp button{
    width:100%;
    padding:15px;
    background:#6A8CAF;
    border:none;
    color:#ffffff;
    border-radius:10px;
    transition:.3s;
}

.card-rsvp button:hover{
    background:#4E6F8F;
}

/* FOOTER */
footer{
    background:#4E6F8F;
    color:#fff;
    text-align:center;
    padding:30px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .hero{
        height:auto;
        min-height:100vh;
        padding:100px 15px 50px;
    }

    .overlay{
        margin:10px;
        padding:25px 15px;
        width:100%;
    }

    .hero h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero p{
        font-size:18px;
    }

    .countdown{
        flex-wrap:nowrap;
        gap:5px;
    }

    .countdown div{
        min-width:70px;
        padding:10px 5px;
    }

    .countdown span{
        font-size:20px;
    }

    .countdown p{
        font-size:11px;
    }

    .btn-gold{
        width:100%;
    }

    .card-body{
        padding:30px 20px;
    }

    .card h2{
        font-size:26px;
    }

    .card-circle-img{
        width:100px;
        height:100px;
    }

    .gallery{
        height:250px;
        margin-bottom:15px;
    }

    .evento{
        padding:40px 20px;
    }

    .card-rsvp{
        padding:25px 15px;
        background-size:cover;
    }

    iframe{
        height:300px;
    }
};