*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fff7f8;
    color:#333;
}

.hero{
    height:60vh;
    background:url("images/cover.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    background:rgba(0,0,0,.5);
    color:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
}

.overlay h1{
    font-size:3rem;
    margin-bottom:15px;
}

.overlay p{
    font-size:1.2rem;
}

.content{
    width:90%;
    max-width:1100px;
    margin:50px auto;
}

.content h2{
    text-align:center;
    margin-bottom:15px;
}

.content p{
    text-align:center;
    line-height:1.8;
    margin-bottom:35px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.gallery img:hover{
    transform:scale(1.05);
}

.message{
    margin-top:50px;
    padding:30px;
    background:white;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

@media(max-width:768px){

.overlay h1{
    font-size:2rem;
}

.overlay p{
    font-size:1rem;
}

.hero{
    height:45vh;
}

.gallery img{
    height:220px;
}

}