*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff7f7;
height:100vh;
display:flex;
flex-direction:column;
justify-content:space-between;
text-align:center;
color:#333;
}

/* HEADER */

header{
padding:25px 20px;
}

header h1{
font-family:'Great Vibes',cursive;
font-size:60px;
color:#c0392b;
}

header h2{
font-size:22px;
margin-top:5px;
}

.tagline{
margin-top:8px;
font-style:italic;
color:#777;
}

/* MAIN SECTIONS */

.section{
padding:10px 20px;
}

.section h2{
font-size:26px;
margin-bottom:15px;
color:#b03a2e;
}

/* COUPLE GRID */

.couple{
display:flex;
justify-content:center;
gap:40px;
}

.person{
width:220px;
background:white;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,0.08);
padding:10px;
}

.person img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

.person h3{
margin-top:8px;
font-size:18px;
}

/* EVENT SECTION */

.event-card{
max-width:500px;
margin:auto;
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:left;
}

.event-item{
display:flex;
gap:12px;
margin-bottom:10px;
align-items:flex-start;
}

.icon{
font-size:22px;
}

.event-item h3{
font-size:16px;
}

.event-item p{
font-size:15px;
}

.location-link{
text-decoration:none;
color:#b03a2e;
}

.location-link:hover{
text-decoration:underline;
}

.quote{
margin-top:10px;
text-align:center;
font-style:italic;
font-size:14px;
color:#666;
}

/* RESPONSIVE */

@media(max-height:800px){

header h1{
font-size:45px;
}

.person img{
height:180px;
}

}


