/* ── Design Tokens (Framer exact) ──────────────────────────── */
:root {
  --c-900: #123b20;
  --c-700: #395c3b;
  --c-600: #486c49;
  --c-400: #6d8b5e;
  --c-100: #e4f0dd;
  --c-50:  #f8fbf4;
  --c-75:  #edf5e8;
  --c-white: #fff;

  --font-display: "Cormorant", "Cormorant Placeholder", serif;
  --font-body:    "Satoshi", "Satoshi Placeholder", sans-serif;

  --container: 1120px;
  --pad-x: 32px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,p,figure { margin: 0; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--c-50);
  color: var(--c-600);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }

.btn-dark {
  background: var(--c-900);
  color: var(--c-white);
  padding: 14px 24px;
}

.btn-outline {
  background: var(--c-white);
  color: var(--c-900);
  border: 1px solid #395c3b2e;
  padding: 14px 24px;
}

.btn-white {
  background: var(--c-white);
  color: var(--c-900);
  border: 1px solid #395c3b2e;
  padding: 12px 22px;
  font-size: 15px;
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  border: 1px solid #ffffff29;
  padding: 12px 22px;
  font-size: 15px;
}

/* ── NAV ─────────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-inner {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  padding: 28px var(--pad-x);
  background: #f8fbf4d1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1em;
  color: var(--c-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-700);
  transition: color .15s;
}
.nav-links a:hover { color: var(--c-900); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-900);
  color: var(--c-white);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-900);
  border-radius: 2px;
}

/* ── Mobile Menu ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-50);
  flex-direction: column;
  align-items: flex-start;
  padding: 40px var(--pad-x);
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--c-900);
}
/* .btn-dark inside the mobile menu must keep its own white-on-dark styling —
   otherwise the broader `.mobile-menu a` rule above (higher specificity than
   the single-class `.btn-dark`) repaints its text the same dark green as its
   background, making the "Teklif Al" button label invisible. */
.mobile-menu a.btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu a.btn-dark {
  color: var(--c-white);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--c-700);
  cursor: pointer;
  margin-bottom: 12px;
  padding: 4px 8px;
}

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-50);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: var(--container);
  padding: 58px var(--pad-x) 92px;
}

/* 3D Sage Orb (Framer .framer-mortmm) */
.hero-orb {
  position: absolute;
  top: 36px;
  right: 42px;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 32% 28%, #ffffffeb 0%, #e4f0dde6 38%, #6d8b5e47 100%);
  box-shadow: inset -24px -28px 42px #123b201f, 0 32px 70px #123b2024;
  opacity: .82;
  z-index: 0;
  pointer-events: none;
}

.hero-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 1px solid #395c3b29;
  border-radius: 100px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1em;
  text-transform: uppercase;
  color: var(--c-400);
}

.hero-tag-leaf { flex-shrink: 0; }

/* 3D Botanical Card (Framer .framer-1s5om6l) */
.hero-botanical {
  position: absolute;
  top: 116px;
  right: 438px;
  width: 112px;
  height: 112px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  background: linear-gradient(145deg, #ffffffeb 0%, #e4f0ddc7 100%);
  border: 1px solid #ffffffd9;
  border-radius: 28px;
  box-shadow: 0 30px 70px #123b202e, inset 0 1px #ffffffe6;
  pointer-events: none;
}

.hero-botanical span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  color: var(--c-900);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96em;
  color: var(--c-900);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7em;
  color: var(--c-600);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Opening Media: image + garden note (Framer .framer-rk0o23) */
.hero-media {
  flex: 0 0 auto;
  width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  width: 450px;
  height: 600px;
  border-radius: 260px 260px 34px 34px;
  border: 10px solid var(--c-white);
  overflow: hidden;
  box-shadow: 0 28px 72px #123b202e, inset 0 2px #ffffffb3;
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Garden Note (Framer .framer-1qmfoi4) */
.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 370px;
  max-width: 100%;
  padding: 14px 18px;
  background: #ffffffdb;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid #395c3b29;
  border-radius: 22px;
  box-shadow: 0 24px 60px #123b2029, inset 0 1px #ffffffe6;
}

.hero-note svg { flex-shrink: 0; }

.hero-note p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45em;
  color: var(--c-700);
  text-wrap: balance;
}

/* ── ORG ALANLARI ─────────────────────────────────────────────── */
#org {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-50);
}

/* white rounded panel (Framer .framer-4gesae) */
.org-inner {
  width: 100%;
  max-width: var(--container);
  background: var(--c-white);
  border-radius: 36px;
  padding: 84px var(--pad-x) 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.org-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  text-align: center;
}

.org-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.org-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05em;
  color: var(--c-900);
}

.org-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65em;
  color: var(--c-600);
  max-width: 480px;
  text-align: center;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  width: 100%;
}

/* light cards (Framer .framer-12no6a / .framer-4bnl6i) */
.org-card {
  background: var(--c-50);
  border: 1px solid #395c3b24;
  border-radius: 28px;
  padding: 24px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 22px 54px #123b2014;
}

/* dark middle card (Framer .framer-ie0fxm) */
.org-card--dark {
  background: var(--c-900);
  border: none;
  box-shadow: 0 28px 70px #123b2038;
}

/* icon circle 46px */
.org-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 100px;
  background: var(--c-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.org-card-icon--dark {
  background: #ffffff14;
  border: 1px solid #ffffff29;
}

.org-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.org-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05em;
  color: var(--c-900);
}

.org-card--dark .org-card-title { color: #fff; }

.org-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--c-600);
}

.org-card--dark .org-card-desc { color: #ffffffc2; }

.org-card-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25em;
  color: var(--c-400);
}

.org-card--dark .org-card-detail { color: var(--c-100); }

/* ── MEKAN ─────────────────────────────────────────────────────── */
#mekan {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-50);
}

.mekan-inner {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--container);
  padding: 96px var(--pad-x);
}

/* Venue Image Stack (Framer .framer-gc8k59) */
.mekan-stack {
  flex: 0 0 auto;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Reception Image (Framer .framer-qyr9bz) */
.mekan-img-wrap {
  width: 100%;
  height: 430px;
  border-radius: 34px;
  border: 10px solid var(--c-white);
  overflow: hidden;
  box-shadow: 0 22px 60px #123b201f;
}

.mekan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Venue Highlights (Framer .framer-1fq902t) */
.mekan-highlights {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: var(--c-white);
  border: 1px solid #395c3b24;
  border-radius: 24px;
}

.mekan-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px;
  background: var(--c-50);
  border-radius: 16px;
}

.mekan-stat-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1em;
  color: var(--c-900);
}

.mekan-stat-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  color: var(--c-400);
}

.mekan-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mekan-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.mekan-heading {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.04em;
  color: var(--c-900);
}

.mekan-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7em;
  color: var(--c-600);
  max-width: 440px;
}

.mekan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mekan-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5em;
  color: var(--c-600);
}

.mekan-feature-item svg { flex-shrink: 0; }

/* ── ÜÇ AN ─────────────────────────────────────────────────────── */
#uc-an {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-50);
  overflow: hidden;
}

.uc-an-inner {
  width: 100%;
  max-width: var(--container);
  padding: 88px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.uc-an-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.uc-an-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.uc-an-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05em;
  color: var(--c-900);
}

.uc-an-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65em;
  color: var(--c-600);
  text-align: center;
}

.uc-an-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.uc-an-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.uc-an-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.uc-an-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 112px;
  background: linear-gradient(145deg, #ffffffeb 0%, #e4f0ddc7 100%);
  border-top: 1px solid #ffffffd9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px 22px;
  gap: 4px;
}

.uc-an-label-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.uc-an-label-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-900);
  line-height: 1em;
}

/* ── PLANLAMA ─────────────────────────────────────────────────── */
#planlama {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-75);
}

.planlama-inner {
  width: 100%;
  max-width: var(--container);
  padding: 88px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* no box wrapper — content sits directly on green bg */

.planlama-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.planlama-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.planlama-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05em;
  color: var(--c-900);
}

.planlama-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65em;
  color: var(--c-600);
  text-align: center;
  max-width: 460px;
}

.planlama-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  width: 100%;
}

.planlama-step {
  background: var(--c-white);
  border: 1px solid #395c3b18;
  border-radius: 22px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.planlama-step-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.planlama-step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-900);
  line-height: 1em;
  letter-spacing: 0.01em;
}

.planlama-step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65em;
  color: var(--c-700);
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
#contact {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-50);
}

.contact-inner {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--container);
  padding: 34px var(--pad-x) 44px;
  border-top: 1px solid #395c3b24;
}

.contact-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.contact-heading {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.04em;
  color: var(--c-900);
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--c-600);
  max-width: 420px;
}

/* Right column: orb + card stacked */
.contact-right {
  flex: 0 0 auto;
  width: 360px;
  position: relative;
  padding-top: 90px; /* room for orb peeking above card */
}

/* 3D sphere (Framer exact) */
.contact-orb {
  position: absolute;
  top: -10px;
  right: 50px;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 35% 30%, #ffffffe6 0%, #e4f0ddd6 44%, #123b202e 100%);
  box-shadow: inset -20px -24px 36px #123b201f, 0 24px 60px #123b2024;
  opacity: .75;
  z-index: 0;
  pointer-events: none;
}

/* Dark green card */
.contact-card {
  position: relative;
  z-index: 1;
  background: var(--c-900);
  border-radius: 30px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 26px 60px #123b2038, inset 0 1px #ffffff29;
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
}

.contact-card-row svg {
  flex-shrink: 0;
  opacity: .65;
}

/* WhatsApp button — white bg inside dark card */
.contact-card-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-white);
  color: var(--c-900);
  border-radius: 100px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
  width: 100%;
}
.contact-card-wa:hover { opacity: .9; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
#footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-900);
}

.footer-inner {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  padding: 36px var(--pad-x);
  border-top: 1px solid #ffffff14;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }

/* ── GALERI (admin-managed photos) ──────────────────────────── */
#galeri {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--c-75);
}

.galeri-inner {
  width: 100%;
  max-width: var(--container);
  padding: 88px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.galeri-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.galeri-sec-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-400);
}

.galeri-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05em;
  color: var(--c-900);
}

.galeri-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65em;
  color: var(--c-600);
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 16px;
  width: 100%;
}

.galeri-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--c-100);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.galeri-item:hover img { transform: scale(1.04); }

.galeri-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-400);
  background: var(--c-100);
}

/* ── Lightbox ────────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(18,59,32,.92);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 56px; }
  .hero-media, .hero-img-wrap { width: 380px; }
  .hero-img-wrap { height: 520px; }
  .hero-botanical { right: 360px; }
  .mekan-stack { width: 380px; }
  .mekan-img-wrap { height: 340px; }
  .mekan-heading { font-size: 44px; }
  .contact-heading { font-size: 42px; }
}

@media (max-width: 809px) {
  :root { --pad-x: 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    flex-direction: column;
    padding: 42px var(--pad-x) 72px;
    gap: 44px;
  }
  .hero-text { align-items: flex-start; gap: 18px; }
  .hero-h1 { font-size: 44px; }
  .hero-desc { font-size: 16px; }
  .hero-orb { top: 20px; right: 16px; width: 130px; height: 130px; }
  .hero-botanical { display: none; }
  .hero-media { width: 100%; gap: 14px; }
  .hero-img-wrap {
    width: 100%;
    height: 520px;
    box-shadow: 0 18px 46px #123b2024, inset 0 2px #ffffffb3;
  }
  .hero-note { width: 100%; }

  .org-inner { padding: 72px 28px 78px; }
  .org-grid { grid-template-columns: 1fr; gap: 16px; }
  .org-card { min-height: 0; padding: 22px; }
  .org-heading { font-size: 36px; }

  .mekan-inner {
    flex-direction: column;
    padding: 76px var(--pad-x);
    gap: 38px;
  }
  .mekan-stack { width: 100%; }
  .mekan-img-wrap { height: 390px; }
  .mekan-heading { font-size: 40px; }

  .uc-an-grid { grid-template-columns: 1fr; }
  .uc-an-item { aspect-ratio: 16/9; }
  .uc-an-heading { font-size: 36px; }

  .planlama-box { padding: 36px 24px; }
  .planlama-steps { grid-template-columns: 1fr; }
  .planlama-heading { font-size: 34px; }

  .contact-inner {
    flex-direction: column;
    padding: 50px var(--pad-x) 40px;
    gap: 40px;
  }
  .contact-heading { font-size: 38px; }
  .contact-right { width: 100%; max-width: 360px; padding-top: 80px; }
  .contact-orb { right: 30px; width: 140px; height: 140px; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

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

@media (max-width: 480px) {
  .galeri-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 34px; }
  .hero-img-wrap { border-radius: 190px 190px 28px 28px; height: 430px; }
  .mekan-img-wrap { border-radius: 28px; height: 300px; }
  .mekan-highlights { flex-direction: column; align-items: stretch; }
  .org-heading,
  .uc-an-heading,
  .galeri-heading,
  .planlama-heading,
  .contact-heading { font-size: 28px; }
  .mekan-heading { font-size: 32px; }
}
