/* ============================================================
   TEMA: Atelier Luxury Spa – Versione Luxury Gold (HERO brillante)
   ============================================================ */

/* BASE ------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Playfair Display", serif;
}

a {
  color: #d4af37;
  text-decoration: none;
}

/* ============================================================
   HERO FULL – VERSIONE LUXURY GOLD (Glow forte)
   ============================================================ */

.hero-full {
  width: 100%;
  padding: 0;
  margin: 0;
  background: radial-gradient(circle at top, #2b1f07 0%, #0d0d0d 60%, #000 100%);
}

.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.18) contrast(1.12);
  transition: 0.4s ease;
}

/* Glow dorato (sempre attivo, non solo hover) */
.hero-full-img {
  box-shadow:
    0 0 25px rgba(212,175,55,0.35),
    0 0 60px rgba(212,175,55,0.20),
    0 0 120px rgba(212,175,55,0.12);
}

/* SEZIONI ---------------------------------------------------- */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(212,175,55,0.45);
}

.section p {
  font-size: 1.1rem;
  color: #ececec;
  max-width: 720px;
  margin: 0 auto;
}

.section-light {
  background-color: #050505;
}

.section-alt {
  background: radial-gradient(circle at top, #1a1305 0%, #050505 65%);
}

/* ============================================================
   TRATTAMENTI – LUXURY GOLD (icone oro + glow leggero)
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 14px;
  padding: 35px 15px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
}

/* Icona oro */
.service-card:before {
  content: "✦";
  font-size: 32px;
  color: #d4af37;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

/* Hover glow */
.service-card:hover {
  border-color: #d4af37;
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  transform: translateY(-4px);
}

.service-card h3 {
  color: #fff;
  margin-top: 42px;
  font-size: 1.2rem;
}

/* ============================================================
   GALLERIA – immagini luminose e proporzionate
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.35);
  background: #000;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.35s ease;
  filter: brightness(1.05);
}

/* Hover gallery */
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.18);
}

/* ============================================================
   CONTATTI – LUXURY GOLD
   ============================================================ */

.contacts {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.titolo-contatti {
  font-size: 2.2rem;
  color: #d4af37;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(212,175,55,0.4);
}

.contatti-box {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contatto-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 14px;
  padding: 25px 20px;
  transition: 0.3s ease;
}

.contatto-item:hover {
  border-color: #d4af37;
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  transform: translateY(-4px);
}

/* MAPPA ------------------------------------------------------ */
.mappa-container {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

/* FOOTER ----------------------------------------------------- */
footer {
  text-align: center;
  padding: 20px;
  color: #b8b8b8;
  background: #050505;
  border-top: 1px solid rgba(212,175,55,0.35);
}

/* ============================
   PERCHÉ SCEGLIERE NOI
   ============================ */

.perche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.perche-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
}

.perche-card:hover {
  border-color: #d4af37;
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
  transform: translateY(-4px);
}

.perche-icona {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 10px;
}

.perche-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.perche-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}
