/* ===== SEYIR RESTORANT - ANA TEMA ===== */
/* Siyah-Kırmızı Premium Tasarım */

/* (Google Fonts moved to HTML for performance) */

/* ===== CSS VARIABLES ===== */
:root {
  /* Ana Renkler */
  --primary-red: #C41E3A;
  --primary-red-dark: #9B1B30;
  --primary-red-light: #E63946;
  --accent-gold: #D4A574;
  --accent-gold-light: #E8C99B;
  --gold: #D4A574;
  --overlay-opacity: 0.85;
  --hero-gradient: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%);
  --cta-gradient: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85));

  /* Nötr Renkler */
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-medium: #2A2A2A;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #999999;
  --off-white: #F5F0EB;
  --white: #FFFFFF;

  /* Gradient'ler */
  --gradient-red: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);

  /* Tipografi */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Geçişler */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Gölgeler */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 4px 20px rgba(196, 30, 58, 0.3);

  /* Sabitler (Tema Değişmezleri) */
  --pure-white: #FFFFFF;
  --pure-black: #000000;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .script-title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--primary-red);
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.section-header .divider span {
  width: 60px;
  height: 1px;
  background: var(--primary-red);
}

.section-header .divider i {
  color: var(--primary-red);
  font-size: 1rem;
}

.section-header p {
  color: var(--light-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.navbar-brand .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-brand .brand-tagline {
  font-size: 0.7rem;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--off-white);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.nav-links .btn-rezervasyon {
  background: var(--gradient-red);
  color: var(--pure-white) !important;
  padding: 10px 25px;
  border-radius: 4px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.nav-links .btn-rezervasyon::after {
  display: none;
}

.nav-links .btn-rezervasyon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: var(--pure-white) !important;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.theme-toggle i {
  font-size: 1.1rem;
}

/* Light Mode Overrides */
body.light-mode {
  --black: #FFFFFF;
  --black-light: #FBF8F6;
  --black-medium: #F3EEEA;
  --dark-gray: #EAE3DC;
  --medium-gray: #776655;
  --light-gray: #443322;
  --off-white: #1A0D00;
  --white: #050505;
  
  --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #FBF8F6 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  --hero-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.95) 100%);
  --cta-gradient: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
  --overlay-opacity: 0.3;
}

body.light-mode .theme-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--white);
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .btn-outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--white);
}

body.light-mode .btn-outline:hover {
  background: rgba(196, 30, 58, 0.05);
  border-color: var(--primary-red);
}

body.light-mode .navbar-brand .brand-name {
  color: var(--white);
}

body.light-mode .navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .testimonial-card,
body.light-mode .menu-card,
body.light-mode .reservation-info,
body.light-mode .reservation-form-card,
body.light-mode .contact-form-card,
body.light-mode .interactive-map-card,
body.light-mode .menu-item {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .menu-item h4,
body.light-mode .menu-category-header h3,
body.light-mode .section-header h2,
body.light-mode .reservation-info h3,
body.light-mode .reservation-form-card h3,
body.light-mode .contact-form-card h3,
body.light-mode .hero-content h1 {
  color: var(--white);
}

body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select {
  background: #F5F0EB;
  border-color: rgba(0, 0, 0, 0.1);
  color: #221100;
}

body.light-mode .form-group label {
  color: var(--off-white);
  opacity: 0.8;
}

body.light-mode .page-header-overlay {
  background: var(--gradient-overlay);
}

body.light-mode .page-header-content h1 {
  color: var(--white);
}

body.light-mode .page-header-content .script-text {
  color: var(--primary-red);
}

body.light-mode .breadcrumb a {
  color: var(--primary-red);
}

body.light-mode .breadcrumb span {
  color: var(--medium-gray);
}

body.light-mode .footer {
  background: #F5F0EB;
}

body.light-mode .footer-social a {
  background: #EAE3DC;
  color: #221100;
}

body.light-mode .footer-social a:hover {
  color: var(--pure-white);
}

body.light-mode .nav-links {
  background: transparent;
}

@media (max-width: 768px) {
  body.light-mode .nav-links {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left-color: rgba(0, 0, 0, 0.05);
  }
}

body.light-mode .hamburger span {
  background: var(--white);
}


/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    var(--hero-gradient),
    url('images/hosgeldinizbanner.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .script-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-content h1 span {
  color: var(--primary-red);
}

.hero-content .hero-desc {
  font-size: 1.15rem;
  color: var(--light-gray);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--pure-white);
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(196, 30, 58, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--light-gray);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-red), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HAKKIMIZDA SECTION ===== */
.about-section {
  padding: var(--section-padding);
  background: var(--black-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Adjust grid for wider images area */
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-medium);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--primary-red);
  border-left: 3px solid var(--primary-red);
  z-index: 1;
  border-radius: 8px 0 0 0;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 3px solid var(--primary-red);
  border-right: 3px solid var(--primary-red);
  z-index: 1;
  border-radius: 0 0 8px 0;
}

.about-content .script-title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.about-content p {
  color: var(--light-gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  color: var(--primary-red);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.95rem;
  color: var(--off-white);
}

/* ===== ÖNE ÇIKAN MENÜ ===== */
.featured-menu {
  padding: var(--section-padding);
  background: var(--black);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-cat-btn {
  background: transparent;
  color: var(--light-gray);
  border: 1px solid var(--dark-gray);
  padding: 10px 25px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--gradient-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  background: var(--black-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(196, 30, 58, 0.2);
}

.menu-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.1);
}

.menu-card-image .price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--gradient-red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-card-body {
  padding: 25px;
}

.menu-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ===== ÖZEL BÖLÜM (CTA) ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
    url('images/unutulmazbirakşam yemegi.webp') center/cover no-repeat fixed;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .script-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.cta-content h2 {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 35px;
}

/* ===== GALERI ===== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--black-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(196, 30, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ===== YORUMLAR ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--black-light);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-5px);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--light-gray);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.testimonial-author .author-info h4 {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-body);
}

.testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--primary-red);
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* ===== BİLGİ BANDI ===== */
.info-band {
  background: var(--gradient-red);
  padding: 50px 0;
}

.info-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.info-item h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 5px;
}

.info-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-about .footer-brand .logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-about .footer-brand .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-about .footer-brand h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.footer-about p {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--black-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--light-gray);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 0.8rem;
  color: var(--primary-red);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--light-gray);
  margin-bottom: 12px;
}

.footer-hours li span:last-child {
  color: var(--off-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--medium-gray);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--primary-red);
}

/* ===== PAGE HEADER (İç Sayfalar) ===== */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content .script-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.page-header-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.breadcrumb a {
  color: var(--primary-red);
}

.breadcrumb span {
  color: var(--medium-gray);
}

/* ===== MENÜ SAYFASI ===== */
.menu-page-section {
  padding: var(--section-padding);
  background: var(--black);
}

.menu-page-category {
  margin-bottom: 70px;
}

.menu-page-category:last-child {
  margin-bottom: 0;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.menu-category-header .cat-icon {
  width: 60px;
  height: 60px;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.menu-category-header h3 {
  font-size: 2rem;
  color: var(--white);
}

.menu-category-header .cat-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(196, 30, 58, 0.3), transparent);
}

.menu-item-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.menu-item {
  background: var(--black-light);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
  overflow: hidden;
}

.menu-item:hover {
  border-color: rgba(196, 30, 58, 0.2);
  transform: translateX(5px);
}

.menu-item-image {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
}

.menu-item-info .item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap; /* Allow wrapping for long titles especially on mobile */
}

.menu-item-info .item-header h4 {
  font-size: 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .menu-item-info .item-header h4 {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
  }
}

.menu-item-info .item-header .item-price {
  font-size: 1.1rem;
  color: var(--primary-red);
  font-weight: 700;
}

.menu-item-info .item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--dark-gray);
  margin: 0 10px;
  min-width: 20px; /* Ensure dots don't disappear entirely but shrink */
}

@media (max-width: 480px) {
  .menu-item-info .item-dots {
    display: none; /* Hide dots on very narrow screens to give space to title and price */
  }
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-section {
  padding: var(--section-padding);
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--light-gray);
}

.contact-item a:hover {
  color: var(--primary-red);
}

.contact-form-card {
  background: var(--black-light);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--off-white);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

/* Harita */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%) sepia(10%);
}

body.light-mode .map-section {
  filter: none;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5); /* Sadece hafif gri, invert değil */
}

/* ===== REZERVASYON SAYFASI ===== */
.reservation-section {
  padding: var(--section-padding);
  background: var(--black);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.reservation-info {
  padding: 40px;
  background: var(--black-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reservation-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.reservation-info p {
  color: var(--light-gray);
  margin-bottom: 25px;
  line-height: 1.8;
}

.reservation-info .info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--off-white);
  font-size: 0.95rem;
}

.reservation-info .info-list li i {
  color: var(--primary-red);
  width: 20px;
}

.reservation-info .special-note {
  margin-top: 30px;
  padding: 20px;
  background: rgba(196, 30, 58, 0.08);
  border-left: 3px solid var(--primary-red);
  border-radius: 0 8px 8px 0;
}

.reservation-info .special-note h4 {
  font-size: 1rem;
  color: var(--primary-red);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.reservation-info .special-note p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === İnteraktif Kroki Stilleri === */
.interactive-map-card {
  background: var(--black-light);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.interactive-map-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.map-hint {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.restaurant-map-container {
  background: var(--black-medium);
  border-radius: 8px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-zone {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  position: relative;
}

.map-zone h4 {
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}

.table-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.rtable {
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.rtable span {
  font-size: 0.7rem;
  color: var(--light-gray);
  font-weight: 400;
}

.rtable.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.rtable.square {
  width: 70px;
  height: 70px;
  border-radius: 8px;
}

.rtable.rectangle {
  width: 100px;
  height: 60px;
  border-radius: 8px;
}

.rtable:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
}

.rtable.active {
  background: var(--primary-red);
  border-color: var(--primary-red-light);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.rtable.active span {
  color: var(--off-white);
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-gray);
  font-size: 0.85rem;
}

.color-box {
  width: 15px;
  height: 15px;
  border-radius: 4px;
}

.color-box.available {
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.color-box.selected {
  background: var(--primary-red);
}

.reservation-form-card {
  background: var(--black-light);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reservation-form-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    gap: 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .menu-item-list {
    grid-template-columns: 1fr;
  }

  .menu-item {
    padding: 15px;
    gap: 12px;
    overflow: hidden;
    max-width: 100%;
  }

  .menu-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .menu-item-info .item-header h4 {
    font-size: 0.95rem;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word; /* Better than break-all for readability */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1 1 auto; /* Allow title to grow and wrap */
    min-width: 0;
  }

  .menu-item-info .item-header .item-price {
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: auto;
    flex: 0 0 auto; /* Preis stays compact */
  }
  
  .menu-item-info .item-header {
    flex-wrap: wrap; /* Ensure wrapping on tablets too if needed */
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-actions {
    gap: 12px;
    z-index: 1001; /* Higher than nav-links to stay visible if needed, though they shouldn't overlap */
    position: relative;
    margin-left: auto; /* Push to the absolute right */
  }

  /* Hamburger position refinement */
  .hamburger {
    display: flex;
    margin-right: -5px; /* Slight adjustment for better alignment */
    flex-shrink: 0;
  }

  .theme-toggle {
    width: 44px; /* Slightly larger for easier tap on mobile */
    height: 44px;
    margin: 10px auto 0 auto; /* Separation from links in vertical menu */
  }

  .navbar .container {
    padding: 0 15px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 280px;
    max-width: 85vw; /* Slightly smaller for better UX */
    height: 100vh;
    background: var(--black);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--primary-red);
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center links and toggle */
    gap: 25px; /* Slightly tighter gap for mobile */
    transition: var(--transition-medium);
    padding: 60px 20px 20px 20px; /* Top padding to avoid hamburger area if it overlaps */
    z-index: 1000;
    overflow-y: auto; /* Allow scrolling within menu if content is too tall */
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .hero-content .script-text {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: auto;
    max-height: 400px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .info-band .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .info-band .container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 200px;
  }

  .menu-category-header h3 {
    font-size: 1.5rem;
  }
}

/* ===== ANİMASYON: Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* ===== FORM BAŞARI MESAJI ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.form-success i {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--light-gray);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner .loader-logo img {
  width: 300px;
  max-width: 90vw;
  display: block;
  margin: 0 auto;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-gray);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gradient-red);
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

/* ===== TOP-TIER MOBILE OPTIMIZATION ===== */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: max(12px, env(safe-area-inset-top));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

@media (max-width: 768px) {
  /* Dokunmatik hedefler için minimum dokunma alanı (Touch targets) */
  .btn-primary, .btn-outline, .btn-submit, .btn-rezervasyon {
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* iOS Safari zoom bug fix + daha iyi input deneyimi */
  input, select, textarea {
    font-size: 16px !important;
    border-radius: 8px;
  }

  /* Mobil Menü Arkaplan Overlay Efekti */
  .nav-links {
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  /* Daha rahat okuma için akıcı satır yüksekliği */
  p {
    line-height: 1.6;
    letter-spacing: 0.3px;
  }

  /* Slider ve yatay kaydırma önleme */
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
    max-width: 100%;
  }
}
