/* ============================
   MoselMassage – clean & warm
   v3 – világosabb háttér + kiemelt gombok + szép mobil
   ============================ */

:root{
  --bg: #0f141b;
  --bg2:#0c1117;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.14);
  --line2: rgba(255,255,255,.20);
  --text:#eef2f6;
  --muted: rgba(238,242,246,.72);

  /* kiemelő színek (meleg arany + egy kis zöld mosel-hangulat) */
  --accent: #f2c35a;       /* arany */
  --accent2:#67d6b4;       /* lágy zöld */
  --accentDark:#14171c;    /* sötét szöveg arany gombon */

  --radius: 18px;
  --radius2: 24px;
  --shadow: 0 16px 40px rgba(0,0,0,.35);

  --max: 980px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  color: var(--text);
  line-height:1.6;
  background:
    radial-gradient(1200px 650px at 15% 10%, rgba(242,195,90,.18), transparent 62%),
    radial-gradient(900px 520px at 90% 0%, rgba(103,214,180,.12), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: var(--radius2); }

/* Layout */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
}

/* Topbar */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 16px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 210px;
}
.brand h1{
  margin:0;
  font-size: 20px;
  letter-spacing:.2px;
}
.brand h2{
  margin:0;
  font-size: 18px;
  font-weight:700;
  opacity:.98;
}
.brand p{
  margin: 4px 0 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* NAV (felső gombok) */
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}

.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color: rgba(238,242,246,.86);
  font-weight:700;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.nav a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* “Termin buchen” – fő gomb */
.nav a.primary{
  border-color: rgba(242,195,90,.75);
  background: linear-gradient(135deg, rgba(242,195,90,.95), rgba(242,195,90,.70));
  color: var(--accentDark);
  box-shadow: 0 14px 28px rgba(242,195,90,.18);
}
.nav a.primary:hover{
  border-color: rgba(242,195,90,1);
  box-shadow: 0 18px 34px rgba(242,195,90,.24);
}

/* Massagen + Kontakt – másodlagos kiemelés */
.nav a.secondary{
  border-color: rgba(242,195,90,.45);
  color: rgba(242,195,90,.95);
  background: rgba(242,195,90,.06);
}
.nav a.secondary:hover{
  border-color: rgba(242,195,90,.75);
  background: rgba(242,195,90,.10);
}

/* Hero */
.hero{
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
}

.hero h2{
  margin: 12px 0 0 0;
  font-size: 34px;
  letter-spacing:.2px;
}

.hero p{
  color: rgba(238,242,246,.78);
  font-size: 16px;
  margin: 10px 0 0 0;
}

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

/* “pills” sor (Mobil / Flexibel / Professionell) – ha van ilyen */
.pills, .tags, .chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
  color: var(--muted);
  font-weight:700;
  font-size: 14px;
}
.pills span, .tags span, .chips span{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

/* Alsó gombok (Foglalás / WhatsApp / E-Mail) – ez volt csúnya: most szép lesz */
.actions, .cta, .buttons{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}

.actions a, .cta a, .buttons a,
a.btn, .btn, button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.06);
  color: rgba(238,242,246,.92);
  font-weight:800;
  font-size: 15px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.actions a:hover, .cta a:hover, .buttons a:hover,
a.btn:hover, .btn:hover, button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}

/* Fő CTA gomb (Foglalás) – arany, jól látható */
.actions a.primary, .cta a.primary, .buttons a.primary,
a.btn.primary, button.primary{
  border-color: rgba(242,195,90,.85);
  background: linear-gradient(135deg, rgba(242,195,90,.95), rgba(242,195,90,.72));
  color: var(--accentDark);
  box-shadow: 0 16px 30px rgba(242,195,90,.20);
}
.actions a.primary:hover, .cta a.primary:hover, .buttons a.primary:hover,
a.btn.primary:hover, button.primary:hover{
  border-color: rgba(242,195,90,1);
  box-shadow: 0 20px 36px rgba(242,195,90,.26);
}

/* WhatsApp / Email kis kiemelés (ha kapnak class-t) */
.actions a.wa, .cta a.wa, .buttons a.wa{ border-color: rgba(103,214,180,.55); }
.actions a.mail, .cta a.mail, .buttons a.mail{ border-color: rgba(255,255,255,.28); }

/* Lista dobozok, 2 oszlopos részek (Leistungen / So läuft es ab) */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

ul{ margin: 10px 0 0 20px; }
li{ margin: 6px 0; color: rgba(238,242,246,.85); }

/* Notice / megjegyzés */
.notice{
  margin-top: 12px;
  border-left: 4px solid rgba(242,195,90,.9);
  padding: 10px 12px;
  background: rgba(242,195,90,.08);
  border-radius: 14px;
  color: rgba(238,242,246,.85);
}

/* Footer */
.footer{
  margin: 18px 0 30px 0;
  padding: 14px 8px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:space-between;
  color: rgba(238,242,246,.60);
}
.footer a{ color: rgba(238,242,246,.70); text-decoration: underline; }

/* Mobil */
@media (max-width: 860px){
  .container{ padding: 14px; }
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap: 12px;
  }
  .brand{ min-width: 0; }
  .hero h2{ font-size: 26px; }
  .nav{
    width:100%;
    justify-content:flex-start;
  }
  .nav a{
    flex: 1 1 calc(50% - 10px);
    text-align:center;
  }
  .grid{
    grid-template-columns: 1fr;
  }
  .actions a, .cta a, .buttons a,
  a.btn, .btn, button{
    flex: 1 1 calc(50% - 10px);
  }
  /* A fő foglalás gomb legyen teljes szélesség mobilon */
  .actions a.primary, .cta a.primary, .buttons a.primary,
  a.btn.primary, button.primary{
    flex: 1 1 100%;
  }
/* ============================
   FIX v3.1 – alsó rész világosabb
   ============================ */

/* kártyák (Leistungen / So läuft es ab / alsó blokkok) világosabb */
.card,
.hero,
.topbar{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* ahol a 3 gomb van (Foglalás/WhatsApp/E-Mail) – szintén világosabb */
.actions, .cta, .buttons{
  background: rgba(255,255,255,.06);
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
}

/* alsó gombok: világosabb alap */
.actions a, .cta a, .buttons a,
a.btn, .btn, button{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.24) !important;
  color: rgba(238,242,246,.96) !important;
}

/* fő foglalás gomb: legyen látványos arany */
.actions a.primary, .cta a.primary, .buttons a.primary,
a.btn.primary, button.primary{
  background: linear-gradient(135deg, rgba(242,195,90,.95), rgba(242,195,90,.70)) !important;
  border-color: rgba(242,195,90,.90) !important;
  color: #14171c !important;
}

/* WhatsApp/E-Mail: kicsi kiemelés */
.actions a.wa, .cta a.wa, .buttons a.wa{
  border-color: rgba(103,214,180,.70) !important;
}
.actions a.mail, .cta a.mail, .buttons a.mail{
  border-color: rgba(255,255,255,.35) !important;
}
  /* ===== Verfügbare Zeiten (Termin) ===== */

.availability-box {
  margin-top: 30px;
}

#slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.slot {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.slot.free {
  background: #2ecc71;
  color: #fff;
}

.slot.blocked {
  background: #555;
  color: #ccc;
}
