:root{
    --wine:#7a2d36;
    --sand:#d8c7b5;
    --stone:#f4f1ec;
    --text:#2f3133;
    --white:#ffffff;
}

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

body{
    font-family:'Montserrat',sans-serif;
    background:var(--stone);
    color:var(--text);
    line-height:1.6;
}

.hero{
    background-image:url('../images/villa/hero.jpg');
    background-size:cover;
    background-position:center;
    height:55vh;

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

.overlay{
    background:rgba(255,255,255,0.88);
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.logo{
    width:100px;
    margin-bottom:20px;
}

h1{
    font-size:4rem;
    color:var(--wine);
}

.tagline{
    margin-top:10px;
    font-size:1.2rem;
}

.welcome{
    max-width:900px;
    margin:auto;
    padding:60px 25px;
    text-align:center;
}

.welcome h2{
    margin-bottom:15px;
}

.welcome p{
    max-width:700px;
    margin:0 auto;
}

.welcome h2::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#7a2d36;
    margin:12px auto 0;
    border-radius:2px;
}

.quick-links{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#faf8f5;
    border:1px solid #e5dfd8;
    padding:30px;
    border-radius:15px;
    text-decoration:none;
    color:var(--text);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    border-color:#7a2d36;
}

.card span{
    font-size:2rem;
}

.card h3{
    margin-top:10px;
}

.about{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
}

.about-text h2{
    color:var(--wine);
    margin-bottom:20px;
}

footer{
    text-align:center;
    padding:40px;
    background:white;
}

@media(max-width:768px){

    .hero{
        min-height:55vh;
    }

    h1{
        font-size:2rem;
    }

    .about{
        grid-template-columns:1fr;
    }

}