/*
Theme Name: Troy Grille
Theme URI: https://troygrille.com
Author: Troy Grille
Author URI: https://troygrille.com
Description: Custom WordPress theme for Troy Grille — Authentic Turkish Street Food in Kent, Ohio. Mobile-first design with blue, white, and turquoise palette. Full restaurant showcase with menu, gallery, specials, and location.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: troygrille
Tags: restaurant, food, responsive, mobile-first, custom-colors, custom-menu, custom-logo, editor-style, translation-ready
*/

/* ==========================================================================
   ROOT VARIABLES & RESET
   ========================================================================== */
:root {
  --navy: #1e4068;          /* was #0d2b4e - lighter */
  --navy-deep: #14304f;     /* was #081a30 - lighter */
  --blue: #2a6a96;          /* was #1a5276 - lighter, more vibrant */
  --blue-mid: #3a8bc0;      /* was #2874a6 - lighter */
  --teal: #17a589;
  --teal-light: #1abc9c;
  --turquoise: #00b4d8;
  --sky: #b8eaf3;           /* was #90e0ef - lighter, better contrast on navy */
  --pale: #e0f4f8;          /* was #caf0f8 - lighter */
  --white: #ffffff;
  --off-white: #f7fbfd;
  --ink: #1a2e44;           /* was #0d2b4e - slightly lighter text */
  --muted: #4a5b6e;         /* was #5a6c7d - darker for better readability */
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  margin: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20, 48, 79, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(184,234,243,0.18);
  transition: all 0.3s;
}
.site-nav.scrolled {
  background: rgba(20, 48, 79, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-logo { height: 52px; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--sky);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(23,165,137,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  background: none;
  border: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(8, 26, 48, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 10px 0 30px;
  display: none;
  flex-direction: column;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--sky);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(144,224,239,0.1);
  transition: all 0.2s;
}
.mobile-menu a:hover { background: rgba(0,180,216,0.1); padding-left: 40px; }
.mobile-menu a.cta {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  margin: 16px 30px 0;
  border-radius: 50px;
  border: none;
  text-align: center;
  padding: 16px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 80px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,48,79,0.78) 0%, rgba(30,64,104,0.70) 40%, rgba(42,106,150,0.60) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,180,216,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(23,165,137,0.2) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(144,224,239,0.12);
  border: 1px solid rgba(144,224,239,0.3);
  color: var(--sky);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-light);
  animation: pulse 2s infinite;
}
.hero-logo-wrap {
  background: white;
  padding: 28px 38px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  margin-bottom: 36px;
  animation: fadeDown 1s 0.1s ease both;
  display: inline-block;
}
.hero-logo {
  width: 200px;
  max-width: 55vw;
  height: auto;
  display: block;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5.5vw, 46px);
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 16px;
  animation: fadeUp 0.9s 0.3s ease both;
  line-height: 1.2;
}
.hero-title em {
  color: var(--sky);
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(15px, 2.3vw, 17px);
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 36px;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.7s ease both;
}
.btn-primary, .btn-outline {
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  box-shadow: 0 8px 24px rgba(23,165,137,0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(23,165,137,0.6);
}
.btn-outline {
  border: 2px solid rgba(144,224,239,0.6);
  color: var(--sky);
  background: rgba(144,224,239,0.08);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(144,224,239,0.18);
  border-color: var(--sky);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.9s ease both;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--sky);
  font-weight: 700;
}
.hero-stats span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(144,224,239,0.75);
  font-weight: 500;
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%;
  height: 60px;
  display: block;
  z-index: 2;
}

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
.section {
  padding: 80px 24px;
  position: relative;
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 5vw, 38px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.2;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 15px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--turquoise));
  margin: 14px auto 16px;
  border-radius: 3px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  overflow: hidden;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { text-align: left; }
.about-text .divider { margin: 14px 0 16px; }
.about-text .section-eyebrow { text-align: left; }
.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-text strong { color: var(--navy); }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  background: white;
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border: 1px solid rgba(0,180,216,0.25);
  box-shadow: 0 4px 12px rgba(13,43,78,0.06);
}
.badge.featured {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--sky);
  border-color: transparent;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-visual img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13,43,78,0.2);
  object-fit: cover;
}
.about-img-1 {
  width: 65%;
  height: 380px;
  top: 0;
  right: 0;
  z-index: 2;
}
.about-img-2 {
  width: 55%;
  height: 260px;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 6px solid white;
}
.about-accent {
  position: absolute;
  top: 20px; left: 10px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  filter: blur(20px);
}
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 420px; }
  .about-text h2, .about-text .section-eyebrow { text-align: center; }
  .about-text .divider { margin: 14px auto 16px; }
  .about-badges { justify-content: center; }
}

/* ==========================================================================
   FEATURES RIBBON
   ========================================================================== */
.features {
  background: var(--navy);
  color: white;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,180,216,0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(23,165,137,0.12), transparent 50%);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
  position: relative;
}
.feature-item .feat-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--teal-light);
}
.feature-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--sky);
}
.feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu-section { background: white; }
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding: 0 4px;
}
.menu-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.menu-tab:hover {
  background: rgba(23,165,137,0.08);
  border-color: var(--teal);
  color: var(--teal);
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(13,43,78,0.25);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(13,43,78,0.06);
  border: 1px solid rgba(0,180,216,0.12);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13,43,78,0.15);
  border-color: rgba(0,180,216,0.4);
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--navy);
  flex: 1;
  line-height: 1.3;
  font-weight: 600;
}
.menu-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 18px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.menu-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.menu-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-cat { color: var(--turquoise); background: rgba(0,180,216,0.08); }
.tag-v { color: #16a34a; background: rgba(22,163,74,0.1); }
.tag-ve { color: #059669; background: rgba(5,150,105,0.1); }
.tag-gf { color: #c2410c; background: rgba(194,65,12,0.1); }
.tag-popular {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
}
.menu-size {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}
.menu-size strong { color: var(--navy); }

.byo-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, #0e6e8c 100%);
  color: white;
  padding: 36px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13,43,78,0.25);
}
.byo-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.25), transparent 70%);
  border-radius: 50%;
}
.byo-card > * { position: relative; }
.byo-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}
.byo-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-light);
  margin-bottom: 18px;
}
.byo-price small { font-size: 14px; color: var(--sky); font-weight: 500; }
.byo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.byo-step .num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--teal-light);
  font-weight: 700;
}
.byo-step h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin: 4px 0 6px;
  font-weight: 600;
}
.byo-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

/* ==========================================================================
   GALLERY STRIP
   ========================================================================== */
.gallery-strip {
  padding: 60px 0;
  background: var(--off-white);
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 280px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  box-shadow: 0 8px 24px rgba(13,43,78,0.15);
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,43,78,0.7) 0%, transparent 50%);
}
.gallery-item .caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  color: white;
  z-index: 2;
}
.gallery-item .caption strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  margin-bottom: 4px;
}
.gallery-item .caption span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
}
.video-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* YouTube thumbnail link */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20,48,79,0.25);
  background: var(--navy-deep);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
  aspect-ratio: 16 / 9;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

/* YouTube-style play button */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}
.video-play svg {
  width: 100%;
  height: 100%;
}
.video-play-bg {
  fill: #212121;
  fill-opacity: 0.85;
  transition: fill 0.3s ease, fill-opacity 0.3s ease;
}
.video-play-arrow {
  fill: #ffffff;
}

/* "Watch on YouTube" label */
.video-overlay-label {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Hover effects */
.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(20, 48, 79, 0.35);
}
.video-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.video-thumb:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb:hover .video-play-bg {
  fill: #cc0000;
  fill-opacity: 1;
}
.video-thumb:hover .video-overlay-label {
  background: rgba(204, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-section .section-sub {
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .video-section { padding: 60px 16px 40px; }
  .video-thumb { border-radius: 12px; margin-top: 26px; }
  .video-play { width: 64px; height: 46px; }
  .video-overlay-label { font-size: 10px; letter-spacing: 2px; padding: 6px 16px; bottom: 14px; }
}

/* ==========================================================================
   SPECIALS
   ========================================================================== */
.specials {
  color: white;
  padding: 80px 24px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,78,0.92) 0%, rgba(26,82,118,0.88) 100%);
  z-index: 0;
}
.specials > * { position: relative; z-index: 1; }
.specials .section-title { color: white; }
.specials .section-title em {
  background: linear-gradient(135deg, var(--sky), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.specials .section-sub { color: rgba(255,255,255,0.92); }
.specials .section-eyebrow { color: var(--teal-light); }
.special-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.special-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(144,224,239,0.25);
  border-radius: 20px;
  padding: 30px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s;
  text-align: center;
}
.special-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-6px);
  border-color: var(--sky);
}
.special-icon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}
.special-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--sky);
}
.special-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 16px;
}
.special-price {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-light);
}

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.experience { background: white; padding: 0; }
.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.exp-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.exp-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-content h2 { text-align: left; margin-bottom: 14px; }
.exp-content .divider { margin: 14px 0 16px; }
.exp-content .section-eyebrow { text-align: left; }
.exp-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.exp-list { list-style: none; margin-top: 20px; }
.exp-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,180,216,0.1);
}
.exp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  border-radius: 50%;
}
.exp-list li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
@media (max-width: 860px) {
  .exp-split { grid-template-columns: 1fr; }
  .exp-image { min-height: 300px; }
  .exp-content { padding: 50px 24px; }
  .exp-content h2, .exp-content .section-eyebrow { text-align: center; }
  .exp-content .divider { margin: 14px auto 16px; }
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location { background: var(--off-white); position: relative; }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.info-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(13,43,78,0.08);
}
.info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,180,216,0.12);
}
.info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-block p {
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 500;
}
.info-block p a { color: var(--blue-mid); }
.info-block p a:hover { color: var(--teal); }
.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13,43,78,0.12);
  min-height: 400px;
  background: #e0e0e0;
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 400px; }
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(23,165,137,0.35);
}
.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(23,165,137,0.5);
}
@media (max-width: 860px) {
  .location-inner { grid-template-columns: 1fr; }
  .info-card { padding: 28px 22px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--sky);
  text-align: center;
  padding: 60px 24px 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--turquoise), var(--sky));
}
.footer-logo-wrap {
  background: white;
  padding: 18px 24px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.footer-logo {
  height: 70px;
  display: block;
}
.footer-tag {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--sky);
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}
.soc-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(144,224,239,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  text-decoration: none;
  transition: all 0.25s;
}
.soc-link svg {
  display: block;
  width: 20px;
  height: 20px;
}
.soc-link:hover {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 180, 216, 0.3);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(144,224,239,0.12);
}
.footer-nav a {
  color: rgba(144,224,239,0.75);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--teal-light); }
.site-footer > p {
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Floating Order Button */
.floating-order {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(23,165,137,0.5);
  z-index: 998;
  display: none;
  align-items: center;
  gap: 8px;
  animation: floatIn 0.5s ease;
}
.floating-order:hover { transform: scale(1.05); }
@media (max-width: 860px) { .floating-order { display: inline-flex; } }

/* Animations */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse     { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
@keyframes floatIn   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   WordPress core classes
   ========================================================================== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85em; color: var(--muted); }
.sticky { display: block; }
.bypostauthor { display: block; }



/* ========================================================================== 
   CHEF PROFILE
   ========================================================================== */
.chef-section { background: radial-gradient(circle at 10% 20%, rgba(0,180,216,0.12), transparent 30%), linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%); overflow: hidden; }
.chef-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: 36px; align-items: stretch; }
.chef-card { background: white; border: 1px solid rgba(0,180,216,0.18); border-radius: 24px; padding: clamp(28px, 5vw, 48px); box-shadow: 0 22px 60px rgba(13,43,78,0.10); }
.chef-card .section-title, .chef-card .chef-kicker { text-align: left; }
.chef-card .divider { margin: 14px 0 22px; }
.chef-kicker { display: block; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.chef-alias { color: var(--blue-mid); font-weight: 700; letter-spacing: 0.5px; margin-top: -4px; margin-bottom: 0; }
.chef-card p { color: var(--muted); font-size: 16px; line-height: 1.78; margin-bottom: 18px; }
.chef-card p:last-child { margin-bottom: 0; }
.chef-highlights { background: linear-gradient(150deg, var(--navy-deep), var(--blue)); border-radius: 24px; padding: 34px 28px; color: white; display: flex; flex-direction: column; justify-content: center; gap: 18px; box-shadow: 0 22px 60px rgba(13,43,78,0.18); position: relative; overflow: hidden; }
.chef-highlights::before { content: ''; position: absolute; inset: -30%; background: radial-gradient(circle, rgba(144,224,239,0.18), transparent 45%); pointer-events: none; }
.chef-emblem, .chef-milestone { position: relative; z-index: 1; }
.chef-emblem { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 4px solid rgba(144,224,239,0.45); box-shadow: 0 12px 30px rgba(0,0,0,0.35); background: rgba(255,255,255,0.08); }
.chef-emblem img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chef-emblem strong { display: block; font-size: 54px; line-height: 1; color: white; }
.chef-milestone { background: rgba(255,255,255,0.08); border: 1px solid rgba(144,224,239,0.18); border-radius: 18px; padding: 18px; }
.chef-milestone strong { display: block; color: var(--sky); font-family: 'Cinzel', serif; font-size: 34px; line-height: 1; margin-bottom: 8px; }
.chef-milestone span { color: rgba(255,255,255,0.92); font-size: 13px; line-height: 1.55; }
@media (max-width: 860px) { .chef-inner { grid-template-columns: 1fr; } .chef-card .section-title, .chef-card .chef-kicker, .chef-alias { text-align: center; } .chef-card .divider { margin: 14px auto 22px; } }

/* ==========================================================================
   INTRO ANIMATION (Splash Screen)
   ========================================================================== */

/* Body scroll'unu kilitle */
html.tg-intro-locked,
html.tg-intro-locked body { overflow: hidden !important; height: 100vh; }

/* Ana intro overlay */
.tg-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(ellipse 80% 60% at center 65%, rgba(255,107,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at center, #1e4068 0%, #0a1f3a 50%, #050d1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tg-intro.tg-intro-ending {
  animation: tgIntroExit 0.7s cubic-bezier(0.5, 0, 0.75, 0) forwards;
}
@keyframes tgIntroExit {
  to { opacity: 0; transform: scale(1.12); visibility: hidden; }
}

/* Mangal ateşi alttaki sıcak parıltı */
.tg-intro-fire {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,140,40,0.5) 0%, rgba(255,80,0,0.3) 30%, transparent 70%);
  filter: blur(40px);
  opacity: 0;
  animation: tgFireGlow 4s ease-in-out 0s infinite;
}
@keyframes tgFireGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleY(1); }
  50%      { opacity: 0.9; transform: translateX(-50%) scaleY(1.15); }
}

/* Kıvılcımlar */
.tg-intro-embers { position: absolute; inset: 0; pointer-events: none; }
.tg-ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0;
  box-shadow: 0 0 12px rgba(255,140,40,0.9);
}
.tg-ember.s { width: 3px; height: 3px; background: #ffd97a; }
.tg-ember.m { width: 5px; height: 5px; background: #ffb347; }
.tg-ember.l { width: 8px; height: 8px; background: #ff8c28; }

/* 30 ember, negative delay'lerle her zaman havada bir tanesi olur */
.tg-ember:nth-child( 1) { left: 71%; animation: tgRise 5.1s linear -3.6s infinite; }
.tg-ember:nth-child( 2) { left: 11%; animation: tgRise 4.8s linear -1.9s infinite; }
.tg-ember:nth-child( 3) { left: 46%; animation: tgRise 4.1s linear -2.6s infinite; }
.tg-ember:nth-child( 4) { left: 74%; animation: tgRise 4.6s linear -3.1s infinite; }
.tg-ember:nth-child( 5) { left:  5%; animation: tgRise 4.0s linear -2.6s infinite; }
.tg-ember:nth-child( 6) { left: 66%; animation: tgRise 4.1s linear -1.1s infinite; }
.tg-ember:nth-child( 7) { left: 91%; animation: tgRise 5.4s linear -4.7s infinite; }
.tg-ember:nth-child( 8) { left: 61%; animation: tgRise 5.2s linear -3.0s infinite; }
.tg-ember:nth-child( 9) { left:  2%; animation: tgRise 5.4s linear -4.6s infinite; }
.tg-ember:nth-child(10) { left: 34%; animation: tgRise 4.3s linear -4.3s infinite; }
.tg-ember:nth-child(11) { left: 53%; animation: tgRise 4.2s linear -0.9s infinite; }
.tg-ember:nth-child(12) { left: 36%; animation: tgRise 3.6s linear -0.4s infinite; }
.tg-ember:nth-child(13) { left: 51%; animation: tgRise 3.8s linear -3.6s infinite; }
.tg-ember:nth-child(14) { left: 92%; animation: tgRise 5.4s linear -3.5s infinite; }
.tg-ember:nth-child(15) { left: 83%; animation: tgRise 4.6s linear -1.2s infinite; }
.tg-ember:nth-child(16) { left: 24%; animation: tgRise 4.7s linear -3.8s infinite; }
.tg-ember:nth-child(17) { left: 26%; animation: tgRise 4.6s linear -3.8s infinite; }
.tg-ember:nth-child(18) { left: 86%; animation: tgRise 4.4s linear -1.2s infinite; }
.tg-ember:nth-child(19) { left: 76%; animation: tgRise 3.7s linear -0.9s infinite; }
.tg-ember:nth-child(20) { left: 64%; animation: tgRise 3.7s linear -0.4s infinite; }
.tg-ember:nth-child(21) { left: 21%; animation: tgRise 5.3s linear -2.1s infinite; }
.tg-ember:nth-child(22) { left: 16%; animation: tgRise 4.9s linear -3.3s infinite; }
.tg-ember:nth-child(23) { left:  7%; animation: tgRise 5.1s linear -1.2s infinite; }
.tg-ember:nth-child(24) { left: 56%; animation: tgRise 3.6s linear -0.8s infinite; }
.tg-ember:nth-child(25) { left: 41%; animation: tgRise 5.1s linear -2.2s infinite; }
.tg-ember:nth-child(26) { left: 43%; animation: tgRise 5.5s linear -2.8s infinite; }
.tg-ember:nth-child(27) { left: 95%; animation: tgRise 4.7s linear -3.8s infinite; }
.tg-ember:nth-child(28) { left: 81%; animation: tgRise 4.3s linear -4.3s infinite; }
.tg-ember:nth-child(29) { left: 31%; animation: tgRise 4.6s linear -4.5s infinite; }
.tg-ember:nth-child(30) { left: 13%; animation: tgRise 3.8s linear -2.8s infinite; }

@keyframes tgRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.4); }
  5%   { opacity: 1; }
  40%  { transform: translateY(-40vh) translateX(15px) scale(1); opacity: 1; }
  75%  { transform: translateY(-75vh) translateX(-20px) scale(0.7); opacity: 0.6; }
  95%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-110vh) translateX(30px) scale(0.2); }
}

/* Logo arkası parıltı */
.tg-intro-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.25) 0%, rgba(23,165,137,0.15) 30%, transparent 65%);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  animation: tgGlowIn 1.5s ease-out 0.3s forwards, tgGlowPulse 3s ease-in-out 1.8s infinite;
}
@keyframes tgGlowIn { to { opacity: 1; } }
@keyframes tgGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* Logo sahnesi */
.tg-intro-stage {
  position: relative;
  width: min(440px, 75vw);
  z-index: 5;
  text-align: center;
}

.tg-intro-logo {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(0.5) translateY(60px);
  animation:
    tgLogoIn 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards,
    tgLogoBreathe 3.5s ease-in-out 2.1s infinite;
  filter: drop-shadow(0 0 25px rgba(0,180,216,0.8)) drop-shadow(0 0 50px rgba(255,140,40,0.4));
}
@keyframes tgLogoIn {
  0%   { opacity: 0; transform: scale(0.5) translateY(60px); filter: drop-shadow(0 0 0 rgba(0,180,216,0)); }
  60%  { opacity: 1; transform: scale(1.06) translateY(0); filter: drop-shadow(0 0 40px rgba(0,180,216,1)) drop-shadow(0 0 60px rgba(255,140,40,0.6)); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 0 25px rgba(0,180,216,0.8)) drop-shadow(0 0 50px rgba(255,140,40,0.4)); }
}
@keyframes tgLogoBreathe {
  0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 25px rgba(0,180,216,0.8)) drop-shadow(0 0 50px rgba(255,140,40,0.4)); }
  50%      { transform: scale(1.04) translateY(-2px); filter: drop-shadow(0 0 40px rgba(0,180,216,1)) drop-shadow(0 0 75px rgba(255,140,40,0.6)); }
}

/* Alt yazı */
.tg-intro-tagline {
  margin-top: 30px;
  font-family: 'Georgia', 'Cinzel', serif;
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: 10px;
  color: #b8eaf3;
  text-transform: uppercase;
  opacity: 0;
  white-space: nowrap;
  animation: tgTaglineIn 1s ease-out 1.6s forwards;
  text-shadow: 0 0 25px rgba(0,180,216,0.8);
  line-height: 1.6;
}
.tg-intro-tagline-line {
  display: inline;
}
.tg-intro-tagline-sep {
  display: inline;
}
@keyframes tgTaglineIn {
  0%   { opacity: 0; transform: translateY(15px); letter-spacing: 2px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 10px; }
}

/* Türk süsleme çizgileri */
.tg-intro-ornament {
  position: absolute;
  top: calc(50% - 50px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #00b4d8 30%, #b8eaf3 50%, #00b4d8 70%, transparent);
  opacity: 0;
  box-shadow: 0 0 10px rgba(0,180,216,0.6);
}
.tg-intro-ornament.left  { left: 5%; right: 62%; animation: tgOrnamentL 1s ease-out 1.2s forwards; }
.tg-intro-ornament.right { left: 62%; right: 5%; animation: tgOrnamentR 1s ease-out 1.2s forwards; }
@keyframes tgOrnamentL {
  0%   { opacity: 0; transform: scaleX(0); transform-origin: right; }
  100% { opacity: 0.7; transform: scaleX(1); transform-origin: right; }
}
@keyframes tgOrnamentR {
  0%   { opacity: 0; transform: scaleX(0); transform-origin: left; }
  100% { opacity: 0.7; transform: scaleX(1); transform-origin: left; }
}

.tg-intro-dot {
  position: absolute;
  top: calc(50% - 54px);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #b8eaf3, #00b4d8);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 15px #00b4d8;
  animation: tgDotIn 0.6s ease-out 1.8s forwards, tgDotTwinkle 2.5s ease-in-out 3s infinite;
}
@keyframes tgDotTwinkle {
  0%, 100% { opacity: 1; box-shadow: 0 0 15px #00b4d8; }
  50%      { opacity: 0.7; box-shadow: 0 0 25px #00b4d8, 0 0 40px rgba(0,180,216,0.4); }
}
.tg-intro-dot.left  { left: calc(38% - 4px); }
.tg-intro-dot.right { right: calc(38% - 4px); }
@keyframes tgDotIn {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

/* Enter butonu */
.tg-intro-enter {
  margin-top: 50px;
  padding: 16px 44px;
  font-family: 'Georgia', 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(23,165,137,0.85) 0%, rgba(0,180,216,0.85) 100%);
  border: 1px solid rgba(184,234,243,0.5);
  border-radius: 40px;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 40px rgba(0,180,216,0.4),
    0 0 60px rgba(255,140,40,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation:
    tgEnterIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 2.6s forwards,
    tgEnterPulse 2.5s ease-in-out 3.6s infinite;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
.tg-intro-enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.tg-intro-enter:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 15px 50px rgba(0,180,216,0.6),
    0 0 80px rgba(255,140,40,0.35),
    inset 0 1px 0 rgba(255,255,255,0.3);
  border-color: rgba(184,234,243,0.9);
}
.tg-intro-enter:hover::before {
  animation: tgEnterShine 0.7s ease-out;
}
.tg-intro-enter:active { transform: translateY(0) scale(0.98); }
@keyframes tgEnterIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tgEnterPulse {
  0%, 100% {
    box-shadow:
      0 10px 40px rgba(0,180,216,0.4),
      0 0 60px rgba(255,140,40,0.2),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
  50% {
    box-shadow:
      0 12px 50px rgba(0,180,216,0.6),
      0 0 90px rgba(255,140,40,0.35),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}
@keyframes tgEnterShine {
  to { transform: translateX(100%); }
}
.tg-intro-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.tg-intro-enter:hover .tg-intro-arrow { transform: translateX(4px); }

/* Hareketi azaltma tercihi olan kullanıcılar için */
@media (prefers-reduced-motion: reduce) {
  .tg-intro { display: none !important; }
  html.tg-intro-locked, html.tg-intro-locked body { overflow: auto !important; height: auto; }
}

/* Mobil ayarları */
@media (max-width: 640px) {
  .tg-intro-ornament.left  { left: 2%; right: 70%; }
  .tg-intro-ornament.right { left: 70%; right: 2%; }
  .tg-intro-dot.left  { left: calc(30% - 4px); }
  .tg-intro-dot.right { right: calc(30% - 4px); }
  .tg-intro-tagline {
    font-size: 10px;
    letter-spacing: 6px;
    white-space: normal;
    line-height: 1.9;
  }
  /* Her iki satır kendi satırında, ortalı */
  .tg-intro-tagline-line { display: block; }
  .tg-intro-tagline-sep  { display: none; }
  .tg-intro-enter { margin-top: 36px; padding: 14px 36px; font-size: 11px; letter-spacing: 4px; }
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 240px;
  color: rgba(0, 180, 216, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Rating summary */
.reviews-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(20, 48, 79, 0.1);
  margin: 8px 0 36px;
}
.reviews-stars {
  color: #ffb800;
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-rating-text {
  color: var(--muted);
  font-size: 14px;
}
.reviews-rating-text strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

/* Slider */
.reviews-track {
  position: relative;
  margin-top: 20px;
}
.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  max-width: 400px;
  scroll-snap-align: start;
  background: white;
  border-radius: 18px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(20, 48, 79, 0.08);
  border: 1px solid rgba(184, 234, 243, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(20, 48, 79, 0.15);
}

.review-stars {
  color: #ffb800;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 234, 243, 0.6);
}
.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.review-source svg {
  flex-shrink: 0;
}

/* Navigation arrows */
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  border: 1px solid rgba(184, 234, 243, 0.6);
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(20, 48, 79, 0.12);
  transition: all 0.2s;
  font-family: serif;
  line-height: 1;
  padding: 0;
}
.reviews-nav:hover {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  transform: translateY(-50%) scale(1.08);
  border-color: transparent;
}
.reviews-nav-prev { left: -8px; }
.reviews-nav-next { right: -8px; }

/* CTA buttons */
.reviews-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-cta-btn {
  display: inline-block;
  padding: 11px 22px;
  background: white;
  border: 1.5px solid var(--teal);
  border-radius: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.review-cta-btn:hover {
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

/* Mobile */
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 12px); }
  .reviews-nav { display: none; }
}
@media (max-width: 640px) {
  .reviews-section { padding: 60px 16px; }
  .review-card { flex: 0 0 85%; padding: 22px 20px; }
  .reviews-rating-summary { padding: 10px 16px; gap: 10px; }
  .reviews-rating-text { font-size: 13px; }
  .reviews-section::before { font-size: 160px; }
}
