/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  /* Colors - Warm Traditional Pizzeria Theme */
  --primary-color: #c8102e;
  --primary-dark: #9a0d24;
  --primary-light: #e63946;
  --secondary-color: #f4a261;
  --secondary-dark: #e07a34;
  --accent-color: #2a9d8f;
  --gold-accent: #d4a574;

  /* Neutral Colors */
  --dark-bg: #1a1a1a;
  --dark-gray: #2d2d2d;
  --medium-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-light: #666666;

  /* Typography */
  --font-serif: 'Merriweather', serif;
  --font-sans: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1140px;

  /* Effects */
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section--dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}

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

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section--dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.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.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
}

.navbar__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.navbar__tagline {
  font-size: 0.75rem;
  color: var(--gold-accent);
  font-style: italic;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

.navbar__item--cta .navbar__link {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.navbar__item--cta .navbar__link::after {
  display: none;
}

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

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

.navbar__toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__image-container {
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.5));
}

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

.hero__subtitle {
  display: inline-block;
  font-size: 1rem;
  color: var(--gold-accent);
  font-style: italic;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.25rem;
  color: #ddd;
}

.star.filled {
  color: #ffa500;
}

.star.half {
  background: linear-gradient(90deg, #ffa500 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  width: 2px;
  height: 15px;
  background: var(--white);
  border-radius: 2px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

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

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateX(10px);
  box-shadow: var(--box-shadow);
}

.feature-card__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-card__text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.about__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

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

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.badge-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
}

.badge-subtext {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-box__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-box__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-box__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===================================
   MENU SECTION
   =================================== */
.menu__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.menu-item__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.menu-item__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.menu-item__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-item__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.menu-item__description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.menu-item__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--light-gray);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.menu-item__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-serif);
}

.menu__note {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.menu__note p {
  color: var(--text-light);
  font-style: italic;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

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

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 16, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

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

.gallery__icon {
  font-size: 3rem;
  color: var(--white);
}

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

.lightbox.active {
  display: flex;
}

.lightbox__content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: var(--primary-color);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__nav:hover {
  background: var(--primary-color);
}

.lightbox__nav--prev {
  left: 2rem;
}

.lightbox__nav--next {
  right: 2rem;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews__summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__rating {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.reviews__score {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reviews__stars {
  margin-bottom: 1rem;
}

.reviews__count {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.reviews__distribution {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar__label {
  font-size: 0.875rem;
  width: 30px;
  text-align: right;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--secondary-color);
  border-radius: 4px;
  transition: width 1s ease;
}

.rating-bar__count {
  font-size: 0.875rem;
  width: 40px;
  opacity: 0.7;
}

.reviews__carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  padding: 0 3rem;
}

.reviews__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-card__stars {
  display: flex;
  gap: 0.25rem;
}

.review-card__date {
  font-size: 0.875rem;
  opacity: 0.7;
}

.review-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-card__image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}

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

.review-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-detail {
  font-size: 0.875rem;
  opacity: 0.8;
}

.review-card__ratings {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-rating {
  font-size: 0.875rem;
  opacity: 0.8;
}

.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews__arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.reviews__tags {
  margin-top: 3rem;
  text-align: center;
}

.reviews__tags-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.tag-cloud {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag-cloud__item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: default;
}

.tag-cloud__item:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.contact-card__text a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-card__text a:hover {
  color: var(--secondary-dark);
}

.contact-card__link {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}

.contact-card__link:hover {
  color: var(--secondary-dark);
  transform: translateX(5px);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  opacity: 0.8;
}

.hours-item--closed .hours-time {
  color: var(--primary-color);
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.7;
  font-style: italic;
}

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

.amenity-list li {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 0.5rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.order-online {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-online h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.order-online p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0d0d0d;
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.footer__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contacts li {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  align-items: flex-start;
}

.footer__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer__contacts a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer__note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: italic;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  z-index: 999;
  transition: var(--transition);
}

.scroll-top.visible {
  display: flex;
}

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

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
.fade-in {
  animation: fadeIn 1s ease;
}

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

.slide-in-left {
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
  :root {
    --section-padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    order: -1;
  }

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

  .menu-item__image {
    height: 250px;
  }

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

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

  .review-card {
    flex: 0 0 calc(50% - 1rem);
  }

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

/* Mobile (320px - 767px) */
@media screen and (max-width: 767px) {
  :root {
    --section-padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .navbar__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
  }

  .navbar__menu.active {
    left: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
  }

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

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

  .gallery__item {
    height: 250px;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews__carousel {
    padding: 0;
  }

  .lightbox__nav,
  .lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .lightbox__nav--prev {
    left: 1rem;
  }

  .lightbox__nav--next {
    right: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 1.875rem;
  }

  .menu-item__image {
    height: 200px;
  }

  .menu-item__content {
    padding: 1.5rem;
  }

  .menu-item__title {
    font-size: 1.5rem;
  }
}
