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

body{
    font-family: "Segoe UI", sans-serif;
    background:#fff8fb;
    color:#444;
}

.hero{
    height:100vh;

    background:
    linear-gradient(
        rgba(255,192,203,.35),
        rgba(255,192,203,.35)
    ),
    url("https://iili.io/Co5seG1.md.jpg")
    center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    background:rgba(255,255,255,.85);
    padding:40px;
    border-radius:30px;
    backdrop-filter:blur(10px);
}

h1{
    font-size:60px;
    color:#d94d8b;
}

.subtitle{
    margin-top:15px;
    font-size:20px;
}

.date{
    margin-top:20px;
    font-size:26px;
    color:#d94d8b;
}

#countdown{
    margin-top:20px;
    font-size:28px;
    font-weight:bold;
}

.section{
    max-width:800px;
    margin:auto;
    padding:70px 25px;
}

.section h2{
    color:#d94d8b;
    margin-bottom:25px;
}

.venue-card{
    overflow:hidden;
    border-radius:25px;
    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.venue-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.venue-info{
    padding:25px;
}

.map-container{
    margin-top:30px;
}

.map-container iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:25px;
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;

    border:none;

    border-radius:15px;

    background:white;

    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

label{
    display:block;
    margin:12px 0;
}

button{
    width:100%;
    padding:18px;

    border:none;
    border-radius:18px;

    background:#ff5fa2;

    color:white;
    font-size:18px;

    cursor:pointer;

    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    h1{
        font-size:40px;
    }

    .overlay{
        width:90%;
    }
}