#fifth {
  background: #4b2e21;
  padding: 80px 0;
  color: #fdfdfd;
  overflow: hidden;
}

#fifth img {
  width: 140px;
  margin-bottom: 20px;
}

#fifth h1 {
  font-size: clamp(28px, 5vw, 42px); /* Font fluido */
  color: #fff8f0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

#fifth h2 {
  font-family: "Parisienne", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  color: #fff8f0;
  text-align: center;
  margin-top: -5px;
}

#fifth .prenotazione {
  background: #fff8f0;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}

#fifth h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
}

/* Bottoni stile custom */
#fifth #camera,
#fifth #giornata {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border: 3px solid;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 8px;
}

#fifth #camera {
  border-color: #c4a483;
  color: #c4a483;
}

#fifth #giornata {
  border-color: #4b2e21;
  color: #4b2e21;
}

/* Effetti Hover solo per chi usa il mouse */
@media (min-width: 992px) {
  #fifth #camera:hover {
    background: #c4a483;
    color: #fff8f0;
  }
  #fifth #giornata:hover {
    background: #4b2e21;
    color: #fff8f0;
  }
}

/* --- RESPONSIVE PATCH --- */
@media (max-width: 768px) {
  #fifth {
    padding: 60px 0;
  }

  #fifth .prenotazione {
    margin: 0 10px;
    padding: 30px 20px;
  }

  #fifth #camera,
  #fifth #giornata {
    padding: 22px 10px;
  }
}
