/* =====================================================
   KENDİSİBİR MEKAN - Ana Stil Dosyası
   Kahverengi/Siyah Teması
   ===================================================== */

/* CSS Variables */
:root {
  --primary: #4A3728;
  --primary-dark: #3A2A1E;
  --primary-light: #5d483a;
  --secondary: #8B7355;
  --accent: #D4A574;
  --accent-light: #E8C9A8;
  --accent-dark: #b88a5c;
  --dark: #1A1A1A;
  --darker: #0D0D0D;
  --light: #EDE5DC;
  --cream: #F5EDE4;
  --sand: #E6DCD0;
  --warm-white: #FAF7F2;
  --text: #2C2420;
  --text-light: #6B5D52;
  --overlay: rgba(26, 26, 26, 0.85);
  --shadow: 0 4px 20px rgba(74, 55, 40, 0.15);
  --shadow-lg: 0 10px 40px rgba(74, 55, 40, 0.2);
  --shadow-xl: 0 25px 60px rgba(74, 55, 40, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Text Selection */
::selection {
  background: var(--accent);
  color: var(--dark);
}

::-moz-selection {
  background: var(--accent);
  color: var(--dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Skip Link (Accessibility) */
/* Skip Link (Accessibility) */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--light);
  padding: 12px 20px;
  z-index: 9999;
  font-weight: 500;
  text-decoration: none;
  border-bottom-right-radius: var(--radius);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  box-shadow: 0 4px 15px rgba(74, 55, 40, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 55, 40, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 55, 40, 0.2);
}

/* =====================================================
   Event Banner (Top)
   ===================================================== */
/* Event Banner */
.event-banner {
  background: linear-gradient(135deg, #1a1a1a, #2c241b);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
  will-change: transform;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.event-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.event-banner .event-icon {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.event-banner .event-text {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.event-banner .event-date {
  background: var(--accent);
  color: var(--darker);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

.event-banner.hidden {
  display: none;
}

/* =====================================================
   Header & Navigation
   ===================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 165, 116, 0.25);
}

/* Header içindeki yazı ve butonlar - her zaman açık renk */
header .logo-text {
  color: var(--light);
}

header .nav-links a {
  color: var(--light);
}

header .nav-links a:hover {
  color: var(--accent);
}

header .nav-links a::after {
  background: var(--accent);
}



header .mobile-toggle span {
  background: var(--light);
}

header.has-banner {
  top: 44px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(74, 55, 40, 0.2);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(10deg);
  box-shadow: 0 6px 20px rgba(74, 55, 40, 0.3);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Desktop'ta gizle - sadece mobil menüde görünsün */
.nav-social-mobile {
  display: none;
}

.nav-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.4rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(74, 55, 40, 0.3);
}

.nav-social a:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--light);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(74, 55, 40, 0.4);
}

/* QR Menu Button - Special Style */
.nav-social .qr-menu-btn {
  background: linear-gradient(135deg, var(--accent), #c49463);
  position: relative;
  animation: qrPulse 3s ease-in-out infinite;
  color: var(--primary-dark);
}

.nav-social .qr-menu-btn::after {
  content: 'QR Menü';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-social .qr-menu-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  animation: none;
}

@keyframes qrPulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.6);
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 50%, var(--light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 60%);
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--sand), transparent);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
  padding-left: 30px;
  /* Space for the line */
}

/* Decorative Vertical Line */
.hero-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 120px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
  border-radius: 4px;
  opacity: 0.8;
}

/* Dot Pattern */
.hero-pattern {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 240px;
  height: 240px;
  background-image: radial-gradient(var(--secondary) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.15;
  z-index: -1;
  mask-image: radial-gradient(circle, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
}

/* Watercolor / Coffee Splash Effect */
.hero-splash-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.splash {
  position: absolute;
  filter: blur(50px);
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: splash-pulse 10s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Sol Üst - Büyük Ana Leke */
.splash-1 {
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 40% 40%, #E8C9A8, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transform: rotate(-15deg);
}

/* Sol Alt */
.splash-2 {
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 50% 50%, #D4A574, transparent 65%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: -3s;
}

/* Sağ Üst */
.splash-3 {
  top: -30%;
  right: -20%;
  width: 900px;
  height: 800px;
  background: radial-gradient(circle at 60% 40%, rgba(139, 69, 19, 0.1), transparent 70%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(45deg);
  animation-duration: 12s;
}

/* Sağ Alt - Detay */
.splash-4 {
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, #E8C9A8, transparent 70%);
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 67%;
  opacity: 0.4;
}

@keyframes splash-pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(1.1) rotate(3deg);
  }
}

.hero-text h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Sanat kelimesi arkası vurgu */
.hero-text h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: calc(100% + 10px);
  height: 35%;
  background: var(--accent-light);
  opacity: 0.5;
  z-index: -1;
  transform: skew(-10deg) rotate(-2deg);
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: white;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-feature i {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::after {
  width: 300px;
  height: 300px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: rotate(0);
}

.hero-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
  max-width: 320px;
  z-index: 10;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-badge-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #4285F4;
  /* Google Blue */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-badge-text {
  flex: 1;
}

.hero-badge-text span {
  display: block;
  font-size: 0.8rem;
  color: #5f6368;
  font-weight: 500;
  margin-bottom: 4px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-row strong {
  font-size: 1.4rem;
  color: #202124;
  line-height: 1;
}

.stars {
  color: #F4B400;
  /* Google Yellow */
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.hero-badge-text small {
  display: block;
  font-size: 0.75rem;
  color: #5f6368;
  margin-top: 2px;
}

/* =====================================================
   Section Common Styles
   ===================================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Başlık altına dekoratif çizgi */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 3px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =====================================================
   Menu Section
   ===================================================== */
.menu {
  background: linear-gradient(180deg, var(--sand) 0%, var(--light) 50%, var(--cream) 100%);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.menu-category-btn {
  padding: 12px 25px;
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.menu-category-btn:hover::before {
  left: 100%;
}

.menu-category-btn:hover,
.menu-category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 15px rgba(74, 55, 40, 0.3);
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  min-height: 200px;
  /* Issue 3: Ensure height for loading/empty states */
}

.menu-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(74, 55, 40, 0.08);
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.15);
}

.menu-item-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--accent-light);
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 20px;
  position: relative;
  background: white;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.menu-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
  color: var(--accent);
}

.menu-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), #c49463);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-item-description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.menu-item-badge {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--accent-light), #f5e6d8);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* =====================================================
   Reviews Section
   ===================================================== */
.reviews {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--sand) 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 5%;
  font-size: 400px;
  font-family: Georgia, serif;
  color: rgba(74, 55, 40, 0.05);
  /* Darker watermark for light bg */
  line-height: 1;
}

.reviews .section-tag {
  background: rgba(74, 55, 40, 0.1);
  color: var(--primary);
}

.reviews .section-header h2 {
  color: var(--primary);
}

.reviews .section-header p {
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 165, 116, 0.2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 55, 40, 0.15);
}


.review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(212, 165, 116, 0.15);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.3);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  /* Uzun yorumları kısalt */
  display: -webkit-box;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Devamını Oku butonu */
.review-toggle-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  margin-top: -10px;
  margin-bottom: 15px;
  display: none;
  transition: all 0.3s ease;
}

.review-toggle-btn:hover {
  color: var(--light);
  text-decoration: underline;
}

.review-toggle-btn i {
  margin-left: 5px;
}

/* Yorum Modal */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.review-modal {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.review-modal-overlay.active .review-modal {
  transform: scale(1) translateY(0);
}

.review-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.review-modal-close:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(90deg);
}

.review-modal-content {
  padding: 40px;
}

.review-modal-stars {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.review-modal-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light);
  font-style: italic;
  margin-bottom: 30px;
}

.review-modal-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-modal-avatar {
  width: 55px;
  height: 55px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

.review-modal-author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--light);
}

.review-modal-author-source {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-top: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .review-modal {
    max-width: 95%;
    max-height: 85vh;
  }

  .review-modal-content {
    padding: 30px 25px;
  }

  .review-modal-text {
    font-size: 1rem;
  }
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--dark);
}

.review-author-name {
  font-weight: 600;
}

.review-author-source {
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* Reviews Slider */
.reviews-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-slider {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.reviews-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reviews-slide.active {
  opacity: 1;
}

.review-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  transform: scale(1.1);
}

.review-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.review-nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--light);
  transform: none;
}

/* Slider Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.reviews-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-dots .dot:hover {
  border-color: var(--accent);
}

.reviews-dots .dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* =====================================================
   Gallery Section
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

/* Hide cloned items on desktop (used for mobile infinite scroll) */
.cloned-item {
  display: none !important;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 55, 40, 0.8), rgba(26, 26, 26, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-overlay::after {
  content: 'Büyüt';
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery Loading */
.gallery-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.gallery-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   Location Section
   ===================================================== */
.location {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.location-info {
  padding-right: 30px;
}

.location-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.location-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(74, 55, 40, 0.25);
  transition: all 0.3s ease;
}

.location-item:hover .location-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(74, 55, 40, 0.35);
}

.location-item-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.location-item-content p {
  color: var(--text-light);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--darker);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-directions:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, #0f0f0f 100%);
  color: var(--light);
  padding: 60px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: var(--light);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Tablet/mobil için footer-bottom düzeni */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .admin-login-link {
    order: -1;
    margin-bottom: 5px;
  }
}

.admin-login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.admin-login-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.admin-login-link i {
  font-size: 0.9rem;
}

/* =====================================================
   Scroll to Top Button
   ===================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(74, 55, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet için scroll-to-top footer'a binmesin */
@media (max-width: 992px) {
  .scroll-to-top {
    bottom: 85px;
  }
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

.site-designer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.site-designer i {
  color: var(--accent);
}

.site-designer a {
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.site-designer a:hover {
  color: var(--light);
  text-decoration: underline;
}

/* =====================================================
   Lightbox
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* Mobile adjust for lightbox nav */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    /* More visible on mobile */
    border: none;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

/* =====================================================
   Loading Spinner
   ===================================================== */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    animation: none;
    /* Fix Issue 2: animation transform conflicts with centering transform */
    bottom: -40px;
    width: 90%;
    max-width: 340px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding-right: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .reviews-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  /* Mobil menüdeki yazılar açık renk */
  .nav-links a {
    color: var(--light) !important;
    font-size: 1.2rem;
    padding: 15px 30px;
  }

  .nav-links a:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Çarpı butonu (menü açıkken) beyaz */
  .mobile-toggle.active span {
    background: var(--light) !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Desktop'ta nav-social-mobile gizle, sadece mobilde göster */
  /* Desktop'ta nav-social-mobile gizle, sadece mobilde göster */
  .nav-social-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
  }

  .nav-social-mobile a {
    width: auto;
    height: auto;
    min-width: 200px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light);
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 12px 20px;
    text-decoration: none;
  }

  .nav-social-mobile a span {
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .nav-social-mobile a i {
    font-size: 1.3rem;
    color: var(--accent);
  }

  .nav-social-mobile a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
  }

  .nav-social-mobile a:hover i {
    color: var(--dark);
  }



  .nav-social-mobile .qr-menu-btn:hover {
    background: var(--accent);
    color: var(--dark);
  }

  /* Desktop nav-social'ı mobil'de gizle */
  .nav-social {
    display: none !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  section {
    padding: 70px 0;
  }

  .reviews-slide {
    grid-template-columns: 1fr;
  }

  /* Hide navigation buttons on mobile - use swipe instead */
  .review-nav-btn {
    display: none !important;
  }

  /* Make reviews slider full width without button gaps */
  .reviews-slider-container {
    gap: 0;
  }

  /* Make review cards wider on mobile */
  .reviews-slider {
    padding: 0;
    margin: 0 -10px;
  }

  .review-card {
    padding: 25px 20px;
    min-width: calc(100vw - 60px);
    margin: 0 10px;
  }

  /* Hide "All" category button on mobile per user request */
  .menu-category-btn[data-category="all"] {
    display: none;
  }

  /* ========== MOBILE PERFORMANCE OPTIMIZATIONS ========== */
  /* Disable heavy GPU animations on mobile devices */

  /* Disable splash effects - main cause of mobile jank */
  .hero-splash-container {
    display: none !important;
  }

  /* Disable shimmer animation on event banner */
  .event-banner::before {
    animation: none !important;
    display: none;
  }

  /* Simplify hero pseudo-elements */
  .hero::before,
  .hero::after {
    display: none;
  }

  /* Disable hero pattern dots */
  .hero-pattern {
    display: none;
  }

  /* Simplify hero background */
  .hero {
    background: var(--cream);
  }

  /* Use simpler transitions */
  .hero-text,
  .hero-image,
  .hero-content {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Menu Categories - 3 Column Grid Layout */
  .menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px 20px;
    margin: 0 0 30px 0;
    justify-content: center;
  }

  .menu-categories::-webkit-scrollbar {
    display: none;
  }

  .menu-category-btn {
    margin: 0;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.85rem;
    line-height: 1.2;
  }

  /* Gallery Horizontal Scroll (Mobile) */
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory;  -- Disable snap for smooth auto-scroll flow */
    gap: 15px;
    padding-bottom: 20px;
    margin: 0 -20px;
    padding: 0 20px 20px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
    /* Override grid */
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  /* Show cloned items on mobile for infinite loop */
  .cloned-item {
    display: block !important;
  }

  .gallery-item {
    min-width: 85vw;
    height: 300px;
    /* scroll-snap-align: center; -- Disable snap for smooth flow */
    border-radius: var(--radius);
    margin-bottom: 0;
    flex-shrink: 0;
    /* Prevent shrinking */
  }

  .gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    min-width: 85vw;
  }

  /* Mobile Horizontal Card Style (Menu) */
  .menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 120px;
    height: auto;
  }

  .menu-item-image {
    width: 110px;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .menu-item:hover .menu-item-image {
    transform: none;
  }

  .menu-item-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-item-header {
    margin-bottom: 5px;
    align-items: center;
  }

  .menu-item-name {
    font-size: 1rem;
    margin-right: 10px;
  }

  .menu-item-price {
    font-size: 1rem;
  }

  .menu-item-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .menu-item-badge {
    align-self: flex-start;
    padding: 3px 10px;
    font-size: 0.7rem;
    margin-top: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Make review cards even wider on small screens */
  .review-card {
    min-width: calc(100vw - 40px);
    padding: 20px 15px;
    margin: 0 5px;
  }

  .reviews-slider {
    margin: 0 -5px;
  }

  /* Mobil event banner inceleştirme */
  .event-banner {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-height: auto;
  }

  .event-banner-content {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .event-banner .event-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
  }

  .event-banner .event-icon {
    font-size: 1rem;
    display: none;
    /* Mobilde ikonu gizle alan kazanmak için */
  }

  .event-banner .event-date {
    padding: 2px 8px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  /* Mobil Header İnceltme */
  nav {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .mobile-toggle {
    padding: 5px;
  }

  .mobile-toggle span {
    width: 22px;
  }

  /* Hero decorative line - disable on mobile */
  .hero-text::before {
    display: none;
  }

  /* Hero span underline effect - disable on mobile */
  .hero-text h1 span::after {
    display: none;
  }
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* Smooth fade animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}