/* ========================================
   Ο ΧΡΗΣΤAΡΑΣ — style.css
   Warm & Elegant Traditional Restaurant Design
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Warm Earthy Palette */
  --clr-black: #332722;      /* Deep roasted brown, replaces harsh black */
  --clr-dark: #4A3C35;       /* Earthy dark brown */
  --clr-charcoal: #3c302a;
  
  /* Appetizing Reds (Paprika / Tomato) */
  --clr-red: #C64230;        /* Natural food red, not neon */
  --clr-red-dark: #A63524;
  --clr-red-light: #DF6C5C;
  
  /* Dough / Pita / Cream Backgrounds */
  --clr-cream: #FDFBF7;      /* Extremely light warm cream */
  --clr-warm-white: #F7F3EA; /* Soft beige */
  --clr-gold: #D4A373;       /* Baked gold/pita color */
  
  --clr-text: #453934;
  --clr-text-light: #7A6F6A;
  --clr-border: rgba(74, 60, 53, 0.12);
  --clr-overlay: rgba(51, 39, 34, 0.85);

  --ff-primary: 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-black: 900;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  --shadow-sm: 0 4px 12px rgba(51, 39, 34, 0.04);
  --shadow-md: 0 8px 24px rgba(51, 39, 34, 0.08);
  --shadow-lg: 0 16px 48px rgba(51, 39, 34, 0.12);
  
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-h: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--ff-primary);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utilities --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--clr-black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: var(--fw-regular);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--clr-red);
  color: #fff;
  box-shadow: 0 4px 15px rgba(198, 66, 48, 0.2);
}
.btn-primary:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 66, 48, 0.3);
}
.btn-outline {
  border: 2px solid var(--clr-red);
  color: var(--clr-red);
}
.btn-outline:hover {
  background: var(--clr-red);
  color: #fff;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--transition);
  background: rgba(253, 251, 247, 0.85); /* Premium warm transparent backdrop from start */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 60, 53, 0.06); /* Delicate dividing line */
}
.header.scrolled {
  background: rgba(253, 251, 247, 0.98);
  box-shadow: 0 4px 20px rgba(51, 39, 34, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition);
}
.logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: var(--clr-black);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--clr-red);
  background: rgba(198, 66, 48, 0.05);
  border-color: rgba(198, 66, 48, 0.12);
}

.nav-phone-link {
  background: var(--clr-red) !important;
  color: #fff !important;
  font-weight: var(--fw-bold) !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 12px rgba(198, 66, 48, 0.2);
}
.nav-phone-link:hover {
  background: var(--clr-red-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 66, 48, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-black);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 400px;
  height: 100vh;
  background: var(--clr-cream);
  z-index: 999;
  padding: 120px 40px 40px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-direction: column;
  gap: 16px;
  box-shadow: -10px 0 30px rgba(51, 39, 34, 0.05);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  color: var(--clr-black);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--clr-red); padding-left: 12px; }
.mobile-nav .mobile-nav-btn {
  display: block;
  text-align: center;
  background: var(--clr-red);
  color: #fff !important;
  font-weight: var(--fw-bold);
  padding: 14px 28px !important;
  border-radius: var(--radius-full);
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(198, 66, 48, 0.25);
  border-bottom: none !important;
  transition: all var(--transition);
}
.mobile-nav .mobile-nav-btn:hover {
  background: var(--clr-red-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 66, 48, 0.35);
  padding-left: 0;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(51, 39, 34, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-warm-white);
  padding-top: var(--header-h);
}

/* Organic Soft Shapes instead of glowing neon */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.6;
}
.hero-shape-1 { 
  width: 50vw; height: 50vw; 
  background: rgba(212, 163, 115, 0.15); /* Soft dough gold */
  top: -10%; right: -10%; 
}
.hero-shape-2 { 
  width: 40vw; height: 40vw; 
  background: rgba(198, 66, 48, 0.08); /* Soft paprika red */
  bottom: -10%; left: -5%; 
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 2;
  text-align: left;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.hero-placeholder {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1;
  background: #FFF;
  border: 2px dashed var(--clr-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-placeholder-text {
  color: var(--clr-text-light);
  font-size: var(--fs-sm);
  font-style: italic;
  text-align: center;
  padding: 12px 24px;
  max-width: 80%;
}
.hero-placeholder svg {
  width: 64px; height: 64px;
  fill: var(--clr-red-light);
  margin-bottom: 16px;
  opacity: 0.5;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(198, 66, 48, 0.1);
  color: var(--clr-red);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--fw-black);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--clr-black);
}
.hero-title .accent { 
  color: var(--clr-red);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 0;
  width: 100%; height: 8px;
  background: rgba(198, 66, 48, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text);
  font-weight: var(--fw-regular);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }


/* ========== NOTICE BANNER ========== */
.notice-banner {
  background: var(--clr-red);
  padding: 48px 0;
  position: relative;
}
.notice-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #FFF;
  padding: 32px 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(51, 39, 34, 0.15);
}
.notice-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: rgba(198, 66, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-icon svg { width: 32px; height: 32px; fill: var(--clr-red); }
.notice-content { flex: 1; }
.notice-content h3 {
  color: var(--clr-black);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  margin-bottom: 12px;
}
.notice-content p {
  color: var(--clr-text);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.notice-content strong { color: var(--clr-red); }

.delivery-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.delivery-badge {
  padding: 10px 24px;
  background: var(--clr-warm-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-black);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.delivery-badge:hover {
  background: var(--clr-red);
  color: #fff;
  border-color: var(--clr-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ========== MENU ========== */
.menu-section { background: var(--clr-cream); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--clr-text-light);
  background: #fff;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.menu-tab:hover { color: var(--clr-red); border-color: rgba(198, 66, 48, 0.3); }
.menu-tab.active {
  background: var(--clr-black);
  color: #fff;
  border-color: var(--clr-black);
  box-shadow: 0 8px 20px rgba(51, 39, 34, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-panel.active .menu-card {
  animation: fadeUpCard 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.menu-panel.active .menu-card:nth-child(1) { animation-delay: 0.05s; }
.menu-panel.active .menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-panel.active .menu-card:nth-child(3) { animation-delay: 0.15s; }
.menu-panel.active .menu-card:nth-child(4) { animation-delay: 0.2s; }
.menu-panel.active .menu-card:nth-child(5) { animation-delay: 0.25s; }
.menu-panel.active .menu-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeUpCard {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 66, 48, 0.2);
}
.menu-card-thumb {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: var(--radius-sm);
  background: var(--clr-warm-white);
  border: 1px dashed var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu-card-thumb svg { width: 32px; height: 32px; stroke: var(--clr-text-light); opacity: 0.5; }
.menu-card-info { flex: 1; min-width: 0; }
.menu-card-name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-black);
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  line-height: 1.5;
}
.menu-card-price {
  flex-shrink: 0;
  font-size: var(--fs-md);
  font-weight: var(--fw-black);
  color: var(--clr-red);
  background: rgba(198, 66, 48, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ========== ABOUT ========== */
.about-section {
  background: var(--clr-warm-white);
  color: var(--clr-black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-owner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 2px dashed var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.about-image-placeholder svg { width: 64px; height: 64px; stroke: var(--clr-red-light); }
.about-image-placeholder p {
  color: var(--clr-text-light);
  font-size: var(--fs-sm);
  font-style: italic;
  text-align: center;
  max-width: 80%;
}
.about-text {
  font-size: var(--fs-lg);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
}
.about-stat-num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--clr-red);
  line-height: 1;
}
.about-stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--clr-black);
  color: #fff;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-heading {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
  color: var(--clr-cream);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: var(--fs-base);
  color: rgba(253, 251, 247, 0.8);
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 24px; height: 24px;
  fill: var(--clr-red-light);
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--clr-red-light); }

.map-placeholder {
  width: 100%;
  height: 200px;
  margin-top: 24px;
  border-radius: var(--radius-md);
  background: var(--clr-dark);
  border: 1px dashed rgba(253, 251, 247, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-placeholder svg { width: 40px; height: 40px; stroke: rgba(253, 251, 247, 0.4); }
.map-placeholder p {
  color: rgba(253, 251, 247, 0.4);
  font-size: var(--fs-sm);
  font-style: italic;
}

.hours-list { font-size: var(--fs-base); }
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(253, 251, 247, 0.1);
  color: rgba(253, 251, 247, 0.8);
}
.hours-item .day { font-weight: var(--fw-medium); color: #fff; }
.hours-item .closed { color: var(--clr-red-light); font-weight: var(--fw-bold); }

.social-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--clr-dark);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: all var(--transition);
}
.social-badge:hover {
  background: var(--clr-red);
  transform: translateX(8px);
}
.social-badge svg { width: 24px; height: 24px; fill: #fff; stroke: #fff; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding: 32px 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(253, 251, 247, 0.5);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== GALLERY ========== */
.gallery-section {
  background: var(--clr-cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  aspect-ratio: 4/3;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  text-align: center;
}
.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--clr-red-light);
  margin-bottom: 12px;
  opacity: 0.7;
}
.gallery-placeholder-text {
  color: var(--clr-text-light);
  font-size: var(--fs-sm);
  font-style: italic;
  line-height: 1.4;
}

/* ========== SOCIAL CTA ========== */
.social-cta-section {
  background: var(--clr-cream);
  padding: 60px 0;
  border-top: 1px dashed var(--clr-border);
  border-bottom: 1px solid rgba(74, 60, 53, 0.06);
}
.social-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.social-cta-text h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-black);
  margin-bottom: 8px;
}
.social-cta-text p {
  color: var(--clr-text-light);
  max-width: 600px;
}
.social-cta-buttons {
  display: flex;
  gap: 16px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--clr-black);
  border: 1.5px solid var(--clr-border);
  transition: all var(--transition);
  background: #fff;
  text-decoration: none;
}
.social-btn svg {
  stroke: var(--clr-black);
  transition: all var(--transition);
}
.social-btn.tiktok svg {
  fill: var(--clr-black);
  stroke: none;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.social-btn.instagram:hover {
  border-color: #E1306C;
  color: #E1306C !important;
}
.social-btn.instagram:hover svg {
  stroke: #E1306C;
}
.social-btn.tiktok:hover {
  border-color: #000000;
  color: #000000 !important;
}
.social-btn.tiktok:hover svg {
  fill: #000000;
}

@media (max-width: 768px) {
  .social-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .social-cta-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 39, 34, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--clr-cream);
  width: 90%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transform: translateY(40px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 60px rgba(51, 39, 34, 0.2);
}
.modal-overlay.open .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-warm-white);
  border-radius: 50%;
  font-size: 24px;
  color: var(--clr-text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--clr-red-light);
  color: #fff;
  transform: rotate(90deg);
}
.modal-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-black);
  margin-bottom: 8px;
  text-align: center;
}
.modal-desc {
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 32px;
}
.modal-apps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-app-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--clr-border);
  color: var(--clr-black);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  transition: all var(--transition);
}
.modal-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--clr-red);
}
.modal-app-btn.efood:hover { border-color: #E60000; color: #E60000; }
.modal-app-btn.wolt:hover { border-color: #009DE0; color: #009DE0; }
.modal-app-btn.box:hover { border-color: #33A143; color: #33A143; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-placeholder {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    transform: none;
    right: auto;
    top: auto;
  }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-title .accent::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-owner-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-title { font-size: var(--fs-2xl); }
  .notice-inner { flex-direction: column; text-align: center; }
  .delivery-badges { justify-content: center; }
}

@media (max-width: 640px) {
  .section-padding { padding: 60px 0; }
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 16px; }
  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 12px 20px; font-size: var(--fs-sm); }
  .about-stats { flex-direction: column; gap: 24px; text-align: center; }
}
