@charset "UTF-8";
/* =====================================================
   ÜMRANİYE MASAJ & SPA - Stil Dosyası
   Renk temasını değiştirmek için :root altındaki
   --accent değerlerini düzenlemeniz yeterli.
   ===================================================== */

:root {
  /* Marka rengi - MASAJ & SPA: mürdüm/eflatun + altın */
  --accent: #7e5c73;
  --accent-dark: #5c4155;
  --accent-light: #f1e9ef;
  --gold: #c8a86a;

  --wa: #25d366;
  --wa-dark: #1da851;

  --ink: #2a2a28;
  --muted: #6f7370;
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --line: #e7e4dd;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --radius-sm: 10px;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 12px 28px rgba(126,92,115,0.4); }
.btn--whatsapp { background: var(--wa); color: #fff; }
.btn--whatsapp:hover { background: var(--wa-dark); box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline:hover { background: #fff; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--accent-dark); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: var(--accent-dark); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--phone {
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 10px 18px;
  font-weight: 500;
}
.btn--phone:hover { background: var(--accent); color: #fff; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 46px; height: 46px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
}
.brand__text {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  white-space: nowrap;
}
.brand__text span { color: var(--accent); font-weight: 600; }
.header:not(.scrolled) .brand__text { color: #fff; }
.header:not(.scrolled) .brand__text span { color: var(--gold); }

.nav__list { display: flex; gap: 30px; }
.nav__link {
  font-weight: 400;
  font-size: 0.98rem;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.header.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.header.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../assets/hero.jpg") center/cover no-repeat;
  color: #fff;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,40,30,0.78) 0%, rgba(30,40,30,0.45) 60%, rgba(30,40,30,0.25) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 680px; padding-top: 80px; padding-bottom: 60px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero__subtitle {
  font-size: 1.12rem;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.92);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero__badges span { font-weight: 300; }
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  opacity: 0.8;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* ============ FEATURES ============ */
.features {
  background: var(--accent-dark);
  color: #fff;
  padding: 34px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature { display: flex; align-items: center; gap: 14px; }
.feature svg { width: 34px; height: 34px; flex-shrink: 0; color: var(--gold); }
.feature strong { display: block; font-weight: 500; font-size: 1rem; }
.feature span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section__lead { color: var(--muted); font-size: 1.05rem; }

/* ============ SERVICES GRID ============ */
.services { background: var(--bg-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img { height: 220px; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.card__body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.card__link { color: var(--accent); font-weight: 500; font-size: 0.95rem; transition: gap 0.2s; }
.card__link:hover { color: var(--accent-dark); }

/* ============ ABOUT ============ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -22px; right: -14px;
  background: var(--accent);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.about__badge strong { font-family: var(--font-head); font-size: 2rem; display: block; line-height: 1; }
.about__badge span { font-size: 0.8rem; opacity: 0.9; }
.about__content .section__title, .about__content .section__eyebrow { text-align: left; }
.about__content > p { color: var(--muted); margin-bottom: 24px; }
.about__list { margin-bottom: 30px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; }
.about__list span {
  width: 24px; height: 24px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.about__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ GALLERY ============ */
.gallery { background: var(--bg-soft); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.08); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  color: #fff;
  padding: 60px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 6px; }
.cta-banner p { opacity: 0.9; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 44px;
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; gap: 26px; }
.contact__row { display: flex; gap: 16px; align-items: flex-start; }
.contact__row svg {
  width: 26px; height: 26px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact__row span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__row a, .contact__row p { font-size: 1.08rem; font-weight: 400; color: var(--ink); }
.contact__row a:hover { color: var(--accent); }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ============ FOOTER ============ */
.footer { background: #23241f; color: rgba(255,255,255,0.75); padding-top: 54px; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand strong { color: #fff; font-family: var(--font-head); font-size: 1.3rem; }
.footer__brand p { font-size: 0.85rem; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.95rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  transition: 0.25s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer__bottom p { font-size: 0.85rem; text-align: center; }

/* ============ FLOATING BUTTONS ============ */
.floaties {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floaty {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
  position: relative;
}
.floaty:hover { transform: scale(1.1); }
.floaty--whatsapp { background: var(--wa); }
.floaty--call { background: var(--accent); }
.floaty--whatsapp::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .about__media img { height: 400px; }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 100px 30px 40px;
    transition: right 0.35s ease;
    z-index: 99;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 6px; }
  .nav__link { color: var(--ink); font-size: 1.1rem; display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; z-index: 100; }
  .header__actions .btn--phone span { display: none; }
  .btn--phone { padding: 10px; }

  .section { padding: 64px 0; }
  .services__grid, .gallery__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .about__badge { right: 14px; }
  .floaty { width: 54px; height: 54px; }
}

@media (max-width: 460px) {
  .features__grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* Menü açıkken arka planı kilitleme yardımcı sınıfı */
body.no-scroll { overflow: hidden; }

/* Menü arka plan karartma */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: 0.3s;
  z-index: 98;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ===== SEO PAGES START (seo/build.py) ===== */
.page-hero { background: linear-gradient(120deg, var(--accent-dark), var(--accent)); color: #fff; padding: 140px 0 60px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.12; margin: 14px 0 12px; }
.page-hero__lead { max-width: 720px; font-size: 1.05rem; color: rgba(255,255,255,0.92); margin-bottom: 24px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.breadcrumb li::marker { content: ""; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: 0.7; }
.breadcrumb a { color: #fff; }
.seo-page .header:not(.scrolled) .brand__text { color: #fff; }
.seo-main { padding: 60px 0 80px; }
.seo-container { max-width: 900px; }
.seo-prose h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; margin: 38px 0 12px; }
.seo-prose p { color: var(--muted); margin-bottom: 14px; font-size: 1.02rem; }
.seo-intro { font-size: 1.1rem !important; color: var(--ink) !important; }
.seo-list { display: grid; gap: 10px; margin: 8px 0 10px; }
.seo-list li { padding-left: 26px; position: relative; }
.seo-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.seo-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 10px 0 6px; }
.seo-service { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.seo-service h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.seo-service p { font-size: 0.92rem; margin-bottom: 10px; }
.seo-faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 10px; background: #fff; }
.seo-faq__item summary { cursor: pointer; font-weight: 500; color: var(--ink); }
.seo-faq__item p { margin: 10px 0 0; }
.seo-cta { margin: 44px 0; padding: 30px; border-radius: var(--radius); background: linear-gradient(120deg, var(--accent-dark), var(--accent)); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.seo-cta h2 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 4px; }
.seo-cta p { opacity: 0.9; }
.seo-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.seo-neighbors h2 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 12px; }
.seo-neighbors__links, .seo-areas__chips, .seo-hub__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-neighbors__links a, .seo-areas__chips a, .seo-hub__item { padding: 9px 16px; border-radius: 50px; background: var(--accent-light); color: var(--accent-dark); font-size: 0.92rem; font-weight: 500; transition: 0.2s; }
.seo-neighbors__links a:hover, .seo-areas__chips a:hover, .seo-hub__item:hover { background: var(--accent); color: #fff; }
.seo-neighbors__links a.is-hub { background: transparent; border: 1px solid var(--line); }
.seo-hub__group { margin-bottom: 18px; }
.seo-areas { background: var(--bg); }
.seo-areas__chips { justify-content: center; max-width: 960px; margin: 0 auto; }
.seo-areas__more { text-align: center; margin-top: 26px; }
@media (max-width: 720px) {
  .page-hero { padding: 110px 0 44px; }
  .seo-services { grid-template-columns: 1fr; }
  .seo-cta { flex-direction: column; text-align: center; }
}
/* ===== SEO PAGES END ===== */
