/* ===============================
   ROOT & RESET
   =============================== */

:root {
  --earth-light: #F4EFEA;
  --earth-dark: #8B7E74;
  --accent: #5C5048;
  --text-dark: #2E2A27;
  --gold-accent: #d4af37;

  
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--earth-light);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}



/* ===============================
   HERO VIDEO – CLEAN VERSION
================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBİL */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
    min-height: 90vh;

    /* video çalışmazsa fallback */
    background:
      linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("assets/css/js/images/exterior.jpg") center / cover no-repeat;
  }

  /* ❌ display:none YOK */
}



  .hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  
  .hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.9;
  }
  

  
  

.hero-overlay h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.content-block h2 {
  font-size: 2rem;
  text-align: center;
}

.content-block h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--earth-dark);
  margin: 14px auto 0;
  opacity: 0.5;
}

.section-intro {
  max-width: 600px;
  margin: 10px auto 40px;
  text-align: center;
  color: var(--accent);
  font-size: 0.95rem;
}

/* ===============================
   NAVBAR (FINAL)
   =============================== */

/* ===============================
   NAVBAR – GLASS EARTH STYLE
   =============================== */

   .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

  
    /* sayfanın rengiyle uyumlu cam */
    background: rgba(217, 207, 199, 0.45); /* #D9CFC7 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    border-bottom: 1px solid rgba(139,106,79,0.15);
    box-shadow: none;
  
    transition: background 0.4s ease,
                backdrop-filter 0.4s ease,
                box-shadow 0.4s ease;
  }
  
  body{
    padding-top: 90px;
  }

  /* Scroll sonrası – biraz daha net */
  .navbar.scrolled {
    background: rgba(217, 207, 199, 0.85);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 70px;
  }
  
  /* Menü */
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu a {
    position: relative;
    text-decoration: none;
    color: #2E2A27; /* taş rengi */
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  /* underline hover */
  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  
  nav a:hover::after,
  nav a.active::after {
    transform: scaleX(1);
  }
  

  .nav-contact {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .nav-contact a {
    color: #2E2A27;
    font-size: 1rem;
    transition: transform 0.25s ease, color 0.25s ease;
  }
  
  .nav-contact a:hover {
    transform: translateY(-2px);
    color: var(--accent);
  }
  


/* WhatsApp biraz daha yuvarlak ve dikkat çekici olsun (opsiyonel) */
.nav-contact a .fa-whatsapp {
  font-size: 17px;
}


/* Center logo */
.center-logo {
  position: absolute;
  top: -12%;

  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

}

.center-logo img {
  height: 80px;
  transition: all 0.3s ease; 
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.navbar.scrolled .center-logo img {
  filter: none;
  height: 56px;


}

.center-logo img:hover {
  transform: scale(1.05);
}

.navbar.scrolled .logo {
  margin-top: -4px;
}

@media (max-width: 768px) {
  .navbar.scrolled .logo {
    margin-top: -18px;
  }
}


.logo img {
  height: 206px;        /* CİDDİ BÜYÜK */
  max-height: 150px;
  transition: all 0.35s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* Scroll olunca biraz küçülsün (premium detay) */
.navbar.scrolled .logo img {
  height: 120px;
  transform: translateY(-3px);

}




.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-icons a {
  color: #f5f1ec;
  font-size: 0.95rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.navbar.scrolled .nav-icons a {
  color: #2b2b2b;
}

.nav-icons a:hover {
  transform: translateY(-2px);
  color: var(--accent);
}



/* ===============================
   HERO
   =============================== */

.hero {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  overflow: hidden;

}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-top: 8px;
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* ===============================
   MOBILE HERO TEXT – MODERN
================================ */
@media (max-width: 768px) {

  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.45)
    );
  }

  .hero-overlay h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: #fff;
    margin-bottom: 10px;
  }

  .hero-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;

    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    max-width: 280px;
  }
}


/* ===============================
   SECTION SPACING (FINAL)
   =============================== */

.content-block {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .content-block {
    padding: 70px 0;
  }
}

/* ===============================
   ACCOMMODATION
   =============================== */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 0 80px;
}

.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.room-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  opacity: 1;
  transition: opacity 1.6s ease-in-out, transform 1.6s ease-in-out;
  will-change: opacity, transform;
}

.room-card img.fade-out {
  opacity: 0;
  transform: scale(1.015);
}

.room-card img.fade-in {
  opacity: 1;
  transform: scale(1);
}

.room-content {
  padding: 22px 24px 26px;
}

.room-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.room-size {
  font-size: 0.8rem;
  opacity: 0.7;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.85rem;
}

.room-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.room-link:hover {
  text-decoration: underline;
}

.room-note {
  font-size: 0.75rem;
  opacity: 0.6;
}


/* ===============================
   MOBILE ROOMS SLIDER
================================ */
@media (max-width: 768px) {

  .rooms-grid {
    display: flex;                 
    flex-wrap: nowrap;

    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px;

    -webkit-overflow-scrolling: touch;
  }

  .rooms-grid::-webkit-scrollbar {
    display: none;                 /* scroll bar gizle */
  }



  .room-card {
    flex: 0 0 92vw;                 /* 🔥 ASIL BÜYÜTEN SATIR */
    scroll-snap-align: center;

    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
  }
}

.rooms-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.rooms-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

.rooms-dots .dot.active {
  width: 18px;
  border-radius: 10px;
  background: #2b2b2b;
}
@media (max-width: 768px) {
  .rooms-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  /* SECTION GENEL */
  #rooms {
    padding: 60px 18px;
  }

  #rooms .fade-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  #rooms .section-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 28px;
  }

  /* ROOM GRID → YATAY SLIDER */
  .rooms-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .rooms-grid::-webkit-scrollbar {
    display: none;
  }

  .room-card {
    min-width: 85%;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .room-card img {
    height: 220px;
    object-fit: cover;
  }

  .room-content {
    padding: 18px;
  }

  .room-header h3 {
    font-size: 1.15rem;
  }

  .room-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  .rooms-grid::after {
    content: "← swipe →";
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
  }
}





/* ===============================
   LOCATION
   =============================== */

.location-info {
  max-width: 900px;
  margin: 40px auto 20px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .location-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

#location iframe {
  width: 100%;
  height: 380px;
  border: none;
  margin-top: 30px;
}

@media (max-width: 768px) {

  #location {
    padding: 60px 18px;
  }

  #location .fade-title {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .location-description {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 92%;
    margin: 0 auto 32px;
    text-align: center;
  }

  /* ULAŞIM KARTLARI */
  .location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .highlight-card {
    font-size: 0.9rem;
    padding: 14px 12px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

}

/* ===============================
   FOOTER
   =============================== */

.site-footer {
  background: #2e2a27;
  color: #f4efea;
  padding: 70px 80px 30px;
  margin-top: 120px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  height: 145px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #f4efea;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-social {
  margin-top: 16px;
}

.social-link {
  margin-right: 14px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #d4cbbf;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--gold-accent);
}


@media (max-width: 900px) {
  .site-footer {
    padding: 60px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===============================
   LIGHTBOX
   =============================== */

   .lightbox {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: rgba(0,0,0,0.85);
    z-index: 9999;
  }

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;

  border-radius: 8px;
}

@media (max-width: 1023px) {
  .lightbox {
    overscroll-behavior: contain;
  }
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 90vw;
  max-height: 80vh;
}



/* ===============================
   BACK TO TOP
   =============================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}
/* ===== DESKTOP NAV RESET ===== */
@media (min-width: 901px) {
  .nav-menu {
    position: static;
    transform: none;
    background: transparent;
    flex-direction: row;
    height: auto;
  }

  body.no-scroll {
    overflow: auto;
  }
}

/* ===============================
   ABOUT US – CENTERED TYPOGRAPHY
   =============================== */

   .about-section {
    background: linear-gradient(
      rgba(255,255,255,0.55),
      rgba(255,255,255,0.55)
    );
        text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .about-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    filter: contrast(1.08) saturate(1.1);
  }
  
  
  .about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-section p {
    font-size: 0.95rem;
    color: var(--accent);
    line-height: 1.9;
  }
  
  .about-section h2,
  .about-section p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
 
.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

  
  /* Mobil */
  @media (max-width: 768px) {
    .about-title {
      font-size: 1.9rem;
    }
  
    .about-section {
      padding: 80px 20px;
    }
  }
  
  /* ===============================
   ABOUT US – BACKGROUND FADE
   =============================== */

  

/* İçerik üstte kalsın */
.about-container {
  position: relative;
  z-index: 2;
}


@media (min-width: 901px) {
  .nav-menu {
    position: static;
    inset: auto;
    height: auto;
    transform: none;
  }
}

/* ===============================
   ABOUT (FIXED) – BACKGROUND VISIBLE
================================ */

.about-section.about-bg{
  position: relative;                 /* overlay düzgün dursun */
  min-height: 500px;

  background-image: url("https://res.cloudinary.com/doqhdodfl/image/upload/v1769711455/gk3_ygzy4e.jpg"); /* yolu buna göre ayarla */
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

/* Fotoğraf üstüne hafif açık overlay (OKUNAKLI + FOTOĞRAF GÖRÜNÜR) */
.about-section.about-bg::before{
  content:"";
  position:absolute;
  inset:0;

  /* DAHA SİLİK FOTOĞRAF */
  background: linear-gradient(
    to bottom,
    rgba(244,239,234,0.75),
    rgba(244,239,234,0.82)
  );

  backdrop-filter: blur(4px); /* blur biraz arttı */
  z-index:0;
}


/* Kenarlara hafif vignette (luxury derinlik) */
.about-section.about-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0.00),
    rgba(0,0,0,0.22)
  );
  z-index:0;
  pointer-events:none;
}

/* İçerik */
.about-section.about-bg .about-container{
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px; /* senin spacingine göre değişebilir */
}

/* Başlık */
.about-section.about-bg h2{
  color: #2b2b2b;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.18);
}

/* Metin */
.about-section.about-bg p{
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}



/* ROOM SLIDER LIGHTBOX */

.room-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10050;
}

.room-lightbox.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.room-box {
  position: relative;
  max-width: 900px;
  width: 90%;
  z-index: 2;
}

#roomLightboxImg {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.room-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 36px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.room-prev,
.room-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 34px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.room-prev { left: -70px; }
.room-next { right: -70px; }

@media (max-width: 768px) {
  .room-prev { left: 10px; }
  .room-next { right: 10px; }
}


/* ===============================
   
BACKGROUND
   =============================== */

   #location{
    background-color: #efe7dd !important;
  }
  
  #rooms {
    background-color: #efe7dd !important;
  }
  
  
  
  .section-subtitle {
    text-align: center;
    opacity: 0.7;
    margin-top: -20px;
    margin-bottom: 50px;
  }
  
  .location-highlights {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
  }
  
  .highlight-card {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    white-space: nowrap;
  }
  
  .nearby-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 60px auto;
    max-width: 1100px;
  }
  
  .attraction-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
  }
  
  .attraction-card:hover {
    transform: translateY(-6px);
  }
  
  .attraction-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  
  .attraction-card h4 {
    margin: 14px 16px 4px;
  }
  
  .attraction-card span {
    margin: 0 16px 16px;
    font-size: 0.85rem;
    opacity: 0.7;
  }

  
  
  .location-description {
    max-width: 720px;
    margin: 24px auto 50px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
  }
  
  .attraction-card h4 {
    margin-bottom: 2px;   /* başlık ile süreyi yakınlaştır */
  }
  
  .attraction-card span {
    margin-top: -4px;     /* süreyi yukarı çek */
    display: block;
  }
  
  .room-card img.fade-out {
    opacity: 0;
    transform: scale(1.02);
  }
  
  .room-card img.fade-in {
    opacity: 1;
    transform: scale(1);
  }
  

  #contact {
    scroll-margin-top: 140px;
  }

  html {
    scroll-behavior: smooth;
  }
  
  .room-card img {
    transition: opacity 0.5s ease-in-out;
  }
  
  
  /* @media (max-width: 768px) {

    nav {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      position: relative !important;
    }
  
    .nav-menu {
      display: none !important;
    }
  
    .hamburger {
      display: flex !important;
      z-index: 10 !important;
    }
  
    .center-logo {
      position: absolute !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      z-index: 5 !important;
    }
  
    .center-logo img {
      height: 50px !important;
    }
  
    .nav-contact {
      display: flex !important;
      gap: 20px !important;
    }
  
    .nav-contact a {
      font-size: 1.7rem !important;
    }
  
    .navbar {
      height: 80px !important;
    }
  
    .hero {
      padding-top: 80px !important;
    }
  }
   */
  
  .nav-contact a {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .nav-contact a:active {
    transform: scale(0.9);
    opacity: 0.7;
  }
  
 


.mobile-actions {
  display: none;
}

@media (max-width: 768px) {
  .mobile-actions {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 18px;
    background: rgba(30,30,30,0.9);
    padding: 12px 18px;
    border-radius: 40px;
    z-index: 999;
  }

  .mobile-actions a {
    color: white;
    font-size: 1.6rem;
  }
}
/* ===============================
   NAV CONTACT ICONS (FINAL)
================================ */

.nav-contact {
  display: flex;
  gap: 16px;
}

/* Link kutusu */
.nav-contact a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

/* TÜM ikonlar için temel ayar */
.nav-contact i {
  font-size: 26px;   /* herkese aynı */
  line-height: 1;
  display: block;
}

/* OPTİK DENGELEME (asıl olay burada) */
.nav-contact .fa-whatsapp {
  transform: scale(1.75);   /* WhatsApp GERÇEKTEN büyür */
}

.nav-contact .fa-instagram {
  transform: scale(1.05);
}

.nav-contact .fa-phone {
  transform: scale(1);
}

/* Luxury hover çizgisi */
.nav-contact a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-contact a:hover::after {
  width: 60%;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .nav-contact i {
    font-size: 28px;
  }

  .nav-contact .fa-whatsapp {
    transform: scale(1.25);
  }
}

@media (max-width: 768px) {
  .navbar .nav-contact {
    display: none;
  }
}
@media (max-width: 768px) {

  .center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  

  .center-logo img {
    height: 78px;        /* 🔥 büyüklük */
    max-width: 160px;
  }

  .navbar {
    height: 76px;        /* logo nefes alsın */
  }

}

/* ===============================
   MOBILE NAVBAR – FINAL
================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    height: 88px;
    padding: 0 16px;
    background: rgba(30,30,30,0.9);
    backdrop-filter: blur(10px);
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* MENÜ KAPALI */
  

  /* HAMBURGER – SOL */
  .hamburger {
    display: flex;
    z-index: 10;
  }

  /* LOGO – TAM ORTA & BÜYÜK */
  .center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
  }

  .center-logo img {
    height: 72px;        /* 👈 net, tek değer */
    max-width: 180px;
    object-fit: contain;

  }
  /* HAMBURGER SOLDA */
  .hamburger {
    display: flex;
    z-index: 25;
  }

  /* ÜSTTE ICON YOK */
  .nav-contact {
    display: none;
  }

  /* HERO ÇAKIŞMASIN */
  .hero {
    padding-top: 88px;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    height: 96px; /* biraz daha yüksek */
    background: linear-gradient(
      to bottom,
      rgba(20,20,20,0.95),
      rgba(20,20,20,0.75)
    );
    backdrop-filter: blur(12px);
  }

  /* LOGO KONUM & NETLİK */
  .center-logo {
    position: absolute;
    left: 50%;
    top: 138%;
    transform: translate(-50%, -50%);
    z-index: 30;
    pointer-events: none;
  }

  .center-logo img {
    height: 128px;              /* 🔥 ARTIK NET BÜYÜK */
    max-width: 200px;
    object-fit: contain;
    opacity: 1;               /* ❗ solukluk gider */
    filter: none;             /* ❗ blur / fade iptal */
  }

  /* ÜSTTEKİ ICONLAR TAMAMEN KAPALI */
  .nav-contact {
    display: none !important;
  }

  /* MENÜ GİZLİ */
  

  /* HAMBURGER SOLDA */
  .hamburger {
    display: flex;
    z-index: 40;
  }

  /* HERO ÇAKIŞMASIN */
  .hero {
    padding-top: 96px;
  }
}





.lobby-intro {
  position: relative;
  height: 70vh;
  background: url("assets/images/lobby.jpg") center / cover no-repeat;
}

.lobby-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.lobby-text {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: #fff;
  max-width: 420px;
}

.lobby-text h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.lobby-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.lobby-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lobby-gallery img:hover {
  transform: scale(1.05);
}

.lobby-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.lobby-image {
  background: url("assets/images/lobby.jpg") center / cover no-repeat;
}

.lobby-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

/* ===============================
   LOBBY SHOWCASE (VIDEO ALTERNATİFİ)
================================ */

.lobby-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.lobby-item {
  overflow: hidden;
}

.lobby-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Luxury hover */
.lobby-item:hover img {
  transform: scale(1.06);
}

/* MOBILE */
@media (max-width: 768px) {
  .lobby-showcase {
    grid-template-columns: 1fr;
  }

  .lobby-item img {
    height: 260px;
  }
}

/* ===============================
   LOBBY SHOWCASE
================================ */

.lobby-showcase {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  overflow: hidden;
}

.lobby-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* Metin katmanı */
.lobby-text {
  position: absolute;
  max-width: 520px;
  left: 8%;
  bottom: 15%;
  color: #fff;
}

.lobby-text h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.lobby-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {

  .lobby-showcase {
    min-height: 55vh;
  }

  .lobby-text {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 20px;
  }

  .lobby-text h2 {
    font-size: 1.6rem;
  }

  .lobby-text p {
    font-size: 0.95rem;
  }
}

/* ===============================
   WARM WELCOME SECTION
================================ */

.warm-welcome {
  background: #dce0ff ; /* Accommodation ile uyumlu soft bej */
  padding: 100px 8%;
}

.warm-container {
  display: flex;
  grid-template-columns: 1fr 1fr; 
  align-items: center;
  gap: 36px;
}

/* Görsel */
.warm-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;   /* kırpma düzgün */

  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Yazı */
.warm-text h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #2b2b2b;
}

.warm-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  max-width: 420px;
}

/* ===============================
   MOBILE
================================ */



/* ===============================
   WARM WELCOME – NEW STRUCTURE
================================ */

.welcome-section {
  background: #E6D8C3; /* accommodation ile aynı */
  padding: 60px 6% 70px;   /* ⬅️ BOŞLUK AZALDI */
}

/* Başlık */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 32px auto;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2b2b2b;
  letter-spacing: 0.3px;

}

.section-header p {
  font-size: 1rem;
  color: #555;
  margin-top: 14px;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
}

.section-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 18px auto;
}






/* overlay */
.welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

/* ÜST YAZI */
/* TEXT BOX (KÜÇÜLTÜLDÜ) */
.welcome-hero-text {
  position: absolute;
  bottom: 22px;
  left: 22px;
  max-width: 340px;
  padding: 16px 18px;

  background: rgba(15,15,15,0.45);
  backdrop-filter: blur(10px);

  border-left: 3px solid #d4af37;
  border-radius: 14px;

  color: #fff;
  z-index: 2;
}


.welcome-hero-text h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  letter-spacing: 0.3px;

}

.welcome-hero-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.45;

}



/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

  .welcome-section {
    padding: 50px 6% 60px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .welcome-hero img {
    height: 240px;
  }

  .welcome-hero-text {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: unset;
    text-align: center;
  }

  .welcome-gallery {
    grid-template-columns: 1fr;
  }

  .welcome-gallery img {
    height: 190px;
  }
}

/* HERO IMAGE OVERLAY */
.welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

/* yazıyı overlay üstüne al */
.welcome-hero-text {
  z-index: 2;
  border-left: 3px solid rgba(212,175,55,0.8); /* altın vurgu */
}

.welcome-hero-text {
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.welcome-hero-text h3 {
  letter-spacing: 0.3px;
}

.welcome-hero-text p {
  line-height: 1.5;
}

.welcome-gallery img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.welcome-gallery img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.welcome-hero {
  margin-bottom: 80px;
  
}

.welcome-gallery {
  margin-bottom: 20px;
}



/* .welcome-hero {
  position: relative;
  padding: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 30px;

  box-shadow:
    0 26px 60px rgba(0,0,0,0.22),
    0 8px 18px rgba(0,0,0,0.12);
}

.welcome-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

.welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.35);
  z-index: 1;
}

.welcome-hero img {
  border-radius: 18px;           

  transition: transform 6s ease;
}

.welcome-hero:hover img {
  transform: scale(1.05);
}

.welcome-hero {
  margin: 60px auto 80px;
  max-width: 1200px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.welcome-hero-text {
  position: absolute;
  bottom: 24px;
  left: 24px;

  max-width: 360px;          
  padding: 18px 20px;        

  background: rgba(15,15,15,0.45); 
  backdrop-filter: blur(10px);

  border-left: 3px solid #d4af37;
  border-radius: 14px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 2;
} */

/* ALT GÖRSELLER */
/* .welcome-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease,
    filter 0.6s ease;
}


.welcome-gallery img:hover {
  transform: scale(1.06);                 
  box-shadow: 0 22px 55px rgba(0,0,0,0.25);
  filter: brightness(1.05);               
} */

/* ===============================
   LOCATION SLIDER
================================ */

.nearby-slider {
  overflow-x: auto;
  padding: 30px 0;
  margin-top: 40px;
  scroll-behavior: smooth;
}

.nearby-track {
  display: flex;
  gap: 26px;
  padding-left: 40px;   
  padding-right: 40px; 
}

/* CARD */
.nearby-card {
  position: relative;
  min-width: 260px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER BÜYÜME */
.nearby-card:hover {
  transform: scale(1.06);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.nearby-card:hover img {
  transform: scale(1.08);
}

.nearby-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.nearby-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 30px 65px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);
}



/* INFO OVERLAY */
.nearby-info {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );

  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nearby-card:hover .nearby-info {
  opacity: 1;
}

/* TEXT */
.nearby-info h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.nearby-info p {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 8px;
}

.nearby-info span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .nearby-card {
    min-width: 220px;
    height: 300px;
  }

  .nearby-info {
    opacity: 1; /* mobilde sürekli görünür */
  }
}

.nearby-track {
  padding-right: 40px;
}

.nearby-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.35) 100%
  );
  pointer-events: none;
}

/* ===== WELCOME HEADER REFINED ===== */
.welcome-header {
  text-align: center;
  max-width: 620px;

  margin: 0 auto 18px;   /* ⬅️ hero’ya daha yakın */
  padding-top: 20px;    /* ⬅️ üst boşluk azaldı */
}

.welcome-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8a76;
  margin-bottom: 14px;
  opacity: 0.85;
}

.welcome-header h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.welcome-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}


.welcome-hero {
  margin-top: 12px;/* eskiden 0 veya fazla */
  max-width: 92vw;
}

.navbar.scrolled {
  background: rgba(244,239,234,0.88); /* site arka planın */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  height: 80px;
  transform: translateY(-8px); /* ⬅️ hafif yukarı */


}
@media (max-width: 768px) {
  .navbar.scrolled {
    transform: translateY(-3px);
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.navbar a {
  color: #2b2b2b;
  transition: color 0.3s ease;
}

.navbar.scrolled a {
  color: #2b2b2b;
}

.hero-section .navbar a {
  color: #ffffff;
}

.navbar.scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0,0,0,0.06);
}

/* welcome */
/* .welcome-hero {
  position: relative;
  max-width: 1100px;
  height: 380px;
  margin: 0 auto 40px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}


.hero-slides {
  position: absolute;
  inset: 0;
}


.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}


.hero-slides img.active {
  opacity: 1;
}


.welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}


.welcome-hero-text {
  position: absolute;
  bottom: 22px;
  left: 22px;
  max-width: 340px;
  padding: 16px 18px;

  background: rgba(15,15,15,0.45);
  backdrop-filter: blur(10px);

  border-left: 3px solid #d4af37;
  border-radius: 14px;

  color: #fff;
  z-index: 2;
} */

/* SLIDER KUTUSU */
.welcome-hero {
  position: relative;
  max-width: 1440px;
  width: 100%;
  aspect-ratio: 16 / 7;   /* 🔥 EN KRİTİK SATIR */
  margin: 0 auto 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  background: #111;
}


/* FOTOĞRAFLAR */
.css-slider {
  position: absolute;
  inset: 0;
  display: flex;
}

.css-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;            /* 🔥 */
  object-fit: cover;       /* 🔥 basıklık biter */
  flex-shrink: 0;

  opacity: 0;
  animation: slideShow 12s infinite;
}


/* SLIDE SIRASI */
.css-slider img:nth-child(1) {
  animation-delay: 0s;
}

.css-slider img:nth-child(2) {
  animation-delay: 4s;
}

.css-slider img:nth-child(3) {
  animation-delay: 8s;
}

/* FADE ANİMASYONU */
@keyframes slideShow {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* KARARTMA OVERLAY */
.welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

/* YAZI */
.welcome-hero-text {
  position: absolute;
  bottom: 22px;
  left: 22px;
  max-width: 340px;
  padding: 16px 18px;

  background: rgba(15,15,15,0.45);
  backdrop-filter: blur(10px);
  border-left: 3px solid #d4af37;
  border-radius: 14px;

  color: #fff;
  z-index: 2;
}

/* ===============================
   RESTAURANT SECTION
================================ */

.restaurant-section {
  background: #fdfbf7;
  padding: 90px 6% 100px;
}

.restaurant-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #8b7763;
}

.restaurant-section h2 {
  font-size: 2.4rem;
  margin: 10px 0;
  color: #2b2b2b;
}

.restaurant-section p {
  font-size: 1rem;
  color: #555;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 16px auto;
}

/* SLIDER */
.restaurant-slider {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 22px;
}

.restaurant-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.restaurant-track img {
  min-width: 100%;
  height: 420px;
  object-fit: cover;
}

/* OKLAR */
.restaurant-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 5;
  
}

.restaurant-arrow.left { left: 20px; }
.restaurant-arrow.right { right: 20px; }

.restaurant-arrow:hover {
  background: #cbb8a6;
  color: #fff;
}

/* MOBİL */
@media (max-width: 768px) {
  .restaurant-track img {
    height: 280px;
  }

  .restaurant-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .gallery-arrow {
    opacity: 1;
  }
}

/* ===============================
   WELCOME HERO – MOBILE FIX
================================ */
@media (max-width: 768px) {

  .welcome-section {
    padding: 70px 6% 80px;
  }

  .welcome-hero {
    position: relative;
    width: 100%;
    height: 260px;              /* ❗ mobil için ideal oran */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  }

  .css-slider {
    position: absolute;
    inset: 0;
  }

  .css-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* 🔥 EN KRİTİK SATIR */
    opacity: 0;
    animation: slideShow 12s infinite;
  }

  .css-slider img:nth-child(1) { animation-delay: 0s; }
  .css-slider img:nth-child(2) { animation-delay: 4s; }
  .css-slider img:nth-child(3) { animation-delay: 8s; }

 
    .welcome-hero-text {
      display: none;
    }
}

@media (max-width: 768px) {

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;   /* ❗ fixed DEĞİL */
    inset: 0;
    transform: none;
  }

}

@media (max-width: 768px) {
  .hero-overlay {
    transition: opacity 0.4s ease;
  }

  body.scrolled .hero-overlay {
    opacity: 0;
  }
}

@media (max-width: 768px) {

  .hero {
    height: 100svh; /* iOS safe viewport */
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    background: #000;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slides img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;

}

.hero-content h1 {
  font-family: 'Playfair Display', serif;

  font-size: 70px;
  font-weight: 900;
}

.hero-content p {
  font-family: 'Inter', sans-serif;

  font-size: 16px;
  margin-top: 12px;
  opacity: 0.9;
}

/* Mobil */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

.gallery-hero,
.gallery-grid {
  display: block;
  width: 100%;
}


.gallery-hero {
  height: 70vh;
  width: 100%;
  background-color: #f4efea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero h1 {
  color: #000;
  font-size: 56px;
  letter-spacing: 4px;
}


.gallery-grid {
  width: 100%;
  background-color: #f4efea;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  box-sizing: border-box;
}


.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: auto !important;

}

.gallery-grid img:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}

.hero::before,
.hero::after,
.hero-overlay,
.gallery-hero::before,
.gallery-hero::after,
.about-section::before,
.about-section::after{
  pointer-events: none;
}

.gallery-hero,
.gallery-bg,
.blur-bg {
  pointer-events: none;
}


.gallery-hero{
  position: relative;
  z-index: 0;
}
body{
  padding-top: 90px; /* navbar yüksekliğine göre 70-110 arası ayarla */
}

.gallery-hero{
  height: 70vh;
  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("https://res.cloudinary.com/doqhdodfl/image/upload/v1769617265/gallery4_hgqyfq.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero h1{
  color: #fff;
  font-size: 56px;
  letter-spacing: 4px;
}

.gallery-grid{
  background: #f4efea;
  padding: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .4s ease;
}

.gallery-grid a:hover img{
  transform: scale(1.05);
}

/* Mobil */
@media(max-width: 768px){
  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
    padding: 20px;
  }
}





/* Lightbox background */
/* LIGHTBOX BASE */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* LIGHTBOX AÇIK */
.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Image */
.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Close (X) */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Arrows */
.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.lightbox .left {
  left: 30px;
}

.lightbox .right {
  right: 30px;
}

/* Hover */
.lightbox .arrow:hover,
.lightbox .close:hover {
  color: #d4af37; /* otel gold vibe ✨ */
}

.gallery-grid img {
  cursor: pointer;
  pointer-events: auto;
}

.gallery-grid{
  position: relative;
  z-index: 5;
}

/* 🔥 HARD CLICK FIX */
.gallery-grid,
.gallery-grid * {
  pointer-events: auto !important;
}

.gallery-grid {
  position: relative !important;
  z-index: 9999 !important;
}

.gallery-grid a {
  display: block;
  text-decoration: none;
  
}

.gallery-grid a img {
  cursor: pointer;
}

.lightbox img {
  position: relative;
  z-index: 10000;
}

.lightbox .arrow,
.lightbox .close {
  position: absolute;
  z-index: 10001;
}



.lightbox .arrow {
  pointer-events: auto;
}

.lightbox .arrow {
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}

/* 🔥 LIGHTBOX FIX – BUNU EKLE */
.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  z-index: 1;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 10px;
  display: block;
}

/* OKLAR ARTIK GERÇEKTEN ÜSTTE */
.lightbox .arrow,
.lightbox .close {
  position: absolute;
  z-index: 99999;
}

/* OKLARI GÖRÜNÜR YAP */
.lightbox .arrow {
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔒 Lightbox kapalıyken oklar ve X gizli */
.lightbox .arrow,
.lightbox .close {
  display: none;
}

/* 🔓 Lightbox açıkken oklar ve X görünür */
.lightbox.active .arrow,
.lightbox.active .close {
  display: flex;
}


.gallery-grid a {
  pointer-events: auto !important;
}

.room-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

/* Kamera ikonu */
.photo-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: none; /* tıklamayı engellemesin */
}

/* Hover’da biraz vurgula */
.room-card:hover .photo-icon {
  background: rgba(0,0,0,0.8);
}

/* MOBILE HAMBURGER */
.hamburger {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  cursor: pointer;
  z-index: 10002;
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
}

/* Sadece mobil için hamburger */
.hamburger {
  display: none;
}

@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}




@media (max-width: 768px) {

  body.gallery-page .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;

    background: #f4efea;
    padding: 120px 24px;

    display: block !important;   /* 🔥 KRİTİK */
    z-index: 9999;
    transition: left 0.35s ease;
  }

  body.gallery-page .nav-menu.open {
    left: 0;
  }
}





.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu {
  z-index: 999;
}

@media (max-width: 768px) {

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;

    background: #efe7dd;
    padding: 110px 24px;

    display: block;
    z-index: 9999;
    transition: left 0.35s ease;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .hamburger {
    position: fixed;
    top: 28px;
    left: 16px;
    z-index: 10000;
    cursor: pointer;
  }
}

body.no-scroll {
  overflow: hidden;
}
.nav-menu.open {
  left: 0;
}

/* MOBIL – CAMSI (GLASS) NAVBAR */
@media (max-width: 1023px) {
  .navbar {
    background: rgba(255, 255, 255, 0.15); /* şeffaf */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}






/* @media (max-width: 1023px) {
  .index-navbar,
  .gallery-page {
    background: rgba(255, 255, 255, 0.15);
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
} */


@media (max-width: 1023px) {
  .hamburger span {
    background-color: #000;
  }
}

@media (max-width: 1023px) {
  body {
    padding-top: 2px; /* navbar yüksekliğine göre */
  }
}

@media (max-width: 1023px) {
  .lightbox {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.85);
    z-index: 9999;
  }
}


@media (max-width: 1023px) {
  .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}


@media (max-width: 1023px) {
  .lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
  }
}

body.lightbox-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


.back-arrow {
  display: none;
}

@media (max-width: 768px) {
  .back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 16px;
    top: 98%;
    transform: translateY(-50%);

    font-size: 40px;     /* DAHA BÜYÜK */
    font-weight: 1400;   /* DAHA KALIN */
    line-height: 1;

    text-decoration: none;
    color: #000;
    z-index: 10001;
  }
}


@media (max-width: 768px) {
  .back-arrow:active {
    transform: translateY(-50%) scale(0.95);
    opacity: 0.7;
  }
}

/* Sadece mobilde navbar blur */
@media (max-width: 1023px) {
  header.navbar {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: transparent;
  }

  header.navbar::before {
    content: "";
    position: absolute;

    top: -60px;              /* status bar dahil */
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    z-index: -1;
    pointer-events: none;
  }

  header.navbar > * {
    position: relative;
    z-index: 1;
  }
}


/* =========================
   ONLY MOBILE SCALE DOWN
========================= */
@media (max-width: 768px) {

  .site-footer {
    padding: 40px 15px 15px;
    font-size: 13px;
  }

  .footer-brand img {
    width: 100px; /* logo küçülür */
  }

  .site-footer h4 {
    font-size: 14px;
  }

  .site-footer p,
  .site-footer a,
  .site-footer li {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    margin-top: 25px;
  }

  .back-to-top {
    width: 36px;
    height: 36px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {

  /* Footer genel alanı iyice küçült */
  .site-footer {
    padding: 16px 12px 8px;
    padding-top: 24px;
    padding-bottom: 70px; /* ikonlar için alan */
    min-height: auto;
  }

  /* İç container: daha sıkı */
  .footer-container {
    gap: 14px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 18px;
  }

  .footer-brand img {
    width: 82px;     /* ideal */
    margin-bottom: 10px;
    opacity: 0.95;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  }

  .footer-brand p {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 18px;
    opacity: 0.9;
  }

  /* Başlıklar */
  .site-footer h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  /* Menü linkleri */
  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    font-size: 12px;
    line-height: 1.4;

  }

  /* Contact yazıları */
  .footer-contact p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .footer-social {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
  }

  /* Sabit ikon bar varsa */
  .floating-contact,
  .fixed-contact,
  .mobile-actions {
    bottom: 10px;
    z-index: 5;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-bottom: 10px;
    font-size: 10px;
  }
  /* Back to top daha minimal */
  .back-to-top {
    width: 28px;
    height: 28px;
    font-size: 13px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 900px) {

  /* hero'ya dokunmuyoruz */
  .hero {
    min-height: 80vh;
  }

  /* SADECE yazıyı ortala */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 320px;
  }

  .hero-content h1 {
    font-size: 25px;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 13.5px;
    line-height: 1.35;
    opacity: 0.9;
  }
}

.footer-credit {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding-bottom: 8px;
  opacity: 0.55;
}

.footer-credit img {
  width: 90px;
  max-width: 40%;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Hover varsa (desktop) */
.footer-credit img:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .footer-credit {
    margin-top: 6px;
    padding-bottom: 4px;
  }

  .footer-credit img {
    width: 72px;
    opacity: 0.45;
  }
}

/* Pirata Studio credit */
.footer-credit {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding-bottom: 10px;
}

.footer-credit img {
  width: 130px;          /* ⬅️ büyütüldü */
  max-width: 60%;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Hover (desktop) */
.footer-credit img:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .footer-credit img {
    width: 110px;        /* mobilde ideal */
    opacity: 0.6;
  }
}
