/* Çamra Otel Armutlu - Premium Sahil Tasarım Sistemi (style.css) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* CSS Reset & Tasarım Değişkenleri (Sahil & Okyanus Konsepti) */
:root {
  --bg-primary: #070c19; /* Çok derin okyanus mavisi */
  --bg-secondary: #0c1428; /* Deniz gece tonu */
  --accent-gold: #d4b285; /* Sıcak altın kumsal sarısı */
  --accent-gold-rgb: 212, 178, 133;
  --accent-gold-hover: #c5a173;
  --accent-teal: #14b8a6; /* Turkuaz deniz rengi */
  --accent-teal-rgb: 20, 184, 166;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --border-gold: rgba(212, 178, 133, 0.25);
  --border-light: rgba(255, 255, 255, 0.04);
  
  --glass-bg: rgba(12, 20, 40, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.65);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-hover);
}

/* Genel Başlıklar ve Bölümler */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 1.2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Buton Tasarımları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #070c19;
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 178, 133, 0.4);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #070c19;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 178, 133, 0.3);
}

/* Header & Navigasyon */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 12, 25, 0.4) 0%, rgba(7, 12, 25, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tagline {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 500;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Hakkımızda Section */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text-content {
  opacity: 0;
  transform: translateY(30px);
}

.about-text-content.animated {
  animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.about-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-feat-item {
  display: flex;
  gap: 1rem;
}

.about-feat-icon {
  color: var(--accent-teal);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-feat-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.about-feat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-images {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.about-images.animated {
  animation: fadeInUp 1s forwards 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-main {
  width: 80%;
  height: 85%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 50%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  border: 1px solid var(--border-gold);
}

/* Odalar Section */
.rooms-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(212, 178, 133, 0.08);
}

.room-img-wrapper {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.room-price-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.room-price-badge span {
  font-size: 1.2rem;
}

.room-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.room-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-specs {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.room-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-specs i {
  color: var(--accent-teal);
}

.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.room-feat-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.room-book-btn {
  margin-top: auto;
  width: 100%;
}

/* Hizmetler Section */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 3rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  color: #070c19;
  box-shadow: 0 0 15px rgba(212, 178, 133, 0.35);
}

.service-name {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Galeri Section */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 12, 25, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Rezervasyon Formu Section */
.booking-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  position: relative;
  background-image: radial-gradient(circle at top right, rgba(20, 184, 166, 0.05), transparent 45%);
}

.booking-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 4rem;
  border-radius: 4px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-teal));
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 600;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.04);
}

.form-control option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.booking-submit-btn {
  grid-column: span 2;
  margin-top: 1rem;
}

/* İletişim & Footer Section */
.footer-section {
  background-color: #040810;
  border-top: 1px solid var(--border-light);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info-col h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-info-col p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 178, 133, 0.25);
}

.footer-social-link#footerWhatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
}

.footer-social-link#footerWhatsapp:hover {
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.footer-contact-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--accent-teal);
  margin-top: 0.2rem;
}

.footer-map-col {
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.footer-map-col iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(200deg) brightness(95%) contrast(90%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* Lightbox Modal (Galeri için) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 8, 16, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* Toast Bildirimi */
.toast-container {
  position: fixed;
  bottom: 7.5rem; /* WhatsApp butonuyla üst üste binmemesi için yukarı kaydırıldı */
  right: 2rem;
  z-index: 3000;
}

.toast {
  background: #0c1428;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  padding: 1rem 1.8rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
  transform: translateY(50px);
  opacity: 0;
  animation: slideInUp 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.success i {
  color: var(--accent-gold);
}

/* Keyframe Animasyonları */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* WhatsApp Yüzen Canlı Destek Butonu */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 0px rgba(37, 211, 102, 0.6);
  z-index: 1900;
  transition: var(--transition-smooth);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
}

.whatsapp-float i {
  margin-top: 2px; /* Dengelemek için çok ufak kaydırma */
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Dalgalanma Animasyonu */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 0px rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    height: 400px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-map-col {
    grid-column: span 2;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    padding: 8rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group-full, .booking-submit-btn {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-map-col {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Header Sosyal Medya İkonları */
.header-socials {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-socials a {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.header-socials a:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(212, 178, 133, 0.05);
  box-shadow: 0 0 10px rgba(212, 178, 133, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-socials-li {
    margin-top: 1rem;
    width: 100%;
  }
  .header-socials {
    justify-content: flex-start;
  }
}

/* Oda Kartı Çoklu Resim Kaydırıcı (Carousel) */
.room-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.room-slide-img.active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.room-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 12, 25, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  opacity: 0;
}

.room-img-wrapper:hover .room-carousel-btn {
  opacity: 1;
}

.room-carousel-btn:hover {
  background: var(--accent-gold);
  color: #070c19;
  box-shadow: 0 0 10px rgba(212, 178, 133, 0.4);
}

.room-carousel-btn.prev {
  left: 1rem;
}

.room-carousel-btn.next {
  right: 1rem;
}

.room-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.room-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.room-carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
  box-shadow: 0 0 5px var(--accent-gold);
}

/* Lightbox Ok Stilleri */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(12, 20, 40, 0.5);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2010;
}

.lightbox-arrow:hover {
  background: var(--accent-gold);
  color: #070c19;
  box-shadow: 0 0 20px rgba(212, 178, 133, 0.45);
}

.lightbox-arrow.prev {
  left: -4.5rem;
}

.lightbox-arrow.next {
  right: -4.5rem;
}

/* Mobilde oklar içeride çıksın */
@media (max-width: 992px) {
  .lightbox-arrow.prev {
    left: 1rem;
  }
  .lightbox-arrow.next {
    right: 1rem;
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    background: rgba(12, 20, 40, 0.8);
  }
}

/* Instagram Section Hover Transitions */
.instagram-item:hover img {
  transform: scale(1.08);
}
.instagram-item:hover .instagram-overlay {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .instagram-grid {
    grid-template-columns: 1fr !important;
  }
}
