*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Georgia, serif;
    background:#fcf7f4;
    color:#444;
    line-height:1.7;

}

.hero{

    height:100vh;
    background:url("background.jpg") center center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;

}

.overlay{

    position:absolute;
    inset:0;
    background:rgba(255,255,255,.35);

}

.hero-content{

    position:relative;
    text-align:center;
    z-index:10;

}

.hero h2{

    letter-spacing:4px;
    color:#8d6a63;
    font-weight:300;
    margin-bottom:15px;

}

.hero h1{

    font-size:72px;
    color:#5d4742;
    margin-bottom:20px;

}

.hero h1 span{

    color:#c6928f;

}

.hero p{

    font-size:22px;
    margin-bottom:40px;

}

.couple-photo {
    width: 600px;
    max-width: 90%;
    height: auto;
    object-fit: cover;

    border-radius: 16px; 
    border: 10px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

section{

    max-width:900px;
    margin:auto;
    padding:80px 30px;
    text-align:center;

}

section h2{

    font-size:42px;
    margin-bottom:30px;
    color:#7c5c55;

}

.card{

    background:white;
    padding:25px;
    border-radius:20px;
    margin:20px auto;
    max-width:600px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card h3{

    color:#bb7f79;
    margin-bottom:10px;

}

button{

    background:#c6928f;
    color:white;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;

}

button:hover{

    background:#b07b77;

}

footer{

    padding:40px;
    text-align:center;
    background:#f3e7e3;
    color:#7d6660;

}

@media(max-width:768px){

.hero h1{

font-size:48px;

}

.couple-photo{

width:260px;
height:260px;

}

section h2{

font-size:32px;

}

}