:root {
  --cream: #f5efe6;
  --cream-2: #fbf7f0;
  --gold: #c79a3b;
  --text: #2b2620;
  --muted: #6b645b;
  --white: #fff;
  --shadow: rgba(0, 0, 0, .08)
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6
}

.container {
  width: min(1200px, 92%);
  margin: auto
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr;
  gap: 40px
}

.grid-2 .col {
  align-self: center
}

@media(max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

.rb-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height:90px;            
  max-height:90px;
  transition: background .3s, box-shadow .3s, color .3s;
  background: transparent;
  color: var(--white)
}

.rb-header.solid {
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  box-shadow: 0 10px 30px var(--shadow)
}

.rb-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 64px
}

.brand {
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 20px
}

.nav a {
  color: inherit;
  text-decoration: none;
  margin: 0 14px;
  font-weight: 600;
  position: relative
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s
}

.nav a:hover::after {
  width: 100%
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700
}

.lang-switch a {
  color: inherit;
  text-decoration: none;
  opacity: .8
}

.lang-switch a.active {
  opacity: 1
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  position: relative
}

.hamburger span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: currentColor;
  transition: transform .2s, top .2s, opacity .2s
}

.hamburger span:nth-child(1) {
  top: 9px
}

.hamburger span:nth-child(2) {
  top: 15px
}

.hamburger span:nth-child(3) {
  top: 21px
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px
}

@media(max-width:960px) {
  .nav {
    position: fixed;
    top: 64px;
    right: 0;
    background: rgba(255, 255, 255, .98);
    color: var(--text);
    padding: 20px;
    transform: translateX(110%);
    transition: transform .25s;
    box-shadow: 0 10px 30px var(--shadow)
  }

  .nav.open {
    transform: translateX(0)
  }

  .nav a {
    display: block;
    margin: 14px 0
  }

  .hamburger {
    display: block
  }
}

.hero {
  position: relative;
  height: 76vh;
  min-height: 460px;
  overflow: hidden;
  background: var(--cream-2)
}

.hero .rb-slider,
.rb-slider {
  position: relative;
  height: 100%
}

.rb-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  overflow: hidden;
  cursor: pointer
}

.rb-slider .slide img,
.rb-slider .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .25) 40%, rgba(0, 0, 0, 0) 70%);
  padding-top: 64px
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  margin: 0 0 8px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .35)
}

.hero-overlay p {
  font-family: 'Playfair Display', cursive;
  font-size: clamp(22px, 3.6vw, 36px);
  color: #ffe9c2;
  margin: 0
}

.section {
  padding: 90px 0;
  position: relative
}

.section-head {
  margin-bottom: 28px
}

.title-script {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 56px);
  letter-spacing: .5px;
  text-align: center;
}

.subtitle-script {
  font-family: 'Playfair Display', cursive;
  font-size: clamp(20px, 3vw, 36px);
  color: #000 !important; /* gold yerine siyah */
  margin-top: 4px;
  text-align: center;
}

.section-body p {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--muted)
}

.section .rb-slider {
  height: 420px
}

.section .rb-slider .slide img,
.section .rb-slider .slide video {
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow)
}

.about .poster img,
.about .poster video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow)
}

.partners {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 0px solid #e8dcc8
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center
}

.partners-logos .partner {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f0e6d6;
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--shadow)
}

.partners-logos img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain
}

.contact {
  background: #f9f4eb
}

.contact .map iframe {
  border-radius: 14px;
  box-shadow: 0 10px 30px var(--shadow)
}

.container.small {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  padding-top: 30px
}

/* Modal */
.rb-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100
}

.rb-modal.open {
  display: flex
}

.rb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6)
}

.rb-modal-content {
  position: relative;
  background: #0000;
  border-radius: 12px;
  z-index: 2
}

.rb-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: #fff;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 6px 16px var(--shadow);
  cursor: pointer
}

/* Reveal animation like slide-from-top */
.reveal {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* --- Tüm section başlıklarını ortala --- */

/* Bizim yeni yapımız (Yemek dahil) */
section .rb-sec-head {
  text-align: center;
}

section .rb-sec-head .rb-title,
section .rb-sec-head .rb-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Sitede bazı bölümlerde kullanılan alternatif sarmalayıcılar varsa da kapsa */
section .section-title-wrap {
  text-align: center;
}

section .section-title-wrap .section-title,
section .section-title-wrap .section-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-cta .wa-image-cta{
  margin-left:auto;
  margin-right:auto;
  display:block;
}