/* Mustafa Uğraşkan Barber's Club & Academy — site.css */
:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --gold: #c9962c;
  --gold-light: #f6d77a;
  --gold-dark: #8a6a1f;
  --gold-grad: linear-gradient(135deg, #8a6a1f 0%, #c9962c 40%, #f6d77a 55%, #c9962c 75%, #8a6a1f 100%);
  --text: #f5f2eb;
  --text-muted: #b0a99a;
  --border: rgba(201, 150, 44, 0.35);
  --danger: #c0392b;
  --success: #27ae60;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-script: "Great Vibes", cursive;
  --header-h: 78px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.brand-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  color: var(--bg);
  background: var(--gold-grad);
}

.nav-cta {
  margin-left: 0.4rem;
  background: var(--gold-grad) !important;
  color: var(--bg) !important;
  font-weight: 700 !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold-grad);
  color: #111 !important;
  box-shadow: 0 8px 24px rgba(201, 150, 44, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light) !important;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.85) 100%),
    url("../img/hero-mustafa-gold.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  text-align: left;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  margin: 0 0 0.6rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.section-head p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold-grad);
  margin: 1rem auto 0;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.card-body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.feature-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  background: rgba(201, 150, 44, 0.08);
}

.price-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.price-card .duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  background: transparent;
}

.chip.active,
.chip:hover {
  background: var(--gold-grad);
  color: #111;
  border-color: transparent;
}

/* ---------- Academy ---------- */
.academy-hero {
  position: relative;
  padding: 5rem 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.7)),
    url("../img/academy-banner-1.png") center/cover no-repeat;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.benefit-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
}

.benefit-list .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at top, rgba(201, 150, 44, 0.15), transparent 60%),
    var(--bg-3);
}

.cta-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.cta-banner .script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

/* ---------- Team / Press ---------- */
.team-card {
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-card .card-media {
  aspect-ratio: 1;
  border-radius: 50%;
  width: min(220px, 70%);
  margin: 1.5rem auto 1rem;
  border: 2px solid var(--gold);
}

.press-card .card-media {
  aspect-ratio: 16 / 10;
}

.quote {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.info-box {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
}

.info-box h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
}

.info-box p,
.info-box a {
  margin: 0;
  color: var(--text-muted);
  white-space: pre-line;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 72px;
  margin-bottom: 0.75rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin: 0 0 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.made-by {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.made-by a {
  color: var(--gold-light);
  font-weight: 600;
}

.made-by a:hover {
  color: #fff;
}

.made-by-sep {
  opacity: 0.45;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  font-size: 1.7rem;
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff !important;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 85vh;
  max-width: min(960px, 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pagination a:hover,
.pagination .current {
  background: var(--gold-grad);
  color: #111;
  border-color: transparent;
}

/* ---------- Page hero small ---------- */
.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(201, 150, 44, 0.12), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.page-hero p {
  color: var(--text-muted);
  margin: 0;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
}

.split-content h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: 8px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .brand-text strong {
    font-size: 0.8rem;
  }
}
