/* =====================================================
   RAWLINE BARBERSHOP — FINAL PRODUCTION STYLE (CLEAN)
   ===================================================== */

:root {
  --accent: #e1b15b;
  --dark: #111;
  --card-bg: rgba(18,18,18,0.65);
  --card-border: rgba(255,255,255,0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
  color: #fff;
  background: #000 !important; /* FORCE BLACK */
}

/* Αν υπάρχει background div στο HTML, το κρύβουμε τελείως */
.bg { display: none !important; }
.barber-pole { display: none !important; }

/* ================= LAYOUT ================= */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.card {
  width: 100%;
  max-width: 880px;
  border-radius: 14px;
  padding: 26px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

/* ================= STEPS ================= */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.step.active {
  background: var(--accent);
  color: #111;
  border: none;
}

.line {
  width: 44px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

/* ================= LOGO ================= */
.logo-wrap { text-align: center; }

.logo-title {
  font-size: 64px;
  letter-spacing: 6px;
  margin: 0;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  background-clip: text;
}

.logo-subtitle {
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 700;
  opacity: 0.9;
  text-align: center;
}

/* ================= TEXT ================= */
.lead {
  text-align: center;
  margin: 10px 0 16px;
}

/* ================= FORM ================= */
.field { margin: 14px 0; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

select,
input {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  background: rgba(30,30,30,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
}

select:focus,
input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ================= BUTTONS ================= */
.btn {
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #111;
  border: none;
  font-weight: 700;
}

/* FIX: Book now πάντα κέντρο */
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 12px;
  margin-top: 12px;
}

.service-card {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
}

.service-card.active {
  background: var(--accent);
  color: #111;
}

.service-card .price {
  float: right;
  font-weight: bold;
}

.details-btn {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
  text-decoration: underline;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.service-card.active .details-btn {
  color: #111;
  font-weight: 700;
}

/* DETAILS only on click */
.details-text { display: none; margin-top: 8px; font-size: 13px; opacity: 0.9; }
.details-text.open { display: block; }

/* ================= TIME SLOTS ================= */
.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
}

.time-btn {
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.time-btn.selected {
  background: var(--accent);
  color: #111;
  border: none;
}

.muted { opacity: 0.75; }

/* ================= BOTTOM INFO ================= */
.bottom-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 40px;
}

.contact-info { font-size: 14px; line-height: 1.6; }
.contact-info a { color: #fff; text-decoration: none; }
.icon.red { color: #c62828; margin-right: 6px; }

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.icon-link:hover { opacity: 0.7; }

.hours {
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .logo-title {
    font-size: 36px;
    letter-spacing: 4px;
    color: #fff;
    background: none;
    -webkit-text-stroke: 0;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .hours { text-align: center; }
}
