/* ==========================================================================
   VADI VILLA (371 U) DESIGN SYSTEM & STYLES
   ========================================================================== */

/* System Fonts - No external imports */

:root {
  /* Color Palette - Pantone 371 U inspired */
  --color-primary: #3E4A35;       /* Deep Forest Olive */
  --color-primary-rgb: 62, 74, 53;
  --color-primary-light: #62714B; /* Pantone 371 U approximation */
  --color-primary-light-rgb: 98, 113, 75;
  --color-accent: #C59B6D;        /* Warm Gold/Sand */
  --color-accent-rgb: 197, 155, 109;
  --color-accent-hover: #B58B5E;
  
  /* Neutral Colors */
  --color-bg: #F4F2EB;            /* Deeper Linen Off-White Background */
  --color-bg-rgb: 244, 242, 235;
  --color-surface: #FAF9F5;       /* Warm Cream Surface (Broken White) */
  --color-text-primary: #1C2317;  /* Dark Olive Charcoal */
  --color-text-secondary: #5C6654;/* Muted Greenish Gray */
  --color-border: #DFE2DA;        /* Slightly warmer soft border */
  
  /* Typography - System Defaults */
  --font-display: serif;
  --font-body: sans-serif;
  
  /* Spacing (8px grid system) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Shadows - Organic and soft */
  --shadow-sm: 0 2px 8px rgba(62, 74, 53, 0.03);
  --shadow-md: 0 10px 30px rgba(62, 74, 53, 0.05);
  --shadow-lg: 0 20px 50px rgba(62, 74, 53, 0.08);
  --shadow-xl: 0 30px 80px rgba(62, 74, 53, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* Easing Functions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain overlay */
.grain-overlay::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Selection */
::selection {
  background-color: var(--color-primary-light);
  color: var(--color-bg);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw + 0.5rem, 2.2rem); }
p {
  font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.1rem);
  color: var(--color-text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  border: none;
}

.btn-primary {
  color: var(--color-bg);
  background-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  color: var(--color-bg);
  background-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  color: var(--color-primary);
  background-color: transparent;
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-3px);
}

.btn-ghost {
  color: var(--color-primary);
  background-color: transparent;
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--color-accent);
}

/* Layout Utilities */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-bg);
}

.section-dark p {
  opacity: 0.85;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-asymmetric { grid-template-columns: 1.8fr 1fr; }
.grid-asymmetric-rev { grid-template-columns: 1fr 1.8fr; }

/* Media Placeholders */
.media-placeholder {
  background: radial-gradient(circle at 30% 30%, #E6E8E2 0%, #D8DBD2 100%);
  border: 1px solid rgba(62, 74, 53, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-height: 350px;
  transition: all 0.5s var(--ease-out-expo);
}

.media-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

.media-placeholder.dark {
  background: radial-gradient(circle at 30% 30%, #2D3727 0%, #1A2116 100%);
  border-color: rgba(250, 249, 245, 0.1);
}

.media-placeholder-icon {
  width: 54px;
  height: 54px;
  stroke: var(--color-primary-light);
  stroke-width: 1.2;
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.media-placeholder.dark .media-placeholder-icon {
  stroke: var(--color-accent);
}

.media-placeholder-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.media-placeholder.dark .media-placeholder-title {
  color: var(--color-bg);
}

.media-placeholder-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-secondary);
}

.media-placeholder.dark .media-placeholder-subtitle {
  color: var(--color-bg);
  opacity: 0.6;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background-color: rgba(244, 242, 235, 0); /* Fix for harsh color flash (transparent is rgba(0,0,0,0)) */
  border-bottom: 1px solid rgba(62, 74, 53, 0);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Soft, long fade */
}

.navbar.scrolled {
  background-color: rgba(244, 242, 235, 0.97);
  padding: 10px 0;
  border-bottom: 1px solid rgba(62, 74, 53, 0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  perspective: 1000px;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}

.navbar.scrolled .logo-img {
  height: 75px;
}

.logo-wrapper:hover .logo-img {
  transform: rotateY(360deg);
}

/* Dil Secici / Language Selector */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-left: var(--space-md);
  transition: color 0.4s ease;
}

.navbar.scrolled .lang-selector {
  color: var(--color-primary);
}

.lang-selector a {
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.4s ease;
  position: relative;
  padding: 0 !important;
}

.navbar.scrolled .lang-selector a {
  color: var(--color-text-secondary);
}

.lang-selector a::after {
  display: none !important;
}

.lang-selector a:hover {
  color: var(--color-accent) !important;
}

.lang-selector span.active {
  color: var(--color-accent);
  cursor: default;
}

.lang-selector span.divider {
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
  transition: color 0.4s ease;
}

.navbar.scrolled .lang-selector span.divider {
  color: var(--color-border);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--color-primary);
}

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

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background-color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  padding-top: 320px;
  padding-bottom: 80px;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 2s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 0.55;
  z-index: 2;
  animation: heroKenBurns 12s infinite alternate ease-in-out;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 37, 26, 0.4) 0%, rgba(30, 37, 26, 0.8) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  color: var(--color-bg);
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-block;
  position: relative;
  padding-left: var(--space-xl);
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1.5px;
  background-color: var(--color-accent);
}

.hero h1 {
  color: var(--color-bg);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero h1 span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
}

.hero-desc {
  font-size: clamp(0.95rem, 0.8vw + 0.8rem, 1.15rem);
  color: var(--color-bg);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 650px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-bg);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-hint-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--color-bg);
  border-radius: 10px;
  position: relative;
}

.scroll-hint-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--color-bg);
  border-radius: var(--radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}

/* ==========================================================================
   GARDEN (BAHÇE VURGUSU) SECTION
   ========================================================================== */
.garden-intro {
  margin-bottom: var(--space-3xl);
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.asymmetric-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: center;
}

.garden-text-block {
  padding-right: var(--space-xl);
}

.garden-features-list {
  list-style: none;
  margin: var(--space-2xl) 0;
  display: grid;
  gap: var(--space-md);
}

.garden-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.garden-feature-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  stroke-width: 2;
  margin-top: 3px;
  flex-shrink: 0;
}

.garden-feature-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.garden-feature-text p {
  font-size: 14px;
}

/* Garden Photos Slider */
.garden-slider-container {
  position: relative;
  margin-top: var(--space-3xl);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.garden-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%; /* 3 slides */
}

.slide {
  width: 33.333%;
  flex-shrink: 0;
  position: relative;
}

.slide-media {
  height: 600px;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-3xl) var(--space-3xl) var(--space-2xl);
  background: linear-gradient(to top, rgba(30, 37, 26, 0.95) 0%, rgba(30, 37, 26, 0.4) 60%, rgba(30, 37, 26, 0) 100%);
  color: var(--color-bg);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slide-caption-text h3 {
  color: var(--color-bg);
  font-size: 28px;
  margin-bottom: var(--space-xs);
}

.slide-caption-text p {
  color: var(--color-bg);
  opacity: 0.8;
  font-size: 15px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  pointer-events: none;
  z-index: 3;
}

.slider-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: rgba(250, 249, 245, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.slider-btn:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

.slider-btn:hover svg {
  stroke: var(--color-bg);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.slider-dots {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-3xl);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dot {
  width: 24px;
  height: 3px;
  background-color: rgba(250, 249, 245, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--color-accent);
  width: 48px;
}

/* ==========================================================================
   ROOMS (ODA İÇERİKLERİ) SECTION
   ========================================================================== */
.rooms-intro {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.rooms-intro .section-divider {
  margin: 0 auto var(--space-lg);
}

.rooms-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
}

.room-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.5s var(--ease-out-expo), border-color 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}

.room-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.room-media {
  position: relative;
  overflow: hidden;
  transform: translateZ(25px);
  transform-style: preserve-3d;
}

.room-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.room-card:hover .room-media .media-placeholder {
  transform: scale(1.03);
}

.room-content {
  padding: var(--space-2xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transform: translateZ(35px);
  transform-style: preserve-3d;
}

.room-title-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-md);
}

.room-title {
  font-size: 24px;
}

.room-price {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 700;
}

.room-price span {
  font-size: 20px;
}

.room-desc {
  font-size: 15px;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.room-specs {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.room-spec-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary-light);
  stroke-width: 1.5;
  fill: none;
}

.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.room-amenity-item {
  font-size: 13px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-amenity-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

/* Common Room Features / Genel Oda Özellikleri */
.common-amenities {
  margin-top: var(--space-3xl);
  background-color: var(--color-bg);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(62, 74, 53, 0.06);
}

.common-amenities-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw + 0.9rem, 1.8rem);
  color: var(--color-primary);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #F8F7F2;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(62, 74, 53, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
  background-color: var(--color-bg);
}

.amenity-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-primary-light);
  stroke: var(--color-primary-light);
}

.amenity-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* ==========================================================================
   ACTIVITIES (EĞLENCE & AKTİVİTELER) SECTION
   ========================================================================== */
.activities {
  background-color: #F1F0EA; /* Marginally darker off-white for depth contrast */
}

.activities-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.activity-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.activity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-primary);
  transition: all 0.4s var(--ease-out-expo);
  z-index: -1;
}

.activity-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.activity-card:hover::after {
  height: 100%;
}

.activity-card:hover h3,
.activity-card:hover p {
  color: var(--color-bg);
}

.activity-card:hover .activity-icon {
  stroke: var(--color-accent);
  transform: rotate(10deg) scale(1.1);
}

.activity-icon-wrapper {
  margin-bottom: var(--space-lg);
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.activity-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary-light);
  stroke-width: 1.2;
  fill: none;
  transition: all 0.4s var(--ease-out-expo);
}

.activity-title {
  font-size: 20px;
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.activity-desc {
  font-size: 14px;
  transition: color 0.3s ease;
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.activity-card-featured {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.activity-card-featured .activity-card-left {
  flex: 1;
}

.activity-card-featured .activity-card-right {
  width: 170px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.activity-card-featured .activity-video-container {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: 1px solid rgba(197, 155, 109, 0.4);
  background-color: #000;
}

.activity-card-featured .activity-video-container video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 992px) {
  .activity-card-featured {
    flex-direction: column;
    align-items: flex-start;
  }
  .activity-card-featured .activity-card-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .activity-card-featured {
    grid-template-columns: 1fr;
  }
}

.activities-video-banner .media-placeholder {
  min-height: 480px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s var(--ease-spring);
  z-index: 3;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-accent);
}

.video-play-btn:hover svg {
  fill: var(--color-bg);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  margin-left: 4px;
  transition: fill 0.3s ease;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin: var(--space-2xl) 0;
  display: grid;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.contact-text p, .contact-text a {
  font-size: 15px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  margin-top: var(--space-xl);
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--color-primary-light);
  background-color: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(98, 113, 75, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-placeholder-container {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder-container .media-placeholder {
  min-height: 350px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #1A2116; /* Deep forest night black */
  color: #D5D9CE;
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(250, 249, 245, 0.05);
}

.footer h3, .footer h4 {
  color: var(--color-bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.footer-brand h2 {
  color: var(--color-bg);
  margin-bottom: var(--space-md);
}

.footer-desc {
  color: #A3ABA0;
  font-size: 15px;
  margin-bottom: var(--space-xl);
  max-width: 320px;
}

.footer-logo-icon {
  stroke: var(--color-accent) !important;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.footer-links a {
  color: #A3ABA0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(250, 249, 245, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  font-size: 13px;
  color: #838A80;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  text-decoration: none;
  font-size: 13px;
  color: #838A80;
  transition: color 0.3s ease;
}

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

/* ==========================================================================
   ANIMATIONS (SCROLL-TRIGGERED & ENHANCEMENTS)
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }



/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1200px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slide-media {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .asymmetric-row {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .garden-text-block {
    padding-right: 0;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 75px;
  }

  .navbar.scrolled .logo-img {
    height: 50px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: right 0.5s var(--ease-out-expo);
    z-index: 999;
    padding: var(--space-4xl) var(--space-2xl);
    gap: var(--space-2xl);
    border-left: 1px solid var(--color-border);
  }
  
  .nav-links a {
    color: var(--color-primary) !important;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .slide-media {
    height: 400px;
  }
  
  .slide-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .slider-dots {
    right: 50%;
    transform: translateX(50%);
  }
  
  .slider-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .room-specs {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .room-amenities {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   VISUAL EFFECTS (3D Tilt, Cursor Follower, Particles)
   ========================================================================== */
.cursor-follower {
  width: 20px;
  height: 20px;
  background-color: rgba(98, 113, 75, 0.25);
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-follower {
    display: block;
  }
}

.cursor-follower.active {
  width: 55px;
  height: 55px;
  background-color: rgba(197, 155, 109, 0.15);
  border-color: var(--color-accent);
}

.fireflies-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ==========================================================================
   FRAMED PERIMETER GARDEN GALLERY (Çerçeveli & Sağa Kayan Bahçe Galerisi)
   ========================================================================== */
.framed-garden-container {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  padding: 16px;
  background: rgba(24, 34, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(197, 155, 109, 0.35);
  box-shadow: 0 30px 60px rgba(15, 22, 16, 0.5);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.framed-garden-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  width: 100%;
}

/* Center Showcase Display */
.framed-center-display {
  grid-column: 2 / span 3;
  grid-row: 2 / span 3;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(197, 155, 109, 0.45);
  background-color: #121813;
  min-height: 250px;
}

.framed-center-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.framed-center-display img.fade-zoom {
  opacity: 0.25;
  transform: scale(1.08);
}

.framed-center-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(15, 22, 16, 0.95) 0%, rgba(15, 22, 16, 0.5) 65%, transparent 100%);
  color: #faf9f5;
  pointer-events: none;
  z-index: 2;
}

.framed-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  background: rgba(197, 155, 109, 0.22);
  border: 1px solid rgba(197, 155, 109, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.framed-center-overlay h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #faf9f5;
  margin-bottom: 4px;
}

.framed-center-overlay p {
  font-size: 14px;
  color: rgba(250, 249, 245, 0.9);
}

/* Nav Buttons inside central display */
.framed-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 28, 21, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #faf9f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
}

.framed-nav-btn:hover {
  background: var(--color-accent);
  color: #121813;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 20px rgba(197, 155, 109, 0.7);
}

.framed-nav-btn.prev { left: 16px; }
.framed-nav-btn.next { right: 16px; }

.framed-nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Perimeter Thumbnail Boxes Layout - Perfect Square Tiles */
.framed-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #1a241b;
}

.framed-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.framed-thumb-box:hover {
  transform: scale(1.08);
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px rgba(197, 155, 109, 0.5);
  z-index: 5;
}

.framed-thumb-box:hover img {
  transform: scale(1.14);
}

/* Perimeter Slot positions (5x5 grid) */
/* Center display occupies columns 2-4, rows 2-4 */
/* Top Row (Row 1): slots 0, 1, 2 — 3 across the center */
.framed-thumb-box.slot-0  { grid-column: 2; grid-row: 1; }
.framed-thumb-box.slot-1  { grid-column: 3; grid-row: 1; }
.framed-thumb-box.slot-2  { grid-column: 4; grid-row: 1; }

/* Right Column (Col 5): slots 3, 4, 5 */
.framed-thumb-box.slot-3  { grid-column: 5; grid-row: 2; }
.framed-thumb-box.slot-4  { grid-column: 5; grid-row: 3; }
.framed-thumb-box.slot-5  { grid-column: 5; grid-row: 4; }

/* Bottom Row (Row 5): slots 6, 7, 8 — reversed for visual flow */
.framed-thumb-box.slot-6  { grid-column: 4; grid-row: 5; }
.framed-thumb-box.slot-7  { grid-column: 3; grid-row: 5; }
.framed-thumb-box.slot-8  { grid-column: 2; grid-row: 5; }

/* Left Column (Col 1): slots 9, 10, 11 */
.framed-thumb-box.slot-9  { grid-column: 1; grid-row: 4; }
.framed-thumb-box.slot-10 { grid-column: 1; grid-row: 3; }
.framed-thumb-box.slot-11 { grid-column: 1; grid-row: 2; }

/* Active Slot (Üst - Slot 0) Highlight */
.framed-thumb-box.active-slot {
  border-color: var(--color-accent);
  box-shadow: 0 0 25px rgba(197, 155, 109, 0.85), 0 0 10px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  z-index: 4;
}

/* Small badge showing item sequence */
.thumb-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(18, 24, 19, 0.8);
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Shifting Animation Effect */
.framed-thumb-box.is-shifting img {
  opacity: 0.25;
  transform: scale(0.88) rotate(3deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .framed-garden-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
  }
  .framed-center-display {
    grid-column: 2 / span 3;
    grid-row: 2 / span 3;
    min-height: 280px;
  }
  .framed-thumb-box.slot-5,
  .framed-thumb-box.slot-6,
  .framed-thumb-box.slot-10,
  .framed-thumb-box.slot-11,
  .framed-thumb-box.slot-20,
  .framed-thumb-box.slot-21 {
    display: none;
  }
}

@media (max-width: 768px) {
  .framed-garden-container {
    padding: 16px;
  }
  .framed-garden-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .framed-center-display {
    height: 280px;
    min-height: 280px;
    width: 100%;
  }
  .framed-thumb-box {
    aspect-ratio: 1 / 1;
    min-height: 70px;
  }
}

