body {
   font-family: 'Poppins', sans-serif;
   background-color: #ebcc9d;
}

/* HERO */
.hero {
   min-height: 100vh;
   background: url('images/hero.png') bottom/cover no-repeat;
   display: flex;
   align-items: center;
   position: relative;
   color: white;
}

/* overlay per migliorare leggibilità */
/* .hero::before {
   content: '';
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
} */

/* contenuto sopra overlay */
.hero .container {
   position: relative;
   z-index: 2;
}

.viola {
   color: #fab617;
}

.btn-main {
   background: #9b9b9d;
   color: black;
   border-radius: 30px;
   border: none;
}

.btn-main:hover {
   background: #fff;
   color: black;
}

/* CARD */
.card {
   border: none;
   border-radius: 18px;
   transition: 0.3s;
}
.card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* SEZIONI */
.section-padding {
   padding: 100px 0;
}

/* sezioni bianche per contrasto */
.bg-light {
   background: white !important;
}

/* BANNER NOLEGGIO */
.banner-rental {
   background: rgba(0, 0, 0, 0.15);
   backdrop-filter: blur(8px);
   color: black;
   border-radius: 20px;
   padding: 25px;
   margin: 60px 0;
}

/* CTA */
.cta {
   background: black;
   color: white;
}

/* FOOTER */
footer {
   background: #111;
   color: #aaa;
}

/* MOBILE & TABLET */
@media (max-width: 991px) {
   .hero {
      background: url('images/hero-mobile.png') center/cover no-repeat;
   }
}
