/* ═══════════════════════════════════════════════════════════
   RESTAURANT — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --color-dark: #0f0f0f;
  --color-dark2: #1a1a1a;
  --color-dark3: #242424;
  --color-gold: #c9a84c;
  --color-gold-lt: #e2c46e;
  --color-cream: #f8f4ed;
  --color-muted: #888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
  --transition: 0.35s ease;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-dark);
  color: #eee;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 50px 0;
}

/* ── Typography helpers ─────────────────────────────────── */
.text-gold {
  color: var(--color-gold) !important;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-text {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 580px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-lt));
  color: #0f0f0f;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-lt), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  color: #0f0f0f;
}

/* ─────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 18px 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--color-gold);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold) !important;
  background: rgba(201, 168, 76, 0.08);
}

/* ─────────────────────────────────────────────────────────
   HERO SLIDER
───────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img {
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-fallback {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a00 0%, #0f0f0f 60%, #0a0a0a 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-serif);
  /* font-size: clamp(3.5rem, 8vw, 7rem); */
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* ─────────────────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────────────────── */
.about-section {
  background: var(--color-dark);
}

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--color-dark3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.4;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-lt));
  color: #0f0f0f;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────────────
   SECTION DIVIDER
───────────────────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-dark);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.divider-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────
   MENU SECTION
───────────────────────────────────────────────────────── */
.menu-section {
  background: var(--color-dark2);
}

.menu-tabs {
  gap: 6px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-muted);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-lt));
  border-color: transparent;
  color: #0f0f0f;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.menu-card {
  background: var(--color-dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 76, 0.3);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}

.menu-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-dark2), var(--color-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
}

.menu-card-body {
  padding: 18px;
}

.menu-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 36px;
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-serif);
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--color-muted);
  font-style: italic;
}

.footer-heading {
  color: var(--color-gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-hours {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-divider {
  border-color: rgba(201, 168, 76, 0.1);
  margin: 40px 0 20px;
}

.footer-copy {
  color: #555;
  font-size: 0.82rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-gold);
  margin-right: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--color-gold);
  color: #0f0f0f;
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

.floating-btn i {
  font-size: 1.2rem;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128c7e);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.reservation-btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-lt));
  color: #0f0f0f !important;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.reservation-btn:hover {
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
  color: #0f0f0f !important;
}

.reservation-btn .floating-label {
  color: #0f0f0f;
}

.floating-label {
  font-size: 0.82rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────
   PAGE HEADER (Gallery, Contact)
───────────────────────────────────────────────────────── */
.page-header {
  position: relative;
  padding: 130px 0 30px;
  background: linear-gradient(135deg, #1a0800 0%, var(--color-dark) 60%);
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-header-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.page-header-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  position: relative;
}

/* ─────────────────────────────────────────────────────────
   GALLERY PAGE
───────────────────────────────────────────────────────── */
.gallery-section {
  background: var(--color-dark);
}

.gallery-grid {
  columns: 4 250px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  border-radius: var(--radius);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--color-gold);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 8px;
}

.lightbox-img {
  max-height: 80vh;
  object-fit: contain;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-iframe {
  display: block;
  border-radius: var(--radius);
}

.map-placeholder {
  height: 450px;
  background: var(--color-dark3);
  border-radius: var(--radius);
}

/* ─────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────── */
.contact-section {
  background: var(--color-dark);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-dark3);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-card h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.contact-card p {
  color: #ccc;
  margin: 0;
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--color-gold);
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-extra-info {
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .about-badge {
    right: 0;
    bottom: -16px;
  }

  .gallery-grid {
    columns: 3 200px;
  }
}

@media (max-width: 768px) {
  .floating-label {
    display: inline;
    /* Mobilde Reservation yazısı görünür */
    font-size: 0.75rem;
  }

  .floating-btn {
    padding: 10px 14px;
    border-radius: 50px;
    height: auto;
    width: auto;
    justify-content: center;
    margin-bottom: 15px;
  }

  .gallery-grid {
    columns: 2 150px;
  }

 .hero-title {
    font-size: 2.4rem;
  }

  .carousel-control-prev-icon, .carousel-control-next-icon {
margin-bottom: 35px;
  }

  .about-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }

  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }
}

/* ─────────────────────────────────────────────────────────
   SLIDER ARROW FIX
   carousel controls must sit above hero-content (z-index:10)
   and above carousel-overlay
───────────────────────────────────────────────────────── */
.carousel-control-prev,
.carousel-control-next {
  z-index: 20 !important;
  width: 60px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 8px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  background-size: 55%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(201, 168, 76, 0.7);
}

/* ─────────────────────────────────────────────────────────
   FOOTER LEGAL LINKS
───────────────────────────────────────────────────────── */
.footer-links {
  color: #555;
  font-size: 0.82rem;
}

.footer-legal-link {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--color-gold-lt);
  text-decoration: underline;
}

.footer-sep {
  margin: 0 8px;
  color: #444;
}

.footer-design {
  color: #555;
}

/* ─────────────────────────────────────────────────────────
   LEGAL CONTENT (Privacy / Terms)
───────────────────────────────────────────────────────── */
.legal-content h5 {
  color: var(--color-gold);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--color-gold);
}

.legal-content a:hover {
  text-decoration: underline;
}

#site-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

#footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  padding-left: 3rem;
}

@media (max-width: 768px) {
  #site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  #footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
}