/* =================================================================
   CSS VARIABLES & RESET
   ================================================================= */

:root {
  /* Colors - Fast Food Theme */
  --primary-color: #e63946;
  --primary-dark: #d62828;
  --primary-light: #f18f97;
  --secondary-color: #f77f00;
  --accent-color: #fcbf49;

  --dark: #1a1a1a;
  --dark-gray: #2d2d2d;
  --medium-gray: #666;
  --light-gray: #e0e0e0;
  --white: #ffffff;
  --off-white: #f8f9fa;

  --success: #06d6a0;
  --warning: #ffd60a;

  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Container */
  --container-width: 1140px;
  --container-padding: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.header__logo {
  flex-shrink: 0;
}

.header__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.header__tagline {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav__list {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav__link {
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-lg);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active {
  opacity: 1;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.85), rgba(214, 40, 40, 0.75));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__rating {
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1.2s ease 0.4s both;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
}

.rating__stars {
  color: var(--accent-color);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating__score {
  font-weight: 700;
  font-size: 1.25rem;
}

.rating__count {
  opacity: 0.9;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease 0.6s both;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hero__arrow--prev {
  left: var(--spacing-md);
}

.hero__arrow--next {
  right: var(--spacing-md);
}

.hero__dots {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--spacing-xs);
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.hero__dot.active {
  background: var(--white);
  border-color: var(--accent-color);
  transform: scale(1.2);
}

/* =================================================================
   FEATURES SECTION
   ================================================================= */

.features {
  background: var(--off-white);
  padding: var(--spacing-lg) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.feature {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.feature__text {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* =================================================================
   ABOUT SECTION
   ================================================================= */

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about__text {
  margin-bottom: var(--spacing-md);
}

.about__text p {
  margin-bottom: var(--spacing-sm);
  color: var(--medium-gray);
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.highlight {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.highlight__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight__title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.highlight__text {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.05);
}

/* =================================================================
   MENU HIGHLIGHTS SECTION
   ================================================================= */

.menu-highlights {
  background: var(--off-white);
}

.menu-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-item__image {
  height: 250px;
  overflow: hidden;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu-item:hover .menu-item__image img {
  transform: scale(1.1);
}

.menu-item__content {
  padding: var(--spacing-md);
}

.menu-item__title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
}

.menu-item__description {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.menu-item__badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
}

/* =================================================================
   GALLERY SECTION
   ================================================================= */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery__item:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.lightbox__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__arrow--prev {
  left: var(--spacing-md);
}

.lightbox__arrow--next {
  right: var(--spacing-md);
}

/* =================================================================
   REVIEWS SECTION
   ================================================================= */

.reviews {
  background: var(--off-white);
}

.reviews__summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.reviews__score {
  text-align: center;
  padding: var(--spacing-md);
  border-right: 2px solid var(--light-gray);
}

.reviews__number {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.reviews__stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin: var(--spacing-xs) 0;
}

.reviews__count {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.reviews__distribution {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-xs);
}

.distribution-bar {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: var(--spacing-sm);
  align-items: center;
}

.distribution-bar__label {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.distribution-bar__track {
  height: 8px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.distribution-bar__fill {
  height: 100%;
  background: var(--accent-color);
  border-radius: var(--radius-sm);
  transition: width 1s ease;
}

.distribution-bar__count {
  text-align: right;
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.reviews__slider {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-sm) 0;
}

.reviews__track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 350px;
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.review-card__stars {
  color: var(--accent-color);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.review-card__date {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.review-card__text {
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.review-card__context {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.review-card__badge {
  background: var(--off-white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  color: var(--medium-gray);
}

.review-card__ratings {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--light-gray);
}

.review-card__rating {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 10;
}

.reviews__arrow:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.reviews__arrow--prev {
  left: 0;
}

.reviews__arrow--next {
  right: 0;
}

/* =================================================================
   ORDER SECTION
   ================================================================= */

.order__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.order__text {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.order__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.order__detail {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--medium-gray);
}

.order__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.order__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* =================================================================
   CONTACT SECTION
   ================================================================= */

.contact {
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-lg);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact__card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--primary-color);
}

.contact__card-text {
  color: var(--medium-gray);
  line-height: 1.8;
}

.contact__card-text a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact__card-text a:hover {
  text-decoration: underline;
}

.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
  color: var(--dark);
}

.hours-time {
  color: var(--success);
  font-weight: 600;
}

.hours-time--closed {
  color: var(--medium-gray);
}

.contact__update {
  margin-top: var(--spacing-sm);
  font-size: 0.75rem;
  color: var(--medium-gray);
  font-style: italic;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

/* =================================================================
   FOOTER
   ================================================================= */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  color: var(--light-gray);
  margin-bottom: var(--spacing-sm);
}

.footer__description {
  color: var(--light-gray);
  line-height: 1.6;
  font-size: 0.875rem;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__contact a {
  color: var(--light-gray);
  transition: var(--transition-fast);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer__contact li {
  color: var(--light-gray);
  line-height: 1.6;
}

.footer__delivery-link {
  display: inline-block;
  background: var(--white);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.footer__delivery-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer__delivery-logo {
  height: 30px;
  width: auto;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
}

.footer__copyright {
  color: var(--light-gray);
  font-size: 0.875rem;
}

.footer__badges {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer__badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  color: var(--light-gray);
}

/* =================================================================
   SCROLL TO TOP BUTTON
   ================================================================= */

.scroll-to-top {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 100;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1023px) {
  .about__container,
  .order__container,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .reviews__score {
    border-right: none;
    border-bottom: 2px solid var(--light-gray);
  }

  .review-card {
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: var(--transition-normal);
  }

  .nav.active .nav__list {
    transform: translateY(0);
  }

  .hero {
    min-height: 500px;
  }

  .hero__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero__arrow--prev {
    left: var(--spacing-sm);
  }

  .hero__arrow--next {
    right: var(--spacing-sm);
  }

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

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

  .gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .review-card {
    min-width: 280px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox__arrow--prev {
    left: var(--spacing-sm);
  }

  .lightbox__arrow--next {
    right: var(--spacing-sm);
  }
}