/* =================================================
   Blaskan tarzı: beyaz zemin, ince çizgiler, büyük
   görseller, sade editoryal tipografi
   ================================================= */

:root {
  --bg: #ffffff;
  --text: #111111;
  --text-soft: #6b6b6b;
  --line: #e6e6e6;
  --accent: #111111;        /* butonlar için koyu */
  --accent-soft: #4a5d4e;   /* salonun yeşiline ince gönderme (linkler) */
  --font: 'Inter', 'Segoe UI', sans-serif;
}

/* ================= TEMEL ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }

.center { text-align: center; }

/* Küçük gri etiketler (kategori/meta) */
.meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ================= BUTONLAR & LİNKLER ================= */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--text);
  background: transparent;
  color: var(--text);
  transition: all 0.25s ease;
}
.btn:hover { background: var(--text); color: #fff; }

.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #333; border-color: #333; }

.link-arrow {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--accent-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.link-arrow:hover { border-color: var(--accent-soft); }

/* ================= ÜST MENÜ ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.logo em { font-style: normal; font-weight: 400; color: var(--text-soft); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-soft); }

.nav-cta { padding: 9px 22px; font-size: 0.82rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* ================= HERO ================= */
.hero { padding: 40px 0 0; }

.hero-figure img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
}

.hero-caption {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 0 8px;
  text-align: center;
}
.hero-caption h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 14px 0 16px; }
.lead { font-size: 1.08rem; color: var(--text-soft); max-width: 560px; margin: 0 auto 28px; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ================= BÖLÜMLER ================= */
.section { padding: 88px 0 0; }
.section-tight { padding-top: 76px; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--text);
  margin: 18px auto 0;
}

.note { text-align: center; color: var(--text-soft); font-size: 0.92rem; margin: -28px 0 40px; }

/* ================= HİZMET KARTLARI ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.card-image { display: block; overflow: hidden; }
.card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 20px 4px 0; }
.card-body .meta { margin-bottom: 8px; }
.card-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card-body p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 12px; }

.price { font-size: 0.9rem; font-weight: 600; color: var(--accent-soft); }

/* ================= FİYAT LİSTESİ ================= */
.pricelist { list-style: none; margin-bottom: 44px; }
.pricelist li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.pricelist span { font-weight: 500; }
.pricelist i {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.pricelist b { font-weight: 600; }

/* ================= GALERİ ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery img:hover { opacity: 0.88; }
.gallery .tall { grid-row: span 2; }

.gallery-note { margin-top: 28px; color: var(--text-soft); font-size: 0.95rem; }

/* ================= İLETİŞİM ================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-details dl { margin-bottom: 32px; }
.contact-details dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 22px;
}
.contact-details dt:first-child { margin-top: 0; }
.contact-details dd { font-size: 1rem; margin-top: 4px; }
.contact-details dd a { color: var(--accent-soft); font-weight: 500; }
.contact-details dd a:hover { text-decoration: underline; }

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(0.5);
}

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { font-weight: 700; }
.footer-logo em { font-style: normal; font-weight: 400; color: var(--text-soft); }
.footer-copy { font-size: 0.82rem; color: var(--text-soft); }

/* ================= MOBİL SABİT BUTON ================= */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  background: var(--text);
  color: #fff;
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact-map iframe { min-height: 320px; }
}

@media (max-width: 640px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 300px;
    background: #fff;
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transition: right 0.35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
  }
  .nav.open { right: 0; }
  .nav-link { font-size: 1.1rem; }
  .menu-toggle { display: flex; z-index: 101; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 20px; }
  .hero-figure img { height: 46vh; }

  .cards { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }

  .section { padding-top: 64px; }
  .floating-cta { display: block; }
}
