/* =========================================================================
   Özcan Urun Butik Otel — kaynak Next.js (Tailwind v4) tasarımının
   birebir karşılığı. Tek derlenmiş statik dosya, build adımı gerektirmez.
   Marka paleti ve tüm utility'ler kaynak globals.css + componentlerden
   birebir taşınmıştır.
   ========================================================================= */

/* ---- Fonts (Google Fonts) ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ---- Design tokens (kaynak :root paletinden birebir) ---- */
:root {
  color-scheme: light;
  --navy: #163b5c;
  --navy-foreground: #f7f4ee;
  --turquoise: #2ca6b8;
  --turquoise-foreground: #ffffff;
  --cream: #f4ede1;
  --brown: #6b4b34;
  --gold: #c0883e;
  --whatsapp: #25d366;

  --background: #faf6ef;
  --foreground: #1f2d3a;
  --card: #ffffff;
  --card-foreground: #1f2d3a;
  --popover: #ffffff;
  --popover-foreground: #1f2d3a;
  --primary: #163b5c;
  --primary-foreground: #f7f4ee;
  --secondary: #2ca6b8;
  --secondary-foreground: #ffffff;
  --muted: #efe7da;
  --muted-foreground: #6b6356;
  --accent: #c0883e;
  --accent-foreground: #ffffff;
  --border: #e4dac9;
  --input: #e4dac9;
  --ring: #2ca6b8;
  --radius: 0.75rem;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
h1, h2, h3, h4 {
  margin: 0;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================================================
   Layout / display
   ========================================================================= */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.shrink-0 { flex-shrink: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.whitespace-nowrap { white-space: nowrap; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* inset / positioning */
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-4 { top: 1rem; }
.top-full { top: 100%; }
.top-1\/2 { top: 50%; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.left-1\/2.-translate-x-1\/2 { transform: translateX(-50%); }
.top-1\/2.-translate-y-1\/2 { transform: translateY(-50%); }

/* z-index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[70\] { z-index: 70; }

/* grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-px { gap: 1px; }

/* space-y */
.space-y-3 > * + * { margin-top: 0.75rem; }

/* =========================================================================
   Sizing
   ========================================================================= */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-64 { width: 16rem; }
.w-\[280px\] { width: 280px; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-44 { height: 11rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-\[340px\] { height: 340px; }
.h-\[78vh\] { height: 78vh; }

.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-11 { width: 2.75rem; height: 2.75rem; }
.size-14 { width: 3.5rem; height: 3.5rem; }
.min-h-11 { min-height: 2.75rem; }
.min-h-12 { min-height: 3rem; }

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-sm { max-width: 24rem; }

.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.w-\[82\%\] { width: 82%; }

/* =========================================================================
   Spacing (margin / padding)
   ========================================================================= */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-16 { padding-top: 4rem; }
.pr-2 { padding-right: 0.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-\[max\(0\.75rem\,env\(safe-area-inset-bottom\)\)\] {
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

.scroll-mt-20 { scroll-margin-top: 5rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* =========================================================================
   Typography
   ========================================================================= */
.font-heading { font-family: var(--font-heading); }
.font-script { font-family: var(--font-script); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.leading-\[1\.1\] { line-height: 1.1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* text colors */
.text-foreground { color: var(--foreground); }
.text-foreground\/80 { color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-primary-foreground\/70 { color: color-mix(in srgb, var(--primary-foreground) 70%, transparent); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white { color: #fff; }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-\[var\(--whatsapp\)\] { color: var(--whatsapp); }
.text-\[var\(--gold\)\] { color: var(--gold); }

/* =========================================================================
   Backgrounds
   ========================================================================= */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-card\/60 { background-color: color-mix(in srgb, var(--card) 60%, transparent); }
.bg-card\/80 { background-color: color-mix(in srgb, var(--card) 80%, transparent); }
.bg-cream { background-color: var(--cream); }
.bg-primary { background-color: var(--primary); }
.bg-muted\/40 { background-color: color-mix(in srgb, var(--muted) 40%, transparent); }
.bg-muted\/50 { background-color: color-mix(in srgb, var(--muted) 50%, transparent); }
.bg-secondary\/10 { background-color: color-mix(in srgb, var(--secondary) 10%, transparent); }
.bg-secondary\/20 { background-color: color-mix(in srgb, var(--secondary) 20%, transparent); }
.bg-foreground\/50 { background-color: color-mix(in srgb, var(--foreground) 50%, transparent); }
.bg-foreground\/90 { background-color: color-mix(in srgb, var(--foreground) 90%, transparent); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.bg-\[var\(--whatsapp\)\] { background-color: var(--whatsapp); }
.bg-\[\#10283d\] { background-color: #10283d; }

/* gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-grad-from, transparent), var(--tw-grad-via, transparent), var(--tw-grad-to, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-grad-from, transparent), var(--tw-grad-via, transparent), var(--tw-grad-to, transparent)); }
.from-background { --tw-grad-from: var(--background); }
.from-primary\/90 { --tw-grad-from: color-mix(in srgb, var(--primary) 90%, transparent); }
.via-background\/10 { --tw-grad-via: color-mix(in srgb, var(--background) 10%, transparent); }
.via-primary\/40 { --tw-grad-via: color-mix(in srgb, var(--primary) 40%, transparent); }
.to-transparent { --tw-grad-to: transparent; }

/* =========================================================================
   Borders / radius / ring / shadow
   ========================================================================= */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-border { border-color: var(--border); }
.border-primary\/20 { border-color: color-mix(in srgb, var(--primary) 20%, transparent); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }

.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) * 1.4); }
.rounded-2xl { border-radius: calc(var(--radius) * 1.8); }
.rounded-3xl { border-radius: calc(var(--radius) * 2.2); }
.rounded-full { border-radius: 9999px; }

.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, var(--border)); }
.ring-border { --tw-ring-color: var(--border); }
.ring-white\/10 { --tw-ring-color: rgba(255,255,255,0.1); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-black\/20 { --tw-shadow-color: rgba(0,0,0,0.2); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2), 0 4px 6px -4px rgba(0,0,0,0.2); }

/* combine ring with shadow when both present */
.shadow-md.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, var(--border)), 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }

/* =========================================================================
   Object fit / images
   ========================================================================= */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* =========================================================================
   Effects / transitions / filters
   ========================================================================= */
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-opacity { transition: opacity 0.7s ease-in-out; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.translate-x-0 { transform: translateX(0); }
.translate-x-full { transform: translateX(100%); }
.rotate-180 { transform: rotate(180deg); }

/* hover states */
.hover\:bg-card:hover { background-color: var(--card); }
.hover\:bg-muted:hover { background-color: var(--muted); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-white:hover { color: #fff; }
.hover\:brightness-95:hover { filter: brightness(0.95); }
.hover\:brightness-110:hover { filter: brightness(1.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.active\:brightness-95:active { filter: brightness(0.95); }

/* group hover */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* =========================================================================
   Responsive — sm (>=640px)
   ========================================================================= */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:h-52 { height: 13rem; }
  .sm\:h-60 { height: 15rem; }
  .sm\:h-72 { height: 18rem; }
  .sm\:h-80 { height: 20rem; }
  .sm\:h-\[420px\] { height: 420px; }
  .sm\:left-6 { left: 1.5rem; }
  .sm\:right-6 { right: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:w-\[340px\] { width: 340px; }
}

/* =========================================================================
   Responsive — lg (>=1024px)
   ========================================================================= */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:justify-center { justify-content: center; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:h-20 { height: 5rem; }
  .lg\:h-auto { height: auto; }
  .lg\:h-\[440px\] { height: 440px; }
  .lg\:h-\[460px\] { height: 460px; }
  .lg\:h-\[560px\] { height: 560px; }
  .lg\:min-h-\[680px\] { min-height: 680px; }
  .lg\:h-\[4\.5rem\] { height: 4.5rem; }
  .lg\:mb-10 { margin-bottom: 2.5rem; }
  .lg\:mb-14 { margin-bottom: 3.5rem; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:pt-20 { padding-top: 5rem; }
  .lg\:pr-10 { padding-right: 2.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:pb-0 { padding-bottom: 0; }
  .lg\:text-left { text-align: left; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:w-\[400px\] { width: 400px; }
  .lg\:scale-100 { transform: scale(1); }
  .lg\:scale-\[2\.1\] { transform: scale(2.1); }
  .lg\:pl-\[max\(2rem\,calc\(\(100vw-80rem\)\/2\+2rem\)\)\] {
    padding-left: max(2rem, calc((100vw - 80rem) / 2 + 2rem));
  }
}

/* =========================================================================
   Responsive — md (>=768px)
   ========================================================================= */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================================
   Responsive — xl (>=1280px)
   ========================================================================= */
@media (min-width: 1280px) {
  .xl\:gap-2 { gap: 0.5rem; }
}

/* =========================================================================
   Component helpers / JS-toggled states
   ========================================================================= */

/* Header — sabit üst bar + scroll gölgesi */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background-color: color-mix(in srgb, var(--background) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  background-color: color-mix(in srgb, var(--background) 95%, transparent);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

/* Logo scale (kaynak: küçükken lg:scale-[2.1], scroll'da lg:scale-100) */
.logo-img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  transform-origin: top left;
  transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .logo-img { height: 4.5rem; transform: scale(2.1); }
  .logo-img.is-scrolled { transform: scale(1); }
}

/* Ic sayfa basliklari: sabit header'daki buyuk logo ile sikismayi onler. */
.page-hero-section { padding-top: 5rem; }
@media (min-width: 1024px) {
  .page-hero-section { padding-top: 8rem; }
}

/* About page: dedicated detail layout, separate from the home page section. */
.about-page-hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.about-page-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-page-media {
  position: relative;
  height: 12rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.8);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}
.about-page-media-main {
  grid-column: span 2 / span 2;
  height: 18rem;
}
.about-timeline-item {
  position: relative;
}
.about-story-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-story-image {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.8);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}
.about-story-image-main {
  min-height: 16rem;
}

.avsa-page-hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.avsa-page-media {
  position: relative;
  height: 20rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2.2);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
@media (min-width: 640px) {
  .about-page-media { height: 14rem; }
  .about-page-media-main { height: 22rem; }
  .about-story-image { min-height: 15rem; }
  .about-story-image-main { min-height: 18rem; }
  .avsa-page-media { height: 24rem; }
}
@media (min-width: 1024px) {
  .about-page-hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
  .about-page-media { height: 15rem; }
  .about-page-media-main { height: 25rem; }
  .about-story-visual { max-width: 34rem; }
  .about-story-image { min-height: 12rem; }
  .about-story-image-main { min-height: 16rem; }
  .avsa-page-hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
  .avsa-page-media { height: 30rem; }
}

/* Mobil menü panel + overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.mobile-menu .menu-overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--foreground) 50%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu .menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  height: 100%;
  width: 82%;
  max-width: 24rem;
  flex-direction: column;
  background-color: var(--background);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .menu-overlay { opacity: 1; }
.mobile-menu.is-open .menu-panel { transform: translateX(0); }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* Hero slide noktaları */
.slide-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.slide-dot:hover { background-color: rgba(255,255,255,0.8); }
.slide-dot.is-active { width: 1.5rem; background-color: #fff; }

/* Oda sekmeleri */
.room-tab {
  min-height: 2.75rem;
  border-radius: 9999px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .room-tab { font-size: 1rem; } }
.room-tab:hover { color: var(--primary); }
.room-tab.is-active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

/* Galeri kart slider (Swiper yerine yatay scroll-snap) */
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
  border-radius: 9999px;
}
.gallery-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 280px;
}
@media (min-width: 640px) { .gallery-card { width: 340px; } }
@media (min-width: 1024px) { .gallery-card { width: 400px; } }

/* Ana sayfa galeri — Swiper cards effect (kaynak gallery.tsx). Genişlik
   blade'deki w-[280px]/sm/lg ile gelir; kartlar 4:3 ve tam genişlik. */
.home-gallery-swiper { max-width: 100%; overflow: visible; }
.home-gallery-swiper .swiper-slide {
  border-radius: 1rem;
  background: var(--card, #fff);
}
.home-gallery-swiper .gallery-card { width: 100%; }

/* Fallback: Swiper yüklenemezse (.no-swiper) yatay scroll'a dön — markup
   bozulmaz, kartlar yan yana kayar. */
.home-gallery-swiper.no-swiper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.home-gallery-swiper.no-swiper .swiper-wrapper {
  display: flex;
  gap: 1rem;
}
.home-gallery-swiper.no-swiper .swiper-slide {
  flex: 0 0 100%;
  transform: none !important;
}

/* Görsel sarmalayıcı — Next/Image fill karşılığı */
.img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
