*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* YENİ RENK PALETİ (GÖRSELDEN İLHAM ALINARAK) */
  --bg-main: #fbf5ed;         /* Ana Arka Plan - Sıcak Krem */
  --bg-accent: #f5e9dd;       /* Vurgu Arka Planı - Hafif Şeftali */
  --text-dark: #4d3d44;        /* Ana Metin Rengi - Koyu Mürdüm/Kahve */
  --text-light: #8a7a7d;       /* İkincil Metin - Yumuşak Gül Kurusu */
  --accent-primary: #e68d9b;   /* Ana Vurgu Rengi - Canlı Pembe */
  --accent-secondary: #d4a5a5;/* İkincil Vurgu - Tozlu Gül Kurusu */
  --border-color: #e0d8d1;     /* Kenarlık Rengi - Çok Açık Bej */
  --white: #ffffff;            /* Saf Beyaz */

  /* YENİ KÖŞE YUVARLAKLIĞI */
  --border-radius: 6px;
  --border-radius-large: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-primary);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.cursor-ring.expand {
  width: 60px; height: 60px;
  border-color: var(--accent-secondary);
  opacity: 0.5;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--border-color); }
::-webkit-scrollbar-thumb { background: var(--accent-secondary); border-radius: 5px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(251, 245, 237, 0.85); /* --bg-main'in transparan hali */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border-color);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400; /* Biraz daha belirgin */
  letter-spacing: 0.15em;
  color: var(--text-dark);
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--text-light); }
.nav-links {
  display: flex; gap: 48px; list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { opacity: 1; color: var(--accent-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--text-dark);
  padding: 13px 28px;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: 400;
  border-radius: var(--border-radius);
}
.nav-cta:hover { background: var(--accent-primary); transform: translateY(-2px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; 
  transform: translateX(-50%); 
  width: 30%; 
  
  
  background: linear-gradient(to right, var(--bg-accent), transparent);

 
  pointer-events: none; 
}
.hero-left {
  background: var(--bg-accent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 70px 80px;
  position: relative;
  overflow: hidden;
  

}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--text-light);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-primary);
}
.hero-desc {
  font-size: 14px; /* Biraz büyütüldü */
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 340px;
  position: relative; z-index: 1;
  margin-bottom: 56px;
}
.hero-actions {
  display: flex; align-items: center; gap: 40px;
  position: relative; z-index: 1;
}
.btn-primary {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--text-dark);
  padding: 16px 36px;
  font-weight: 400;
  border-radius: var(--border-radius);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover { 
  background: var(--accent-primary); 
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 141, 155, 0.2);
}
.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.btn-ghost path { stroke: var(--text-dark); }
.btn-ghost:hover { opacity: 1; }
.hero-floral { display: none; } /* Sadeleştirmek için kaldırıldı, isterseniz geri açabilirsiniz */

.hero-right { position: relative; overflow: hidden; }
.hero-right video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Bu Kodla Değiştirin */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0; 
  background-color: rgba(224, 216, 209, 0.75); 
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: 48px; left: -24px;
  background: var(--bg-main);
  padding: 20px 28px;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0;
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}
.hero-badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 4px;
}
.hero-scroll { display: none; } /* Daha temiz bir görünüm için kaldırıldı */

/* MARQUEE */
.marquee-strip {
  background: var(--text-dark);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: marquee 25s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 32px; padding: 0 32px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(251, 245, 237, 0.6); /* --bg-main transparan */
  font-weight: 300;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-light); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* GENEL BÖLÜM STİLLERİ */
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 24px; font-weight: 400;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--text-light); opacity: 0.5;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300; line-height: 1.1; color: var(--text-dark);
  margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--accent-primary); }
.section-body {
  font-size: 15px; font-weight: 300; line-height: 2;
  color: var(--text-light); margin-bottom: 24px;
}

/* ABOUT */
.about {
  padding: 140px 60px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center; max-width: 1300px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-accent); position: relative; overflow: hidden;
  border-radius: var(--border-radius-large);
}
.about-divider {
  width: 40px; height: 1px;
  background: var(--border-color); margin: 36px 0;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about-feature {
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.about-feature:hover {
  border-color: var(--accent-secondary);
  background: var(--white);
  transform: translateY(-5px);
}
.about-feature-icon { margin-bottom: 12px; }
.about-feature-icon path, .about-feature-icon circle { stroke: var(--text-light); }
.about-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500; color: var(--text-dark);
  margin-bottom: 8px;
}
.about-feature-text {
  font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.7;
}

/* ABOUT VIDEO */
.video-container {
  position: relative; width: 100%; margin: 0 auto;
  overflow: hidden; cursor: pointer; border-radius: var(--border-radius-large);
}
.video-container video {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.video-play-button {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.3);
}
.video-play-button svg path { fill: var(--white); }
.video-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: white; padding: 8px 15px; border-radius: 20px;
  font-size: 12px; display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(5px); z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.video-container.playing .video-play-button { opacity: 0; visibility: hidden; }
.video-container:hover .video-play-button { transform: translate(-50%, -50%) scale(1.1); }

/* SERVICES */
.services {
  padding: 140px 0; background: var(--bg-accent);
  position: relative; overflow: hidden;
}
.services-header {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  margin-bottom: 80px; display: flex; align-items: flex-end; justify-content: space-between;
}
.services-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg-main); padding: 52px 40px;
  position: relative; overflow: hidden;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(77, 61, 68, 0.1);
}
.service-icon {
  width: 52px; height: 52px; margin-bottom: 32px;
  opacity: 0.6; transition: opacity 0.3s;
}
.service-icon path, .service-icon circle, .service-icon rect, .service-icon ellipse {
  stroke: var(--text-light); fill: var(--accent-secondary);
}
.service-icon circle[fill="#e8ebd6"] { /* İkon içi renk */
  fill: var(--bg-accent);
}
.service-card:hover .service-icon { opacity: 1; }
.service-num {
  position: absolute; top: 32px; right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: var(--border-color);
  line-height: 1; transition: color 0.4s;
}
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 500; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.2;
}
.service-desc {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: var(--text-light); margin-bottom: 32px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); border: 1px solid var(--border-color);
  padding: 6px 14px; font-weight: 300;
  border-radius: 20px;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}
.service-card:hover .service-tag {
  border-color: var(--accent-secondary); color: var(--text-dark);
  background-color: var(--white);
}

/* CUSTOMER EXPERIENCE VIDEO GALLERY */
.gallery {
  padding: 140px 60px; max-width: 1300px; margin: 0 auto;
}
.gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 60px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 9/16; width: 100%;
  border-radius: var(--border-radius-large);
  box-shadow: 0 10px 30px rgba(77, 61, 68, 0.05);
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-accent);
}
.gallery-item.video-item { cursor: pointer; }
.gallery-item.video-item .gallery-placeholder {
  position: relative; padding: 0; overflow: hidden;
}
.gallery-item.video-item video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.gallery-item.video-item:hover video { transform: scale(1.05); }
.gallery-item.video-item .video-badge {
  background: var(--accent-primary);
}
.testimonial-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 24px 16px 16px 16px; z-index: 2;
}
.testimonial-name {
  color: white; font-weight: 500; font-size: 16px;
  font-family: 'Cormorant Garamond', serif; font-style: normal;
  letter-spacing: 0.05em; display: block; margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.testimonial-service {
  color: #ffffff; font-size: 9px;
 
  
  display: inline-block; padding: 4px 10px; border-radius: 30px;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2);
}

/* TESTIMONIALS */
.testimonials {
  padding: 140px 60px; max-width: 1300px; margin: 0 auto;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 60px;
}
.testimonial-card {
  padding: 44px 40px; border: 1px solid var(--border-color);
  position: relative; background: var(--white);
  border-radius: var(--border-radius-large);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(77, 61, 68, 0.1);
  border-color: transparent;
}
.testimonial-quote {
  position: absolute; top: 28px; right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; line-height: 1;
  color: rgba(224, 216, 209, 0.5); /* --border-color */
  font-weight: 300; user-select: none;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 400; font-style: italic; line-height: 1.6;
  color: var(--text-dark); margin-bottom: 32px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--accent-secondary); font-style: italic;
}
.testimonial-name {
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  letter-spacing: 0.05em;
}
.testimonial-service {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); font-weight: 300; margin-top: 3px;
}
.star-row { display: flex; gap: 4px; margin-bottom: 20px; }
.star-row svg path { fill: var(--accent-secondary); }

/* BOOKING / FORM */
.booking {
  background: var(--text-dark);
  padding: 140px 60px; position: relative; overflow: hidden;
}
.booking-inner {
  max-width: 1300px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  position: relative; z-index: 1;
}
.booking-content .section-eyebrow, .booking-content .section-body { color: rgba(251, 245, 237, 0.6); }
.booking-content .section-eyebrow::before { background: rgba(251, 245, 237, 0.3); }
.booking-content .section-title { color: var(--bg-main); }
.booking-info { margin-top: 56px; display: flex; flex-direction: column; gap: 28px; }
.booking-info-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(251, 245, 237, 0.1);
}
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon { flex-shrink: 0; margin-top: 2px; }
.booking-info-icon path, .booking-info-icon circle { stroke: var(--text-light); }
.booking-info-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251, 245, 237, 0.4); font-weight: 300; margin-bottom: 8px;
}
.booking-info-value {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 300; color: var(--bg-main); line-height: 1.4;
}
.booking-info-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
.booking-info-value a:hover { color: var(--accent-primary); }
.booking-form {
  background: rgba(251, 245, 237, 0.05);
  border: 1px solid rgba(251, 245, 237, 0.1);
  padding: 52px; border-radius: var(--border-radius-large);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251, 245, 237, 0.5); font-weight: 300; margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(251, 245, 237, 0.2);
  color: var(--bg-main); font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 300; padding: 12px 0;
  outline: none; transition: border-color 0.3s ease;
  letter-spacing: 0.05em; border-radius: 0; /* formda radius olmasın */
}
.form-select {
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a5a5' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.form-select option { background: var(--text-dark); color: var(--bg-main); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-primary);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(251, 245, 237, 0.4); }
.form-submit {
  width: 100%; background: var(--accent-primary); color: var(--white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500; padding: 18px 36px; cursor: none;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 16px; border-radius: var(--border-radius);
}
.form-submit:hover { background: var(--white); color: var(--accent-primary); transform: translateY(-2px); }

/* FOOTER */
/* ===== SOSYAL MEDYA İKON RENKLERİ ===== */







footer {
  background: var(--bg-accent);
  padding: 80px 60px 40px;
  color: var(--text-dark);
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color); margin-bottom: 40px;
}
.footer-brand svg { display: none; } 
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 500; color: var(--text-dark); letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 14px; font-weight: 300; color: var(--text-light);
  line-height: 1.8; margin-bottom: 28px;
}
.footer-social a i {
  color: #4d3d44;
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-dark); font-weight: 500; margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-size: 14px; font-weight: 300; color: var(--text-light);
  text-decoration: none; transition: color 0.3s; letter-spacing: 0.03em;
}
.footer-col ul li a:hover { color: var(--accent-primary); }
.footer-hours li {
  display: flex; justify-content: space-between; font-size: 14px;
  font-weight: 300; color: var(--text-light); margin-bottom: 12px;
}
.footer-hours .day { color: var(--text-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy, .footer-links a {
  font-size: 12px; color: var(--text-light); font-weight: 300;
  letter-spacing: 0.05em; text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-dark); }

/* ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* MOBILE NAV */
/* Desktop görünümü - varsayılan */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-toggle {
  display: none; /* Desktop'ta gizle */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .nav-toggle {
    display: block; /* Mobil'de göster */
    width: 30px;
    height: 30px;
    position: relative;
  }
  
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333; /* Rengi sitenize göre ayarlayın */
    position: absolute;
    transition: all 0.3s;
  }
  
  .nav-toggle span:first-child {
    top: 8px;
  }
  
  .nav-toggle span:last-child {
    bottom: 8px;
  }
  
  /* Hamburger menü animasyonu */
  .nav-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 14px;
  }
  
  .nav-toggle.active span:last-child {
    transform: rotate(-45deg);
    bottom: 13px;
  }
  
  /* Mobil menü paneli */
  .nav-links {
    display: none; /* Başlangıçta gizle */
    position: fixed;
    top: 90px; /* Navbar yüksekliğinize göre ayarlayın */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav-links.active {
    display: flex; /* Menü açıkken göster */
  }
  
  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 18px;
    display: block;
    padding: 10px;
  }
  
  /* GTranslate widget'ı mobilde düzenle */
  .gtranslate_wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; display: block; }
  .hero-left { padding: 100px 24px 60px; }
  .about, .gallery, .testimonials { padding: 80px 24px; }
  .services { padding: 80px 0; }
  .services-header, .services-grid { padding: 0 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .booking { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }

  .video-play-button { width: 60px; height: 60px; }
  .video-play-button svg { width: 30px; height: 30px; }
  .video-badge { top: 10px; right: 10px; padding: 5px 12px; font-size: 10px; }
}