/* ===== CSS Variables / Design Tokens ===== */
:root {
  --color-primary: #efa765;
  --color-primary-hover: #ffb168;
  --color-text-light: #e0e0e0;
  --color-bg-dark: #232533;
  --color-bg-darker: #111424;
  --color-bg-section: #1a1c2e;
  --color-heading: #efa765;
  --font-body: 'Varela Round', sans-serif;
  --font-heading: 'Yeseva One', cursive;
  --max-width: 1200px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  color: var(--color-heading);
  line-height: 1.2;
}

h1 { font-size: 5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.125rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.375rem; }
h6 { font-size: 1.125rem; }

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0 35px;
}

.site-header.scrolled {
  background-color: rgba(17, 20, 36, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 0;
}

.menu-list li {
  display: flex;
  align-items: center;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 0 25px;
  height: 110px;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--color-primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: var(--color-primary);
  border: none;
  border-radius: 2px;
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  right: 20px;
  top: 25px;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -99999px;
  right: 99999px;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
}

.mobile-drawer.active {
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity 0.25s ease-out;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-drawer.active .drawer-overlay {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

.drawer-content {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 90%;
  max-width: 400px;
  background: var(--color-bg-dark);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 24px;
}

.drawer-menu {
  list-style: none;
  padding: 0;
}

.drawer-menu li {
  border-bottom: 1px solid #4d4d4d;
}

.drawer-menu li:first-child {
  border-top: 1px solid #4d4d4d;
}

.drawer-link {
  display: block;
  padding: 30px;
  color: var(--color-text-light);
  font-size: 1.125rem;
  transition: color 0.3s;
}

.drawer-link:hover {
  color: var(--color-primary);
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg-darker);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(12px) brightness(0.35);
  transform: scale(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 20, 36, 0.6) 0%, rgba(35, 37, 51, 0.5) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 140px 35px 80px;
  width: 100%;
}

.hero-image-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.hero-food-img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 4px;
}

.hero-content-col {
  flex: 1;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 5px;
  color: var(--color-heading);
}

.section-subtitle-date {
  margin-bottom: 40px;
  color: var(--color-heading);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.hours-item h5 {
  margin-bottom: 10px;
}

.hours-item p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.kitchen-info {
  margin-bottom: 40px;
  text-align: center;
}

.kitchen-info h6 {
  margin-bottom: 8px;
}

.kitchen-info p {
  font-size: 0.95rem;
}

.holiday-notice {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(239, 167, 101, 0.3);
  border-radius: 4px;
}

.holiday-notice h3 {
  margin-bottom: 10px;
}

.holiday-notice p {
  font-size: 1rem;
}

/* ===== Menu Links Section ===== */
.menu-links-section {
  padding: 100px 35px;
  background-color: var(--color-bg-dark);
}

.menu-links-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.menu-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background: var(--color-bg-darker);
  border: 1px solid rgba(239, 167, 101, 0.2);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.menu-cta-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.cta-content h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--color-heading);
}

.cta-arrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 18px 28px;
  transition: background-color 0.3s, color 0.3s;
}

.menu-cta-card:hover .cta-arrow {
  background-color: var(--color-primary);
  color: #fff;
}

/* ===== Food Gallery Section ===== */
.food-gallery-section {
  padding: 100px 35px;
  background-color: var(--color-bg-darker);
}

.food-gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.food-gallery-header h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--color-heading);
}

.food-gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.food-card {
  text-align: center;
  transition: transform 0.3s;
}

.food-card:hover {
  transform: translateY(-8px);
}

.food-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-card:hover .food-card-img img {
  transform: scale(1.08);
}

.food-card h3 {
  font-size: 1.5rem;
  color: var(--color-heading);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 100px 35px;
  background-color: var(--color-bg-dark);
}

.testimonials-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  color: var(--color-heading);
}

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

.testimonial-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-bg-darker);
  border-radius: 4px;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-content cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* ===== Reservation Section ===== */
.reservation-section {
  position: relative;
  padding: 120px 35px;
  background-image: url('../img/10i.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 36, 0.8);
}

.reservation-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.reservation-container h2 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: var(--color-heading);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  padding: 18px 28px;
  border-radius: 0;
}

.btn-primary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.contact-card {
  width: min(100%, 460px);
  margin: 48px auto 0;
  padding: 24px 28px;
  background: rgba(17, 20, 36, 0.72);
  border: 1px solid rgba(239, 167, 101, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.contact-phone {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Yeseva One', serif;
  font-size: 2rem;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.contact-phone:hover {
  color: var(--color-primary);
}

.contact-address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--color-bg-darker);
}

.footer-main {
  padding: 60px 35px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-col h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--color-heading);
}

.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.footer-col a {
  color: var(--color-text-light);
}

.footer-col a:hover {
  color: var(--color-primary-hover);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--color-primary-hover);
}

/* Footer Navigation */
.footer-nav {
  padding: 20px 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 35px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links-bottom a {
  color: var(--color-text-light);
  transition: color 0.3s;
}

.social-links-bottom a:hover {
  color: var(--color-primary-hover);
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .food-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    gap: 40px;
  }
}

@media (max-width: 921px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-container {
    min-height: 80px;
  }

  .menu-link {
    height: 80px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.375rem; }
  h3 { font-size: 1.5625rem; }

  .hero-container {
    flex-direction: column;
    padding-top: 100px;
  }

  .hero-image-col {
    flex: none;
    max-width: 60%;
  }

  .menu-links-container {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .food-gallery-header h2 {
    font-size: 2rem;
  }

  .site-header {
    padding: 0 20px;
  }

  .reservation-section {
    background-attachment: scroll;
  }
}

@media (max-width: 544px) {
  html {
    font-size: 91.2%;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }

  .hero-container {
    padding: 100px 20px 60px;
  }

  .hero-image-col {
    max-width: 80%;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .food-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col h3 {
    font-size: 1.25rem;
  }

  .menu-links-section,
  .food-gallery-section,
  .testimonials-section {
    padding: 60px 20px;
  }

  .reservation-section {
    padding: 80px 20px;
  }

  .reservation-container h2 {
    font-size: 2.5rem;
  }

  .contact-card {
    margin-top: 36px;
    padding: 20px 18px;
  }

  .contact-phone {
    font-size: 1.6rem;
  }

  .contact-address {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .food-gallery-header h2 {
    font-size: 1.5rem;
  }

  .footer-nav a {
    padding: 8px 15px;
  }
}
