/*******************************/
/*** Stile per la home page  ***/
/*******************************/

.hero-dentista {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  background-image: url("/img/sorriso.jpg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-dentista h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-dentista {
    height: 70vh;
    min-height: 380px;
  }

  .hero-dentista h1 {
    font-size: 28px;
    padding: 0 15px;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-dentista h1 {
    font-size: 34px;
    padding: 0 20px;
  }
}

.hero-services {
  margin-top: 30px;
}

.hero-services .btn {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin: 6px;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-services .btn:hover,
.hero-services .btn:focus {
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.42);
}


/* Mobile */
@media (max-width: 767px) {
  .hero-services .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}

.welcome-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.welcome-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.welcome-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.welcome-quote {
  max-width: 100%;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 767px) {
  .welcome-section {
    padding: 40px 0;
  }

  .welcome-section h2 {
    font-size: 24px;
  }
}
