@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --gold-dark: #8B6914;
  --dark: #0D0A05;
  --dark-2: #1A1208;
  --dark-3: #261B0C;
  --cream: #F5ECD5;
  --cream-2: #EAD9BB;
  --red-turkish: #8B1A1A;
  --text-light: #F0E6CC;
  --text-muted: #9A8A6E;
  --border-gold: rgba(201, 168, 76, 0.3);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(13, 10, 5, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  height: 65px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.nav-logo span {
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/divan-grill-pj1-hero-cropped.jpg') center/cover;
  transform: scale(1.1);
  animation: heroZoom 12s ease-out forwards;
  filter: brightness(0.4) saturate(0.8);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark) 100%);
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 10px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-title span {
  display: block;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: 20px;
  margin-top: 8px;
  font-weight: 300;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 30px auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 236, 213, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* ============ SECTIONS ============ */
section {
  padding: 100px 60px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
}

/* ============ ABOUT ============ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  bottom: -30px;
  right: -30px;
  border: 5px solid var(--dark);
  box-shadow: 0 0 0 1px var(--gold);
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px;
  text-align: center;
  font-family: 'Cinzel', serif;
}

.about-badge strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.about-badge small {
  font-size: 9px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.about-text {
  padding-top: 20px;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 24px 0;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gold);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ ORNAMENT ============ */
.ornament {
  text-align: center;
  color: var(--gold);
  opacity: 0.4;
  font-size: 40px;
  margin: 20px 0;
  display: block;
}

.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}

.divider-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============ HALAL BANNER ============ */
.halal-banner {
  background: var(--dark-3);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.halal-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
}

.halal-badge svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

/* ============ FEATURED DISHES ============ */
.featured-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.featured-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}

.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: hover;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7) saturate(0.9);
}

.dish-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(0.7);
}

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 5, 0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

.dish-card-info {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-card-info {
  transform: translateY(0);
}

.dish-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 6px;
}

.dish-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dish-card:hover .dish-desc {
  opacity: 1;
}

.dish-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--red-turkish);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=60') center/cover;
  opacity: 0.12;
}

.cta-section .section-title {
  position: relative;
}

.cta-section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(245, 236, 213, 0.7);
  margin: 20px auto 40px;
  max-width: 600px;
  position: relative;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--dark);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  padding: 40px;
  width: 380px;
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ SOCIAL SECTION ============ */
.social-section {
  padding: 60px;
  text-align: center;
  background: var(--dark-2);
  border-top: 1px solid var(--border-gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  padding: 12px 24px;
  border: 1px solid var(--border-gold);
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ============ FOOTER ============ */
footer {
  background: #050302;
  padding: 60px;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 50px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-info-item {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-info-item span {
  color: var(--gold);
  font-size: 16px;
  margin-top: -2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ============ PAGE HERO ============ */
.page-hero {
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
}

.page-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* ============ MENU PAGE ============ */
.menu-page-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
}

.menu-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 60px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.menu-tab {
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu-category-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.menu-item {
  background: var(--dark-2);
  padding: 28px;
  border: 1px solid transparent;
  transition: all 0.3s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: pointer;
}

.menu-item:hover {
  border-color: var(--border-gold);
  background: var(--dark-3);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-content {
  flex: 1;
}

.menu-item-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 6px;
}

.menu-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-price {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
}

.add-to-cart {
  background: var(--gold);
  color: var(--dark);
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.add-to-cart:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.menu-tag {
  display: inline-block;
  background: var(--red-turkish);
  color: white;
  font-size: 8px;
  letter-spacing: 2px;
  padding: 3px 8px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}

/* ============ RESERVATION PAGE ============ */
.reservation-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 60px;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.reservation-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 20px;
}

.reservation-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.info-block {
  background: var(--dark-2);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 20px 0;
}

.info-block h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ============ FORM ============ */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
}

.form-control option {
  background: var(--dark-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.form-check input[type="radio"],
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check label {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-success {
  display: none;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  padding: 30px;
  text-align: center;
  margin-top: 20px;
}

.form-success .success-icon {
  font-size: 40px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.form-success h3 {
  font-family: 'Cinzel', serif;
  color: var(--cream);
  margin-bottom: 8px;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-muted);
}

/* ============ ORDER PAGE ============ */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  align-items: start;
}

.order-type-toggle {
  display: flex;
  gap: 2px;
  margin-bottom: 40px;
}

.order-type-btn {
  flex: 1;
  padding: 16px;
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.order-type-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.cart-panel {
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  position: sticky;
  top: 100px;
}

.cart-header {
  background: var(--dark-3);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gold);
}

.cart-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.cart-items {
  padding: 20px 24px;
  min-height: 200px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold);
  font-size: 13px;
}

.cart-item-name {
  color: var(--cream);
  flex: 1;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.qty-btn {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.cart-item-price {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  min-width: 60px;
  text-align: right;
}



.cart-item-options {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.config-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.config-modal-card {
  width: min(560px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  padding: 24px;
  position: relative;
}

.config-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.cart-total {
  padding: 20px 24px;
  border-top: 1px solid var(--border-gold);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-total-row.grand {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid var(--border-gold);
  margin-top: 8px;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.cart-checkout-btn:hover {
  background: var(--gold-light);
}

/* ============ ORDER TYPE SECTION ============ */
.delivery-info {
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  padding: 24px;
  margin-bottom: 30px;
}

.delivery-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* No-photo placeholder */
.no-photo-box {
  width: 100%;
  height: 160px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #2a2a2a;
}
.no-photo-box span { font-size: 32px; opacity: 0.3; }
.no-photo-box p { color: #555; font-size: 11px; letter-spacing: 0.05em; margin: 0; }

/* ============ MOBILE MENU ============ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(13, 10, 5, 0.99);
  backdrop-filter: blur(20px);
  z-index: 2000;
  padding: 100px 40px;
  border-left: 1px solid var(--border-gold);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.overlay-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============ NOTIFICATION ============ */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  padding: 16px 24px;
  z-index: 9998;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 13px;
  color: var(--cream);
  max-width: 300px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification strong {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-size: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  section { padding: 80px 30px; }
  
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 400px; }
  .about-img-accent { display: none; }
  .about-badge { left: 20px; }
  
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .order-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .reservation-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .hero-title { letter-spacing: 4px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .menu-page-section, .reservation-section, .order-layout { padding: 60px 20px; }
  .halal-banner { flex-wrap: wrap; }
}

/* Turkish geometric pattern overlay */
.pattern-bg {
  position: relative;
}

.pattern-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201, 168, 76, 0.015) 30px, rgba(201, 168, 76, 0.015) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(201, 168, 76, 0.015) 30px, rgba(201, 168, 76, 0.015) 31px);
  pointer-events: none;
}

/* Loading screen */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 8px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loadLine 1.5s ease forwards 0.3s;
}

@keyframes loadLine {
  to { width: 200px; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
