:root {
  --primary: #C5A880;
  --primary-hover: #A98E69;
  --primary-soft: rgba(197, 168, 128, 0.12);
  --secondary: #1a1a1a;
  --bg: #FDFBF7;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6b6b6b;
  --border: #EAE5D9;
  --status-booked: #E74C3C;
  --status-pending: #F39C12;
  --status-available: #2ECC71;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.10);
  --font-heading: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;
  --font-brand: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text); margin: 0 0 .8rem; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--text-muted); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .3em;
  color: var(--primary); font-size: .75rem; margin-bottom: .8rem;
}
.section-title h2 { margin: 0 0 .6rem; }
.section-title p { max-width: 680px; margin: 0 auto; }

/* ====== Header (MIRA-inspired) ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.brand-img { width: 36px; height: 36px; object-fit: contain; display: none; }
.brand-img.with-logo-only { display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line-1 {
  font-family: var(--font-brand); font-size: 2.1rem; color: var(--primary); font-weight: 400;
  letter-spacing: .35em; padding-left: .35em; white-space: nowrap;
}
.brand-line-2 { display: none; }

.nav { display: flex; align-items: center; gap: 1.8rem; flex-wrap: nowrap; }
.nav a { color: var(--text); font-size: .76rem; position: relative; padding: .4rem 0; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: center; transition: transform .3s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-body); font-size: .9rem;
  color: var(--text); text-decoration: none; white-space: nowrap;
}
.header-phone svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.header-phone:hover { color: var(--primary); }
.btn-randevu {
  background: var(--primary); color: #fff; padding: 1rem 1.8rem; border-radius: 2px;
  text-transform: uppercase; letter-spacing: .25em; font-size: .72rem; font-weight: 500;
  transition: background-color .3s, transform .2s; white-space: nowrap;
}
.btn-randevu:hover { background: var(--primary-hover); color: #fff; transform: translateY(-1px); }

.lang-switch { display: inline-flex; align-items: center; gap: .25rem; font-size: .78rem; letter-spacing: .12em; }
.lang-switch a { padding: .3rem .3rem !important; color: var(--text-muted) !important; text-transform: uppercase; }
.lang-switch a.active { color: var(--primary) !important; font-weight: 600; }
.lang-switch a::after { display: none !important; }
.lang-divider { color: var(--border); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 1px; background: var(--text); margin: 7px 0; transition: .3s; }

@media (max-width: 1300px) {
  .nav { gap: 1.2rem; }
  .nav a { font-size: .72rem; }
}
@media (max-width: 1100px) {
  .header-phone { display: none; }
}
@media (max-width: 980px) {
  .header-cta .btn-randevu { display: none; }
  .nav-toggle { display: block; order: 3; }
  .nav { position: fixed; top: 90px; left: 0; right: 0; flex-direction: column;
    background: var(--bg); padding: 2rem 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--border);
    transform: translateY(-150%); transition: transform .3s ease; align-items: stretch; height: calc(100vh - 90px); overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
  .nav .lang-switch { justify-content: center; padding: 1rem 0; }
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; font-family: var(--font-body); font-weight: 500;
  border-radius: 4px; border: 1px solid transparent; cursor: pointer;
  transition: background-color .3s, color .3s, transform .2s, border-color .3s;
  text-decoration: none; font-size: 1rem;
}
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: #1a2735; color: #fff; }

/* ====== Hero (MIRA-inspired: dark centered) ====== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  color: #fff; overflow: hidden; text-align: center;
}
.hero-slider .hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s;
}
.hero-slider .hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: rgba(0,0,0,.25); color: #fff; border: 1px solid rgba(255,255,255,.2);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 1.8rem; line-height: 1; transition: background .3s, transform .2s;
  display: grid; place-items: center;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }
@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .hero-prev { left: .8rem; } .hero-next { right: .8rem; }
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease-out; }
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,10,.55), rgba(15,12,10,.78)); }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 1.5rem; }
.hero-content .eyebrow {
  color: var(--primary); letter-spacing: .5em; text-transform: uppercase;
  font-size: .78rem; margin-bottom: 1.5rem; display: inline-block; font-family: var(--font-body);
}
.hero h1 {
  color: #fff; margin-bottom: 1.5rem; font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 400; letter-spacing: -.01em; line-height: 1.08;
}
.hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn {
  text-transform: uppercase; letter-spacing: .25em; font-size: .78rem;
  padding: 1.1rem 2.2rem; border-radius: 0;
}
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-cta .btn-outline:hover { background: #fff; color: var(--text); border-color: #fff; }

.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .8rem; z-index: 3;
}
.hero-dots span {
  width: 36px; height: 2px; background: rgba(255,255,255,.3); transition: background .3s; cursor: pointer;
}
.hero-dots span.active { background: var(--primary); }
.hero-dots span:hover { background: rgba(255,255,255,.7); }

/* Decorative ornament under hero title */
.hero .h-ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 0 auto 1.5rem; max-width: 200px;
}
.hero .h-ornament::before, .hero .h-ornament::after {
  content: ''; flex: 1; height: 1px; background: var(--primary); opacity: .6;
}
.hero .h-ornament span { color: var(--primary); font-size: 1.2rem; }

.hero-mini {
  background: linear-gradient(180deg, var(--primary-soft), var(--bg));
  padding: 4rem 0 3rem; border-bottom: 1px solid var(--border);
}
.hero-mini h1 { margin-bottom: .5rem; }
.hero-mini .breadcrumb { color: var(--text-muted); font-size: .9rem; }

/* ====== Hall Cards ====== */
.halls-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.hall-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.hall-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hall-card-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; position: relative; }
.hall-card-img .cap-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.92); padding: .4rem 1rem; font-size: .8rem;
  border-radius: 100px; color: var(--text); font-weight: 500;
}
.hall-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.hall-card-body h3 { margin-bottom: .5rem; }
.hall-card-body p { flex: 1; }
.hall-card-body .actions { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* ====== Ornament divider ====== */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto 1.2rem; max-width: 200px; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: var(--primary); opacity: .6; }
.ornament-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

/* ====== Feature row ====== */
.features-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature { text-align: center; padding: 2rem 1rem; }
.feature-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-soft); display: grid; place-items: center; margin: 0 auto 1rem; color: var(--primary); font-size: 1.6rem; }

/* ====== Gallery ====== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: 6px; cursor: pointer; transition: transform .3s; overflow: hidden; }
.gallery-item:hover { transform: scale(1.02); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; z-index: 200; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 6px; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: 0; color: #fff; font-size: 2.2rem; cursor: pointer; }

/* ====== Forms ====== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: .8rem 0; outline: none; transition: border-color .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--primary); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 3rem; box-shadow: var(--shadow-md); }
@media (max-width: 700px) { .form-card { padding: 1.8rem; } }

/* ====== Calendar ====== */
.calendar { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.calendar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.calendar-head h4 { margin: 0; }
.calendar-nav { background: var(--primary-soft); border: 0; color: var(--primary); padding: .5rem .9rem; border-radius: 4px; cursor: pointer; font-family: inherit; }
.calendar-nav:hover { background: var(--primary); color: #fff; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-dow { text-align: center; font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; padding: .5rem 0; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 6px; font-size: .95rem; background: #f7f3eb; color: var(--text); position: relative; }
.cal-day.empty { background: transparent; }
.cal-day.past { color: #c5c0b3; background: #faf7f0; }
.cal-day.available { background: rgba(46,204,113,.12); color: #1f7a4d; font-weight: 600; }
.cal-day.booked { background: rgba(231,76,60,.14); color: #aa2c20; font-weight: 600; }
.cal-day.pending { background: rgba(243,156,18,.16); color: #8a5a06; font-weight: 600; }
.cal-day.today { outline: 2px solid var(--primary); outline-offset: 1px; }
.cal-legend { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; font-size: .85rem; color: var(--text-muted); }
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .4rem; vertical-align: middle; }

.status-badge { display: inline-block; padding: .25rem .7rem; font-size: .75rem; border-radius: 100px; font-weight: 500; }
.status-badge.available { background: rgba(46,204,113,.15); color: #1f7a4d; }
.status-badge.booked { background: rgba(231,76,60,.15); color: #aa2c20; }
.status-badge.pending { background: rgba(243,156,18,.18); color: #8a5a06; }

/* ====== Flash ====== */
.flash { padding: 1rem 1.5rem; text-align: center; }
.flash-success { background: rgba(46,204,113,.12); color: #1f7a4d; border-bottom: 1px solid rgba(46,204,113,.3); }
.flash-error { background: rgba(231,76,60,.12); color: #aa2c20; border-bottom: 1px solid rgba(231,76,60,.3); }
.flash-info { background: var(--primary-soft); color: var(--primary-hover); border-bottom: 1px solid var(--primary); }

/* ====== Footer ====== */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.82); margin-top: 5rem; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; padding-bottom: 3rem; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); margin-bottom: 1.2rem; }
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: .25rem 0; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { color: rgba(255,255,255,.7); }
.socials { display: flex; gap: 1rem; margin-top: .5rem; flex-wrap: wrap; }
.socials a { color: var(--primary); padding: .35rem 0; }
.copyright { text-align: center; padding: 1.5rem 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(255,255,255,.5); }

/* ====== Split / about ====== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split-img { aspect-ratio: 4 / 5; background-size: cover; background-position: center; border-radius: 8px; box-shadow: var(--shadow-lg); }

/* ====== Map ====== */
.map-wrap iframe { width: 100%; border: 0; border-radius: 8px; }

/* ====== Availability Checker (dolu/boş) ====== */
.availability-checker {
  background: linear-gradient(180deg, #fff, #faf6ee);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.availability-checker .checker-form {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: end;
}
@media (max-width: 700px) { .availability-checker .checker-form { grid-template-columns: 1fr; } }
.availability-results {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.availability-result-card {
  background: #fff; border-radius: 10px; padding: 1.5rem; border: 2px solid;
  display: flex; flex-direction: column; gap: .8rem;
}
.availability-result-card.is-available { border-color: var(--status-available); background: linear-gradient(180deg, #fff, rgba(46,204,113,.05)); }
.availability-result-card.is-booked    { border-color: var(--status-booked); background: linear-gradient(180deg, #fff, rgba(231,76,60,.05)); }
.availability-result-card.is-pending   { border-color: var(--status-pending); background: linear-gradient(180deg, #fff, rgba(243,156,18,.05)); }
.availability-result-card .arc-head { display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.availability-result-card .arc-hall { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text); }
.availability-result-card .arc-cap { color: var(--text-muted); font-size: .85rem; }
.availability-result-card .arc-status {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; border-radius: 100px; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
}
.arc-status .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.is-available .arc-status { background: rgba(46,204,113,.15); color: #1f7a4d; }
.is-available .arc-status .dot { background: #2ECC71; box-shadow: 0 0 0 4px rgba(46,204,113,.2); }
.is-booked    .arc-status { background: rgba(231,76,60,.15); color: #aa2c20; }
.is-booked    .arc-status .dot { background: #E74C3C; }
.is-pending   .arc-status { background: rgba(243,156,18,.18); color: #8a5a06; }
.is-pending   .arc-status .dot { background: #F39C12; }
.availability-result-card .arc-action { margin-top: .3rem; }
.checker-date-display {
  text-align: center; padding: 1rem; background: var(--primary-soft); color: var(--primary-hover);
  font-family: var(--font-heading); font-size: 1.2rem; border-radius: 8px; margin-bottom: 1rem;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: -1.5rem; left: 1.5rem; font-size: 6rem; font-family: var(--font-heading); color: var(--primary); opacity: .25; line-height: 1; }
.testimonial-card .stars { color: var(--primary); margin-bottom: .8rem; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card .content { font-style: italic; color: var(--text); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.6; }
.testimonial-card .author { display: flex; align-items: center; gap: .9rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-card .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-soft); display: grid; place-items: center; color: var(--primary); font-family: var(--font-heading); font-weight: 600; }
.testimonial-card .author-info { line-height: 1.4; }
.testimonial-card .author-info strong { color: var(--text); font-family: var(--font-heading); }
.testimonial-card .author-info span { color: var(--text-muted); font-size: .85rem; display: block; }
.rating-input { display: inline-flex; gap: .25rem; direction: rtl; }
.rating-input input { display: none; }
.rating-input label { font-size: 1.6rem; color: #ccc; cursor: pointer; transition: color .2s; padding: 0 2px; }
.rating-input label:hover, .rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--primary); }

/* ====== Floating WhatsApp ====== */
.fab-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s; font-size: 1.6rem; text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s; font-size: 1.6rem; text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
