*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
    color:#222;
    line-height:1.6;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.20)),
    url("../images/hero.jpg") center center/cover no-repeat;
    display:flex;
    flex-direction:column;
    color:#fff;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(12,39,67,.92);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo h2{
    font-size:32px;
    letter-spacing:3px;
}

.logo span{
    color:#d9b56d;
    font-size:13px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
}

.btn,
.hero-btn{
    background:#d9b56d;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover,
.hero-btn:hover{
    background:#b89246;
}

.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content h1{
    font-size:70px;
}

.subtitle{
    font-size:32px;
    font-weight:700;
    color:#D4AF37;
    text-shadow:4px 4px 12px rgba(0,0,0,1);
    letter-spacing:1px;
    margin:20px 0;
}

.hero-description{
    max-width:700px;
    font-size:20px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

section{
    padding:90px 8%;
}

h2{
    text-align:center;
    margin-bottom:40px;
    font-size:38px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-text{
    text-align:center;
    margin-bottom:35px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.35s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.04);
}

#prezzi{
    background:#0c2743;
    color:#fff;
}

.price-box{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.price-box h1{
    font-size:65px;
    color:#d9b56d;
    margin-bottom:20px;
}

.price-box ul{
    list-style:none;
    line-height:2;
    margin-bottom:35px;
}

#contatti{
    text-align:center;
}

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.subtitle{
    font-size:32px;
    font-weight:700;
    color:#ffffff;
    text-shadow:4px 4px 15px rgba(0,0,0,1);
    letter-spacing:1px;
    margin:20px 0;
}

.navbar{
    flex-direction:column;
    gap:15px;
}

.navbar ul{
    flex-direction:column;
    text-align:center;
}

}
/* ===== ANIMAZIONI ===== */

.card,
.gallery-grid img,
.price-box{
    transition:all .35s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.price-box{
    background:white;
    color:#222;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.price-box ul li{
    margin:15px 0;
    font-size:18px;
}

#contatti{
    background:#f8f8f8;
}

#contatti h2{
    margin-bottom:20px;
}

#contatti p{
    font-size:20px;
    margin:15px 0;
}

.hero-btn.secondary{
    background:transparent;
    border:2px solid white;
}

.hero-btn.secondary:hover{
    background:white;
    color:#0c2743;
}

.gallery-grid img{
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

footer{
    font-size:15px;
    letter-spacing:1px;
}