.hero{
    height: 85vh;
    background: url(family.jpg) center/cover
    no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}
.hero-content{
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    padding: 0 20px;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero h1{
    margin-bottom: 15px;
    color: #f75ea2;
}
.hero p{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}
.hero button{
    background-color: white;
    color: #f75ea2;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
}
.hero-content button:hover{
    border: 2px solid #f75ea2;
    transition: 0.3s ease-in;
}
.hero button:active{
    color: white;
    background-color: #f75ea2;
    transition: 0.1s ease-in;
}
@media(max-width: 600px){
    .hero h1{
        font-size: 1.8rem;
    }
    .hero p{
        font-size: 14px;
    }
}

.tours {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}
.tours-container{
    max-width: 1200px;
    margin: 0 auto;
}
.tour-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.tour-card{
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
}
.tour-card img{
    width: 100%;
    height: 250px;
    border-radius: 12px;
}
.tour-cards h3{
    margin-bottom: 15px;
}
.tour-card p{
    margin-bottom: 20px;
}
.btn{
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #f75ea2;
    border-radius: 16px;
    background-color: white;
    color: #f75ea2;
}
.btn:hover{
    color: white;
    background-color: #f75ea2;
}