.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 16px; }
.lightbox[aria-hidden="false"] { display: flex; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; max-width: 96vw; max-height: 96vh; }
.lb-img { max-width: 96vw; max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.lb-cap { color: #fff; font: 500 14px/1.4 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; text-align: center; opacity: .85; padding: 0 .75rem; display: none; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 44px; height: 44px; border-radius: 999px; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 16px; right: 16px; font-size: 26px; }
.lb-prev { left: 16px; font-size: 26px; }
.lb-next { right: 16px; font-size: 26px; }
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px){
  .lightbox .lb-prev { left: 6vw; top: 50%; transform: translateY(-50%); }
  .lightbox .lb-next { right: 6vw; top: 50%; transform: translateY(-50%); }
}
@media (max-width: 480px){
  .lightbox .lb-prev { left: 2vw; }
  .lightbox .lb-next { right: 2vw; }
}
.gallery-page .pb-section { background:#fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 16px;
}
.gallery-grid .g-item { display:block; border-radius: 18px; overflow:hidden; background:#eee; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.gallery-grid .g-item img { width:100%; height:100%; display:block; object-fit:cover; transition: transform .25s ease, filter .25s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.03); filter: brightness(.98); }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }

.gallery-filter{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin:10px 0 18px; }
.filter-btn{
  appearance:none; border:none; cursor:pointer; padding:8px 14px; border-radius:999px;
  background:#efe9df; color:#6a5b3a; font-weight:700; font-size:13px;
  border:1px solid rgba(0,0,0,.06); transition: filter .15s ease, transform .12s ease, background .15s ease;
}
.filter-btn:hover{ filter:brightness(.98); transform: translateY(-1px); }
.filter-btn:active{ transform:none; }
.filter-btn.active{ background:#e9dfcc; color:#5a4c2a; }

.g-item{ transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.g-item.is-hidden{ opacity:0; transform: scale(.98); visibility:hidden; }

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}
@media (max-width: 900px) { .rooms-grid { grid-template-columns: 1fr; gap: 32px; } }
.rooms-content { }
.rooms-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  color: #0b1a3d;
  margin: 0 0 16px;
}
.rooms-text {
  color: #3a3a3a;
  font-size: 15px;
  margin: 0 0 24px;
}
.rooms-info-table--modern {
  margin-bottom: 26px;
}
.rooms-table-col {}
.rooms-table-title-wrap { margin-bottom: 12px; }
.rooms-table-title {
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #191919;
  margin: 0;
}
.rooms-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #6a6a6a;
  padding: 12px 0;
  border-bottom: 1.7px solid #ececec;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.rooms-table-row:last-child{ border-bottom:none; }
.rooms-table-row span {
  font-family: Inter, Arial, sans-serif;
}
.rooms-table-val {
  font-weight: 700;
  color: #232323;
  font-size: .8rem;
  letter-spacing: 0.01em;
}
.rooms-cta-row {
  margin-top: 20px;
}
.rooms-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rooms-img-slider {
  position: relative;
  width: 100%;
  min-height: 620px;
  background: #ddd;
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(0,0,0,.10);
  overflow: hidden;
}
.rooms-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.rooms-img-slide.active {
  opacity: 1;
  z-index: 1;
}
.rooms-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.rooms-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #e9dfcc;
  color: #6a5b3a;
  border: 1px solid rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 2;
}
.rooms-img-arrow:hover { filter: brightness(.98); }
.rooms-img-prev { left: 10px; }
.rooms-img-next { right: 10px; }
.rooms-img-arrow i { font-size: 18px; }
@media (max-width: 600px) {
  .rooms-img-slider {
    max-width: 96vw;
    min-height: 160px;
  }
  .rooms-heading { font-size: 1.4rem; }
}

.pb-slider { position: relative; }
.pb-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s; }
.pb-slide.active { opacity: 1; z-index: 1; }
.pb-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }
.pb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #e9dfcc;
  color: #6a5b3a;
  border: 1px solid rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 2;
}
.pb-arrow:hover { filter: brightness(.98); }
.pb-prev { left: 10px; }
.pb-next { right: 10px; }
.pb-arrow i { font-size: 18px; }
:root {
  --text: #2b2b2b;
}

.lang.nav-item { position: relative; }
@media (hover: hover) and (pointer: fine){
  .lang.nav-item:hover #langMega { 
    opacity: 1; 
    pointer-events: auto; 
  }
}
#langMega.open { opacity: 1; pointer-events: auto; }

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--beige);
  font: 15px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  padding-top: 80px;
}

#hakkimizda, #odalar, #eglence, #yemeicme, #galeri, #iletisim {
  scroll-margin-top: 90px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

header.navbar .container,
main .container,
footer.footer-section .container {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.reserve-page .container,
#snapWidget ~ .container { 
  max-width: 1400px !important;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: #eeeeee;
  overflow: visible;
}
.nav-actions{ display:flex; align-items:center; gap:8px; }

#snapWidget { all: unset; display: block; }
#snapWidget * { box-sizing: border-box; }

.nav-item.hamburger { display: none; }
.hamburger-btn{
  background: #e3e3e3;
  border: none;
  color: #3a2f1a;
  font-size: 16px;
  padding: 9px 14px;
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hamburger-btn i{ font-size: 18px; }

.drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 140;
  touch-action: none;
}
.drawer{
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(100vw, 460px);
  background: #faf7f3;
  transform: translateX(102%);
  transition: transform .28s ease;
  z-index: 141;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.drawer.open{
  transform: translateX(0);
  box-shadow: -8px 0 30px rgba(0,0,0,.18);
}
.drawer-backdrop.show{ opacity: 1; pointer-events: auto; }
.drawer-close{
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 22px;
  padding: 8px;
  color: #0b1a3d;
  border-radius: 10px;
  cursor: pointer;
}

.drawer-brand {
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}
.drawer-logo {
  max-height: 48px;
  width: auto;
}
.drawer-links{ display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.drawer-links a{
  display: block;
  padding: 15px 10px;
  border-radius: 18px;
  color: #847962;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.06);
  background: #f5f3ef;
}
.drawer-links a:active{ background: #e9dfcc; color: #6a5b3a; }

.drawer-accordion{ margin-top: 6px; }
.drawer-acc-btn{
  width: 100%;
  background: #f5f3ef;
  color: #847962;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 19px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.drawer-acc-btn:hover{ filter: brightness(.98); }
.drawer-acc-btn[aria-expanded="true"] i{ transform: rotate(180deg); }
.drawer-acc-panel{ padding: 8px 4px 0 4px; color: #847962; }
.drawer-acc-panel .hotel-list{ padding: 0; margin: 0; }
.drawer-acc-panel .hotel-list li{ margin: 0 0 8px 0; padding: 0; }
.drawer-acc-panel .hotel-list a{ display: block; padding: 12px 12px; border-radius: 14px; background: #fff; border: 1px solid rgba(0,0,0,.06); }

html.scroll-lock, 
body.scroll-lock {
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
}
body.scroll-lock {
  position: fixed;
  left: 0; right: 0;
  width: 100%;
}

@media (max-width: 900px){
  .nav-item.hamburger{ display: inline-block; }
  .navbar .inner{ display:flex; align-items:center; justify-content:space-between; }
  .nav-actions{ margin-left:auto; display:flex; align-items:center; gap:8px; }
  .brand{ margin-right:12px; }
  .lang.nav-item{ display:block; }
}

.drawer-backdrop:not(.show){
  opacity: 0 !important;
}

.hotel-mega {
  position: absolute !important;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 60;
}
.hotel-mega.open { opacity: 1; pointer-events: auto; }

.hotel-card {
  position: static;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 10px;
  background: #f8f8f8;
  padding: 22px;
  border-radius: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.hotel-card::before{
  position:absolute;
}

.hotel-list a {
  text-decoration: none !important;
  color: inherit !important;
  display: inline-block;
  width: 100%;
  padding: 6px 0;
}

.hotel-list a:hover {
  color: #ae9689 !important; 
}

.hotel-list { list-style: none; margin: 0; padding: 10px; }
.hotel-list li { padding: 14px 16px; margin-bottom: 8px; border-radius: 16px; cursor: pointer; font-weight: 600; }
.hotel-list li.active, .hotel-list li:hover, .hotel-list li:focus {
  background: #f1f1f1;
  outline: none;
}

.lang-card .hotel-list li,
.lang-card .hotel-list a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-card .hotel-list a{
  width: 100%;
  white-space: nowrap;
  padding: 0;
}
.lang-flag{
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.lang-card .hotel-list li{ min-height: 36px; }

.hotel-right { border-radius: 22px; background: #fff; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.1) inset; }
.hotel-preview { width: 100%; height: 100%; object-fit: cover; display:block; }

/* Mega panel Hotel */
.hotel-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  display: none;
  gap: 24px;
  padding: 16px 24px;
  z-index: 4;
}
.hotel-left { width: 200px; }
.hotel-list { list-style: none; margin: 0; padding: 8px; border-radius: 16px; }
.hotel-list li { padding: 14px 16px; border-radius: 12px; cursor: pointer; font-weight: 500; }
.hotel-list li:hover, .hotel-list li:focus { background: #e3e3e3; }
.hotel-right { flex: 1; background: #f3f3f3; border-radius: 18px; display: grid; place-items: center; min-height: 260px; overflow: hidden; }


.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links a {
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  opacity: .8;
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fffaf0;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  z-index: 3;
  width: max-content;
  min-width: 120px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #2b2b2b;
  text-decoration: none;
}

.submenu a:hover {
  background: #f6ead2;
}

.nav-item:hover .submenu {
  max-height: 400px;
  opacity: 1;
}

.nav-item.active .submenu {
  max-height: 400px;
  opacity: 1;
}

.nav-links > a,
.nav-item > a,
.lang-btn,
.nav-item.hamburger button {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 2rem;
  line-height: 1;
  transition: background 0.2s ease;
}
.nav-links > a:hover,
.nav-item > a:hover,
.lang-btn:hover,
.nav-item.hamburger button:hover {
  background: #cdcdcd;
}

.lang {
  position: relative;
}

.lang-btn {
  background: #e3e3e3;
  border: none;
  color: #3a2f1a;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* HERO */
.hero {
  background: var(--beige);
}

.slider {
  position: relative;
  width: 100%;
  height: 92.2lvh;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socials {
  position: absolute;
  left: 20px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6ead2;
  color: #6b5a33;
  border: 1px solid rgba(0,0,0,.1);
  text-decoration: none;
}

.socials a:hover {
  transform: translateY(-1px);
}

.controls {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.ctrl {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #f6ead2;
  color: #6b5a33;
  border: 1px solid rgba(0,0,0,.12);
}

.ctrl:hover {
  filter: brightness(0.98);
}


.about {
  background: var(--beige);
  padding: 90px 0 100px;
}

.about .title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  color: #ae9689;
  margin: 0 0 10px;
}

.about .lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #3a3a3a;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .slider {
    height: 360px;
  }
  .dots {
    right: 72px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 58px;
  }
  .slider {
    height: 300px;
  }
  .footer-info .title,
  .rooms-heading,
  .pb-section .title,
  .about .title {
    font-size: 30px !important;
  }
  .rooms-section, .rb-section, .about {
    padding: 50px 0 !important;
  }
}

.lang-card {
  grid-template-columns: 240px 1fr;
}
.lang-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-flag {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.lang-right {
  background: #fff;
}
.lang-preview {
  width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
}
#langMega .lang-list {
  padding: 6px;
}
#langMega .lang-list li {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}
#langMega .lang-list li.active,
#langMega .lang-list li:hover,
#langMega .lang-list li:focus {
  background: #f1f1f1;
}

.lang.nav-item {
  position: relative;
}
#langMega {
  position: absolute !important;
  top: calc(100% + 10px);
  right: -15px;
  left: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 61;
  margin-top: 12px;
}
#langMega .lang-card {
  position: static;
  grid-template-columns: 1fr;
  max-width: 280px;
  padding: 12px;
  margin-top: 10px;
}

.features { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 22px; 
  margin-top: 28px; 
}

.feature-card { 
  background: #fff; 
  border: 1px solid rgba(0,0,0,.06); 
  border-radius: 20px; 
  padding: 22px 18px; 
  text-align: center; 
  box-shadow: 0 8px 22px rgba(0,0,0,.06); 
  transition: transform .18s ease, box-shadow .18s ease; 
}

.feature-card:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 28px rgba(0,0,0,.1); 
}

.feature-icon { 
  font-size: 56px; 
  line-height: 1; 
  color: #b68e59; 
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.feature-title { 
  margin: 8px 0 6px; 
  font-size: 20px; 
  font-weight: 700; 
  color: #1f1f1f; 
}

.feature-text { 
  margin: 0; 
  font-size: 14px; 
  color: #666; 
}

@media (max-width: 1024px) { 
  .features { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 560px) { 
  .features { grid-template-columns: 1fr; } 
  .feature-icon { font-size: 48px; width: 48px; height: 48px; } 
}

.rooms{ 
  display:grid; 
  gap:24px; 
}
.room-card{ 
  overflow:hidden; 
}
.room-media{ aspect-ratio: 16/10; overflow:hidden; border-radius: 18px ;}
.room-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.room-body{ padding:16px 0 0; }
.room-title{ font-family: "Playfair Display", serif; font-style: italic; margin:0 0 10px; font-size:1.3rem; font-weight:700; color:#716056; }
.room-text{ margin:0; font-size:14px; color:#666; }

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

.rooms-section{
  background:#f7f7f7;
  padding:100px 0;
}
.rooms-section .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.rooms-section .title{
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  color: #b68e59;
  margin: 6px 0 14px;
}
.rooms-section .lead{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #4a4a4a;
  font-size: 13.5px;
}
@media (max-width: 560px){
  .rooms-section .title{ font-size: 24px; }
}

.btn-reserve{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 2rem;
  background: #ae9689;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn-reserve:hover{ 
  transform: translateY(-1px); 
}
.btn-reserve:active{ 
  transform: translateY(0); 
}

.room-features{
  list-style: none;
  margin: 15px 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 5px;
}
.room-features li{
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-features i{
  font-size: 14px;
  color: #cab5a9;
  flex: 0 0 auto;
}

@media (max-width:768px){
  .room-features{ grid-template-columns: 1fr; }
}

.rooms-section .lead{ text-align:center; max-width:760px; margin:0 auto 26px; }

.rb-section{ background:#fff; padding:100px 0; }
.rb-grid{ display:grid; grid-template-columns:1.25fr 1fr; align-items:center; gap:50px; }
@media (max-width: 1024px){ .rb-grid{ grid-template-columns:1fr; gap:28px; } }

.rb-slider{ position:relative; border-radius:18px; overflow:hidden; box-shadow:0 14px 40px rgba(0,0,0,.12); background:#ddd; min-height:35vw; }
.rb-slide{ position:absolute; inset:0; opacity:0; transition:opacity .45s ease; }
.rb-slide.active{ opacity:1; }
.rb-slide img{ width:100%; height:100%; object-fit:cover; display:block; }

.rb-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; display:grid; place-items:center; border-radius:999px; background:#e9dfcc; color:#6a5b3a; border:1px solid rgba(0,0,0,.12); cursor:pointer; }
.rb-arrow:hover{ filter:brightness(.98); }
.rb-prev{ left:14px; }
.rb-next{ right:14px; }
.rb-arrow i{ font-size:16px; }

.rb-content .rb-heading{ font-family:"Playfair Display", serif; font-weight:700; font-style: italic; font-size:40px; line-height:1.15; color:#0b1a3d; margin:0 0 14px; }
@media (max-width:560px){ .rb-content .rb-heading{ font-size:32px; } }
.rb-content .rb-text{ margin:0 0 24px; color:#3a3a3a; font-size:15px; }

.rb-cta-row{ margin-top:18px; position:relative; padding-top:26px; }
.rb-cta-row::before{ content:""; position:absolute; left:0; right:0; top:0; height:1px; background:rgba(0,0,0,.08); }
.rb-cta{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; font-weight:800; letter-spacing:.8px; text-transform:uppercase; font-size:13px; color:#ae9689; }
.rb-cta:hover{ opacity:.85; }
.rb-cta i{ font-size:13px; }

.rb-details{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:18px; }
@media (max-width:700px){ .rb-details{ grid-template-columns:1fr; } }
.rb-box p{ margin:0 0 12px; color:#444; }
.rb-sub{ margin:12px 0 6px; font-size:13px; color:#1f1f1f; font-weight:800; letter-spacing:.2px; }
.rb-list{ list-style:none; margin:0 0 12px; padding:0; display:grid; gap:10px; }
.rb-list li{ font-size:14px; color:#333; display:flex; align-items:flex-start; gap:10px; }
.rb-list i{ color:#b68e59; font-size:14px; flex:0 0 auto; margin-top:2px; }

.pb-section{ background:#f7f7f7; padding:50px 0; }
.pb-section .title{
  font-family: "Playfair Display", serif; font-style: italic;
  font-weight:700;
  text-align:center; font-size:40px; color:#ae9689; margin:6px 0 14px;
}
.pb-section .lead{ max-width:760px; margin:0 auto 26px; text-align:center; color:#3a3a3a; font-size:15px; }

.pb-card{
  border-radius:20px;
  overflow:hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pb-media{
  height: 600px;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto 24px auto;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.pb-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.pb-body{ padding:16px 18px; }
.pb-title{ margin:0 0 8px; font-size:18px; font-weight:800; color:#1f1f1f; display:flex; align-items:center; gap:8px; }
.pb-text{ margin:0; font-size:14px; color:#555; }


.brand-link{ display:inline-block; border-radius:12px; }
.brand-link:hover{ filter:brightness(.96); }

.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); background:#2f2616; }
.footer-bottom-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; color:#bdbdbd; font-size:13px; }
.footer-links{ display:flex; gap:14px; }
.footer-links a{ color:#dcdcdc; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.18); }
.footer-links a:hover{ opacity:.9; border-bottom-color:rgba(255,255,255,.35); }
@media (max-width:560px){ .footer-bottom-inner{ flex-direction:column; align-items:flex-start; } }

.footer-bottom-inner{ flex-wrap:wrap; }
.footer-socials{ display:flex; gap:10px; }
.footer-socials a{ 
  width:34px; height:34px; display:grid; place-items:center; 
  border-radius:50%; text-decoration:none; 
  background: rgba(240,215,168,.12); 
  border:1px solid rgba(240,215,168,.35); 
  color:#f0d7a8; 
  transition: transform .15s ease, filter .15s ease; 
}
.footer-socials a:hover{ transform: translateY(-1px); filter:brightness(1.05); }
.footer-socials i{ font-size:14px; }
.footer-right{ display:flex; align-items:center; gap:12px; margin-left:auto; }
@media (max-width:560px){ .footer-right{ margin-left:0; } }

.rb-info-table--modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 36px;
}
@media(max-width:800px){ .rb-info-table--modern{ grid-template-columns:1fr; gap:32px; } }
.rb-table-col {}
.rb-table-title-wrap { margin-bottom: 14px; }
.rb-table-title {
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #191919;
  margin: 0;
}
.rb-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #787878;
  padding: 10px 0 10px 0;
  border-bottom: 2px solid #f3f3f3;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.rb-table-row:last-child{ border-bottom:none; }
.rb-table-row span {
  font-family: Inter, Arial, sans-serif;
}
.rb-table-val {
  font-weight: 700;
  color: #232323;
  font-size: .8rem;
  letter-spacing: 0.01em;
}
.rb-table-bold {
  color: #191919;
}

@media(max-width:600px){
  .rb-table-title { font-size: .8rem; }
  .rb-table-row, .rb-table-val { font-size: .8rem; }
}
@media (max-width: 900px) {
  .rooms-grid {
    display: flex !important;
    flex-direction: column;
  }
  .rooms-img-col {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }
  .rooms-img-slider {
    min-height: 320px;
    height: 70vw;
    max-height: 390px;
  }
  .rb-slider {
    min-height: 70vw;
}
}

@media (max-width: 700px) {
  .pb-media {
    height: 70vw;
    max-height: 380px;
  }
}

.footer-section {
  background: #faf7f3;
  color: #2b2b2b;
  border-top: 1px solid rgba(40,40,40,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 42px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 22px; } }

.footer-info, .footer-map {
  border-radius: 22px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
}
@media (max-width:600px){ .footer-info, .footer-map { padding: 18px 8px; min-height: 190px; } }

.footer-info .title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  text-align: left;
  font-size: 40px;
  color: #7d6a60;
  margin: 0 0 10px;
}
.footer-info .lead {
  max-width: 440px;
  margin: 0 0 18px;
  color: #2d2d2d;
  font-size: 15px;
  text-align: left;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #3a3a3a;
}
.contact-list i {
  color: #cab5a9;
  font-size: 16px;
  line-height: 1.3;
  flex: 0 0 auto;
}
.contact-list a {
  color: #212121;
  text-decoration: none;
  border-bottom: 1px dashed rgba(40,40,40,.15);
}
.contact-list a:hover {
  opacity: .93;
  border-bottom-color: rgba(40,40,40,.32);
}

.footer-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.fbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 14px;
  background: #7d6a60;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  border: none;
  transition: filter .14s, box-shadow .14s, transform .14s;
}
.fbtn.fbtn-outline {
  background: #faf7f3;
  color: #7d6a60;
  border: 1px solid #7d6a60;
}
.fbtn:hover { filter: brightness(.94); transform: translateY(-1px); }
.fbtn:active { filter: brightness(.99); transform: none; }
.fbtn i { font-size: 15px; }

.rb-arrow:active,
.pb-arrow:active,
.rooms-img-arrow:active,
.ctrl:active {
  background: #cab5a9 !important;
  color: #fff !important;
  filter: none;
}

.footer-map .map-embed {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: #e9e5dc;
  box-shadow: 0 4px 20px rgba(150,140,110,0.13);
  margin-top: 6px;
}
.footer-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.09) brightness(.97) contrast(1.03);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1.5px solid rgba(60,48,32,.06);
  background: #f4efe6;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0 8px 0;
  color: #a09a8d;
  font-size: 13.5px;
}
@media (max-width: 560px){ .footer-bottom-inner{ flex-direction: column; align-items: flex-start; } }
.footer-links { display: flex; gap: 14px; }
.footer-links a {
  color: #cab5a9;
  text-decoration: none;
  border-bottom: 1px dashed rgba(182,142,89,.22);
  font-weight: 700;
}
.footer-links a:hover {
  opacity: .93;
  border-bottom-color: rgba(182,142,89,.39);
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff8f1;
  color: #cab5a9;
  border: 1px solid #cab5a9;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(180,140,90,0.06);
  transition: transform .12s, filter .12s;
}
.footer-socials a:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.footer-socials i { font-size: 14.5px; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
@media (max-width:560px){ .footer-right{ margin-left: 0; } }

/* === Snap Alt Numara === */
.float-alt {
  text-decoration: none;
  position: fixed;
  width: 180px;
  height: 45px;
  bottom: 60px;
  right: 20px;
  background-color: #d0d0d09c;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  color: #000000d6 !important;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  z-index: 3000;
  line-height: 45px;
  border: 1px solid #ffffff57;
}

.float-alt-rezervasyon {
  text-decoration: none;
  position: fixed;
  width: 180px;
  height: 45px;
  bottom: 60px;
  right: 210px;
  background-color: #d0d0d09c;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  color: #000000d6 !important;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  z-index: 3000;
  line-height: 45px;
  border: 1px solid #ffffff57;
}

@media all and (max-width: 768px) {
  .float-alt, .float-alt-rezervasyon {
    width: 35%;
    height: 40px;
    bottom: 20px;
    font-size: 14px;
    z-index: 3000;
    line-height: 40px;
  }

  .float-alt {
    right: 10px;
  }

  .float-alt-rezervasyon {
    width: 35%;
    height: 40px;
    bottom: 20px;
    top: 85.5%;
    left: 243px;
    font-size: 14px;
    z-index: 3000;
    line-height: 40px;
  }
}

.fo-link a:hover {
  background-color: #ae9689;
  color: #fff !important;
}
/* === Lightbox === */
.lightbox .lb-figure{ position: relative; }
.lightbox .lb-figure .lb-prev,
.lightbox .lb-figure .lb-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: #00000059;
}
.lightbox .lb-figure .lb-prev{ left: 10px; }
.lightbox .lb-figure .lb-next{ right: 10px; }
.lightbox .lb-btn i{ font-size: 18px; line-height: 1; }

@media (max-width: 768px){
  .lightbox .lb-figure .lb-prev,
  .lightbox .lb-figure .lb-next{ width: 44px; height: 44px; }
}
.lightbox .lb-figure .lb-prev:hover,
.lightbox .lb-figure .lb-next:hover {
  background-color: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}

.lightbox .lb-figure .lb-prev:active,
.lightbox .lb-figure .lb-next:active {
  background-color: rgba(255,255,255,0.35);
  transform: translateY(-50%) scale(0.96);
}