:root {
  --bg: #faf7f2;
  --bg-alt: #f1ebe2;
  --ink: #2b2622;
  --muted: #7a6f65;
  --accent: #a0724a;
  --accent-dark: #7e5634;
  --line: #e2d8cb;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--accent); }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: .8rem;
}

/* Butonlar */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: .9rem 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { background: transparent; border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-small { padding: .55rem 1.2rem; font-size: .75rem; }
.link { color: var(--accent); font-weight: 500; font-size: .9rem; }
.link:hover { color: var(--accent-dark); }

/* Menü */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  color: var(--white);
  transition: background .35s, padding .35s, color .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(250, 247, 242, .96);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: .9rem 5vw;
  box-shadow: 0 1px 0 var(--line);
}
.logo { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: .02em; }
.logo span { font-weight: 400; font-style: italic; font-size: 1.1rem; opacity: .85; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: .9rem; }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: currentColor; transition: width .3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: .3s; }

/* Giriş */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5vw 4rem;
  color: var(--white);
  background:
    linear-gradient(to right, rgba(20, 15, 10, .78), rgba(20, 15, 10, .3)),
    url("images/hero-vadi.jpg") center / cover no-repeat;
}
.hero-content { max-width: 640px; }
.hero .eyebrow { color: #e8cfb4; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 400; margin-bottom: 1.5rem; }
.hero h1 em { color: #e8cfb4; }
.hero-text { font-size: 1.15rem; max-width: 480px; margin-bottom: 2.4rem; opacity: .92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Bölümler */
.section { padding: 7rem 5vw; }
.section-head { text-align: center; margin-bottom: 3.5rem; }

/* Hakkımızda */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.stats strong { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 500; color: var(--accent); line-height: 1; }
.stats span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* Odalar */
.rooms { background: var(--bg-alt); }
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1300px; margin: 0 auto; }
.room { background: var(--white); border-radius: var(--radius); overflow: hidden; transition: transform .4s, box-shadow .4s; }
.room:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(60, 40, 20, .1); }
.room img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room-body { padding: 1.8rem; }
.room-body > p { color: var(--muted); margin: .4rem 0 1rem; }
.room ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.room li { font-size: .75rem; letter-spacing: .05em; padding: .25rem .7rem; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); }
.room-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.price { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.price small { font-family: var(--sans); font-size: .8rem; font-weight: 300; color: var(--muted); }

/* Olanaklar */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; max-width: 1100px; margin: 0 auto; }
.amenity { text-align: center; }
.amenity svg { width: 44px; height: 44px; fill: none; stroke: var(--accent); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.amenity h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.amenity p { color: var(--muted); font-size: .95rem; }

/* Galeri */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 1rem;
  max-width: 1300px; margin: 0 auto;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); cursor: zoom-in; transition: opacity .3s; }
.gallery-grid img:hover { opacity: .85; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 15, 10, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; cursor: zoom-out;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 90vh; border-radius: var(--radius); }

/* Yorumlar */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
blockquote {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic; line-height: 1.5;
  padding: 2.2rem; background: var(--white); border-radius: var(--radius); border-top: 3px solid var(--accent);
}
cite { display: block; margin-top: 1.2rem; font-family: var(--sans); font-style: normal; font-size: .85rem; color: var(--muted); letter-spacing: .05em; }

/* Rezervasyon */
.booking {
  background:
    linear-gradient(rgba(30, 22, 16, .6), rgba(30, 22, 16, .6)),
    url("images/nehir-manzara.jpg") center / cover fixed;
}
.booking-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--bg); border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem;
  padding: 3.5rem;
}
.booking-intro p:last-child { color: var(--muted); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.booking-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.booking-form .full { grid-column: 1 / -1; }
.booking-form input, .booking-form select, .booking-form textarea {
  font: inherit; font-size: 1rem; text-transform: none; letter-spacing: normal; color: var(--ink);
  padding: .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  transition: border-color .3s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--accent); }

/* İletişim */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; max-width: 1300px; margin: 0 auto; align-items: stretch; }
.contact-info p { margin-bottom: 1.3rem; color: var(--muted); }
.contact-info strong { color: var(--ink); font-weight: 500; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-info a:hover { color: var(--accent); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; border-radius: var(--radius); filter: grayscale(.4) sepia(.15); }

/* Alt bilgi */
.footer { background: var(--ink); color: #cfc4b8; text-align: center; padding: 3rem 5vw; }
.footer .logo { color: var(--white); display: inline-block; margin-bottom: .6rem; }
.footer p { font-size: .85rem; }

/* WhatsApp butonu */
.wa-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* Kaydırınca beliren animasyon */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Mobil */
@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 2; }
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--bg); color: var(--ink); font-size: 1.2rem;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; }
  .nav.open { color: var(--ink); }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 5rem 1rem; }
  .hero { padding: 7rem 1rem 3rem; }
  .nav, .nav.scrolled { padding-left: 1rem; padding-right: 1rem; }
  .about, .contact, .booking-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-card { padding: 2rem 1.3rem; }
  .booking { background-attachment: scroll; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .stats { gap: 1.5rem; }
}
@media (max-width: 520px) {
  .booking-form { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 2; }
}

/* Ek düzenlemeler */
.room-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review-score { text-align: center; margin-top: 2.5rem; color: var(--muted); }
.review-score strong { color: var(--ink); font-weight: 500; }
.policy { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .9rem; line-height: 1.9; }

/* SSS */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.faq-item summary { cursor: pointer; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-family: var(--sans); font-weight: 300; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); margin-top: .7rem; }
.footer-nap { font-style: normal; font-size: .85rem; margin-bottom: .6rem; opacity: .85; }
.footer-nap a:hover { color: var(--white); }

/* Dil değiştirme */
.lang-switch { font-size: .85rem; padding: .3rem .7rem; border: 1px solid currentColor; border-radius: 20px; opacity: .9; }
.nav-links a.lang-switch::after { display: none; }

/* Arapça (sağdan sola) */
[lang="ar"] { --serif: "Amiri", Georgia, serif; --sans: "Tajawal", system-ui, sans-serif; }
[lang="ar"] body { font-weight: 400; line-height: 1.9; }
[lang="ar"] .lang-switch[lang="tr"] { font-family: "Jost", system-ui, sans-serif; }
[lang="ar"] .logo, [lang="ar"] .footer .logo { font-family: "Cormorant Garamond", Georgia, serif; direction: ltr; }
[dir="rtl"] .eyebrow, [dir="rtl"] .btn, [dir="rtl"] .stats span,
[dir="rtl"] .booking-form label, [dir="rtl"] .contact-info strong, [dir="rtl"] cite { letter-spacing: 0; text-transform: none; }
[dir="rtl"] .eyebrow { font-size: .9rem; }
[dir="rtl"] .hero {
  background:
    linear-gradient(to left, rgba(20, 15, 10, .78), rgba(20, 15, 10, .3)),
    url("images/hero-vadi.jpg") center / cover no-repeat;
}
[dir="rtl"] .hero h1 { font-weight: 700; line-height: 1.35; }
[dir="rtl"] h2 { line-height: 1.4; }
[dir="rtl"] .wa-float { right: auto; left: 1.5rem; }
[dir="rtl"] .nav-links a:not(.btn)::after { left: auto; right: 0; }
[dir="rtl"] .booking-form input[type="date"] { text-align: right; }

/* Telefonda hafif görseller */
@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(to right, rgba(20, 15, 10, .78), rgba(20, 15, 10, .3)),
      url("images/hero-vadi-800.jpg") center / cover no-repeat;
  }
  [dir="rtl"] .hero {
    background:
      linear-gradient(to left, rgba(20, 15, 10, .78), rgba(20, 15, 10, .3)),
      url("images/hero-vadi-800.jpg") center / cover no-repeat;
  }
  .booking {
    background:
      linear-gradient(rgba(30, 22, 16, .6), rgba(30, 22, 16, .6)),
      url("images/nehir-manzara-800.jpg") center / cover;
  }
}

/* Gezilecek yerler */
.section-intro { max-width: 640px; margin: 0 auto; color: var(--muted); }
.place-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.place { background: var(--white); border-radius: var(--radius); padding: 1.8rem; border-top: 3px solid var(--accent); }
.place-tag { display: inline-block; font-size: .75rem; color: var(--accent); border: 1px solid var(--line); border-radius: 20px; padding: .15rem .7rem; margin-bottom: .8rem; }
.place h3 { margin-bottom: .4rem; }
.place p { color: var(--muted); font-size: .95rem; }
.places { background: var(--bg-alt); }

/* Orta boy ekranlarda menü sığsın */
.logo { white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1200px) {
  .nav-links { gap: 1.1rem; font-size: .82rem; }
  .logo { font-size: 1.45rem; }
  .logo span { font-size: .95rem; }
}
