/* ═══════════════════════════════════════════
   PROFITSITE.EU — Client Site Styles
   Dark premium theme (barber)
   ═══════════════════════════════════════════ */


/* ── Variables ─────────────────────────── */
:root {
  --color-primary:    #C9A96E;
  --color-secondary:  #A07830;
  --color-bg:         #0A0A0A;
  --color-surface:    #141414;
  --color-surface2:   #1E1E1E;
  --color-text:       #F5F0E8;
  --color-text-muted: #8A8578;
  --color-border:     #2A2520;
  --color-accent:     #D4AF6A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);

  --banner-h:    40px;
  --nav-h:       72px;
  --container:   1200px;
  --section-py:  96px;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--banner-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ─────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gold { color: var(--color-primary); }

.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 16px auto;
}
.gold-line.left { margin-left: 0; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { line-height: 1.75; color: var(--color-text-muted); }

/* ── Demo Banner ────────────────────────── */
#demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 9999;
  font-size: 12px;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
}
.banner-item {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.banner-item a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.banner-item a:hover { opacity: 1; }
.banner-sep {
  color: #555;
  padding: 0 2px;
}
.banner-item.banner-label { opacity: 0.6; letter-spacing: 0.04em; }
.banner-item.banner-cta a {
  color: var(--color-primary);
  font-weight: 600;
  opacity: 1;
}
.banner-item.banner-cta a:hover { text-decoration: underline; }

/* ── Navbar ─────────────────────────────── */
#navbar {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: background 0.3s;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo span { color: var(--color-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
  color: var(--color-text-muted);
}
.nav-links a:hover { color: var(--color-text); background: var(--color-surface); }
.nav-links a.btn-primary {
  background: var(--color-primary);
  color: #000;
  font-weight: 600;
  padding: 8px 18px;
}
.nav-links a.btn-primary:hover { background: var(--color-accent); }

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.lang-btn:hover { color: var(--color-text); }
.lang-btn.active { color: var(--color-primary); font-weight: 700; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
}
.nav-mobile {
  position: fixed;
  top: 0; right: -280px;
  width: 280px; height: 100vh;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  z-index: 1002;
  padding: calc(var(--banner-h) + var(--nav-h) + 16px) 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.3s ease;
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile a:hover { background: var(--color-surface2); color: var(--color-text); }
.nav-mobile a.book-link {
  margin-top: 12px;
  background: var(--color-primary);
  color: #000;
  font-weight: 700;
  text-align: center;
}

/* offset for fixed nav */
main, #hero { scroll-margin-top: calc(var(--banner-h) + var(--nav-h)); }
section { scroll-margin-top: calc(var(--banner-h) + var(--nav-h)); }

/* ── Hero ───────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #111;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,169,110,0.18);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-tag:empty { display: none; }
.hero-title { color: var(--color-text); margin-bottom: 16px; }
.hero-title em { color: var(--color-primary); font-style: italic; }
.hero-subtitle { font-size: 1.1rem; color: rgba(245,240,232,0.7); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--color-primary); color: #000; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-accent); border-color: var(--color-accent); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--color-text); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Hero scroll */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 24px; right: 36px;
  display: flex; gap: 8px; z-index: 1;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--color-primary); transform: scale(1.4); }

/* ── Stats ──────────────────────────────── */
#stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }

/* ── Section common ─────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 4px; }
.section-sub { text-align: center; margin-top: 16px; font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
section { padding: var(--section-py) 0; }
section:nth-child(even) { background: var(--color-surface); }

/* ── Services ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}
.service-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.service-body { padding: 20px; }
.service-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--color-primary); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
}
.service-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--color-text); }
.service-desc { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 16px; }
.service-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--color-border); padding-top: 14px;
}
.service-price { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); font-family: var(--font-heading); }
.service-duration { font-size: 12px; color: var(--color-text-muted); }
.service-book-btn {
  background: var(--color-primary); color: #000;
  border: none; border-radius: var(--radius-md);
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  font-family: var(--font-body);
}
.service-book-btn:hover { background: var(--color-accent); }

/* ── Staff ──────────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.staff-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.staff-card:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.staff-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--color-border);
}
.staff-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--color-surface); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 3px solid var(--color-border);
  font-size: 2rem; color: var(--color-primary);
}
.staff-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.staff-role { font-size: 12px; color: var(--color-primary); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.staff-bio { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
.staff-book-btn {
  margin-top: 16px;
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.staff-book-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ── Gallery ────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff; font-size: 12px; font-weight: 500;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 9000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 20px; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Booking ────────────────────────────── */
#booking {
  background: var(--color-surface);
}
.booking-inner {
  max-width: 680px; margin: 0 auto;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--color-text);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-control option { background: var(--color-surface); }
.booking-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  background: var(--color-primary);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.booking-submit:hover { background: var(--color-accent); }
.booking-submit:active { transform: scale(0.99); }
.booking-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.booking-success.show { display: block; }
.booking-success-icon { font-size: 3rem; margin-bottom: 16px; }
.booking-success h3 { color: var(--color-text); margin-bottom: 8px; }
.booking-success p { color: var(--color-text-muted); }

/* ── Reviews ────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: var(--color-primary); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--color-text); }
.review-date { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }

/* ── Contact ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px; }
.contact-val { color: var(--color-text); font-size: 0.95rem; }
.contact-map {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface2);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ─────────────────────────────── */
#footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.footer-logo span { color: var(--color-primary); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: var(--color-text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--color-text); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.footer-bottom a { color: var(--color-primary); }

/* ── Toast ──────────────────────────────── */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 9998;
}
.toast {
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 12px 18px; border-radius: var(--radius-md);
  font-size: 13px; color: var(--color-text);
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
}
.toast.success { border-left: 3px solid #22c55e; }
.toast.error   { border-left: 3px solid #ef4444; }
@keyframes toastIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: none; } }

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .full { grid-column: 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--color-border); }
  #demo-banner { font-size: 11px; gap: 0; }
  .banner-item { padding: 0 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .staff-grid, .reviews-grid { grid-template-columns: 1fr; }
}

/* Tabler icons sizing */
.contact-icon i { font-size: 20px; }
.booking-success-icon i { font-size: 48px; color: #22c55e; display: block; margin-bottom: 16px; }

/* Hero instant show — no transition on first slide */
.hero-slide.instant { transition: none !important; }
