/* ============================================================
   Secret Art Bayan Kuaförü — Sıcak Tema (kadın kuaförü)
   Dusty rose + şampanya altın + krem
   ============================================================ */

:root {
  --bg: #fbf6f4;
  --bg-alt: #f3e8e4;
  --surface: #ffffff;
  --text: #2a1f24;
  --text-soft: #6b4f57;
  --muted: #a08a92;
  --accent: #c89096;          /* dusty rose */
  --accent-dark: #a56b73;
  --accent-soft: #f5dde0;
  --gold: #c9a96a;            /* şampanya altın (küçük vurgular) */
  --line: #ebd9d6;
  --shadow: 0 6px 22px rgba(120, 60, 60, 0.06);
  --shadow-lg: 0 20px 50px rgba(120, 60, 60, 0.15);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--muted); }

/* ============================ Header / Nav ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
}
.site-nav {
  display: flex;
  gap: 26px;
  margin-left: 20px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--accent); }
.nav-cta { margin-left: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
}

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 144, 150, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: #fff; }
.btn-lg { padding: 13px 26px; font-size: 1rem; }
.btn-xl { padding: 18px 34px; font-size: 1.05rem; }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(58, 30, 38, 0.55), rgba(58, 30, 38, 0.3)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600&q=70');
  background-size: cover;
  background-position: center;
}
.hero-inner {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.95;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}
.stars {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.hero-cta .btn-ghost:hover {
  background: #fff;
  color: var(--text);
}

/* ============================ Sections ============================ */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-lead {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--text-soft);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* ============================ Hakkımızda ============================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: var(--text-soft);
}
.features li {
  font-size: 0.95rem;
}
.about-img {
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================ Hizmetler ============================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--surface);
  padding: 32px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.service p { color: var(--text-soft); font-size: 0.94rem; }

/* ============================ Galeri ============================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gal-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ============================ Konum ============================ */
.address {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: var(--text-soft);
}
.hours h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--accent-dark);
}
.hours ul {
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* ============================ İletişim ============================ */
.contact {
  background: linear-gradient(135deg, var(--text) 0%, #3d2730 100%);
  color: #fff;
}
.contact .eyebrow { color: var(--accent-soft); }
.contact .section-title { color: #fff; }
.contact .section-lead { color: rgba(255, 255, 255, 0.78); }
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}
.contact .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.contact .btn-ghost:hover { background: #fff; color: var(--text); }

/* ============================ Footer ============================ */
.site-footer {
  background: var(--bg-alt);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer strong {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

/* ============================ Responsive ============================ */
@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 320px; }
  .services { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
}
@media (max-width: 520px) {
  .services { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
