/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  scroll-behavior: smooth;
}

/* Colori */
.text-gold {
  color: #d4af37;
}

/* Immagini */
.img-fluid {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
  font-size: 1.1rem;
}
.navbar-brand img {
  height: 70px;
}
.navbar-nav .nav-link {
  margin-right: 20px;
}
.navbar-nav .nav-link:hover {
  color: #d4af37 !important;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* ATTENZIONE: era height, metti min-height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Video di sfondo */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay scuro sopra il video */
.hero-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

/* Contenuto sopra l'overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay img {
  max-width: 450px;
  height: auto;
  margin-bottom: 20px;
}

.hero-overlay p {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-overlay a.btn {
  margin-top: 10px;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 30px;
}


/* SERVIZI Immagine */
.servizi-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* CAROUSEL PUGLIA */
.carousel-inner img {
  height: 400px;
  object-fit: cover;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4af37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-overlay img {
    max-width: 200px;
  }
  h2 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .carousel-inner img {
    height: 250px;
  }
  .servizi-img {
    height: 250px;
  }
}

/* Pulsante WhatsApp */
.btn-warning {
  background-color: #d4af37;
  border: none;
  color: black;
}
.btn-warning:hover {
  background-color: #bfa232;
  color: black;
}

/* Floating WhatsApp Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.floating-btn:hover {
  background-color: #128c7e;
}


/* FOOTER */
.footer {
  background-color: #000000; /* Nero */
  color: #ffffff; /* Bianco */
  font-size: 14px;
  padding: 20px 0;
}

/* Cookie banner */
.cookie-banner {
  font-size: 14px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

