/* CSS Variables */
:root {
  --primary-color: #e74c3c;
  --primary-dark: #c0392b;
  --secondary-color: #2ecc71;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-dark: #333333;
  --text-light: #777777;
  --border-color: #ddd;
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

/* Base Styles */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

ul {
  list-style: none;
}

/* Layout Components */
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-family: 'Playfair Display', Georgia, serif;
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', Georgia, serif;
}

.nav__menu {
  display: flex;
}

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

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

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

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

.nav__cta {
  display: flex;
  align-items: center;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav__phone:hover {
  background: var(--primary-dark);
}

.nav__phone-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  transition: var(--transition);
  border-radius: 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__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(46, 204, 113, 0.8));
}

.hero__content {
  text-align: center;
  color: white;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', Georgia, serif;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.star {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.3rem;
}

.star.filled {
  color: #ffd700;
}

.rating__value {
  font-weight: 700;
  font-size: 1.3rem;
}

.rating__count {
  opacity: 0.9;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

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

.btn--secondary:hover {
  background: var(--light-color);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--light-color);
}

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

.feature__card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

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

.feature__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.feature__text {
  color: var(--text-light);
  line-height: 1.5;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.about__features {
  display: grid;
  gap: 30px;
}

.about__feature h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature__list {
  list-style: none;
}

.feature__list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
}

.feature__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.price__info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.price__label {
  font-weight: 600;
  color: var(--text-dark);
}

.price__range {
  color: var(--primary-color);
  font-weight: 700;
}

.info__card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px;
  margin-bottom: 20px;
}

.info__title {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.hours__list {
  list-style: none;
}

.hours__item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours__item:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours__time {
  color: var(--text-light);
}

.popular__note {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.popular__list {
  list-style: none;
  margin-bottom: 15px;
}

.popular__list li {
  padding: 5px 0;
  color: var(--text-light);
}

.popular__tip {
  background: var(--light-color);
  padding: 10px;
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

/* Menu Section */
.menu {
  padding: 80px 0;
  background: var(--light-color);
}

.menu__categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category__btn {
  padding: 10px 25px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.category__btn:hover,
.category__btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.menu__item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.menu__item.hidden {
  display: none;
}

.menu__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu__item-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
}

.menu__item-badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.menu__item-badge.spicy {
  background: #ff6b6b;
}

.menu__item-description {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.menu__item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.menu__item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
}

.gallery__categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.gallery__filter:hover,
.gallery__filter.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__caption {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: var(--light-color);
}

.reviews__summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.summary__rating {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--radius-md);
}

.summary__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.summary__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

.summary__count {
  color: var(--text-light);
  font-size: 1.1rem;
}

.summary__distribution {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
}

.distribution__item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.distribution__star {
  font-weight: 600;
  min-width: 35px;
  color: var(--text-dark);
}

.distribution__bar {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.distribution__fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 1s ease;
}

.distribution__count {
  min-width: 40px;
  text-align: right;
  color: var(--text-light);
}

.reviews__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.review__card {
  background: white;
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.review__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.author__name {
  font-weight: 600;
  color: var(--dark-color);
  display: block;
}

.author__badge {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review__date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review__rating {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
}

.review__text {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Reservation Section */
.reservation {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.reservation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.reservation__info {
  color: white;
}

.reservation__info .section__title {
  color: white;
  text-align: left;
}

.reservation__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.8;
}

.reservation__features {
  display: grid;
  gap: 15px;
}

.reservation__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reservation__feature .feature__icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.reservation__form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.reservation__form {
  display: grid;
  gap: 20px;
}

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

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

.form__label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form__input {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
}

.form__phone {
  color: var(--primary-color);
  font-weight: 600;
}

.form__phone:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--light-color);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

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

.contact__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__text {
  color: var(--text-light);
  line-height: 1.6;
}

.contact__link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.contact__link:hover {
  text-decoration: underline;
}

.map__container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.map__button {
  margin-top: 20px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  text-align: center;
  color: white;
}

.cta__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.cta__text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer__tagline {
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.9;
}

.footer__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
}

.footer__link:hover {
  color: white;
}

.footer__service {
  color: rgba(255, 255, 255, 0.8);
}

.footer__info {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer__phone {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin: 10px 0;
}

.footer__phone:hover {
  color: white;
}

.footer__hours {
  opacity: 0.8;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.social__link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.social__link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

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

.scroll-top svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-color);
  color: white;
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast__icon {
  width: 24px;
  height: 24px;
  fill: var(--secondary-color);
}

.toast__message {
  font-weight: 500;
}

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

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

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

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

/* Media Queries */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .about__content,
  .reservation__content,
  .contact__content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    padding: 20px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    height: 70vh;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

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

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

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

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

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

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

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .menu__categories {
    flex-direction: column;
  }

  .category__btn {
    width: 100%;
  }

  .cta__title {
    font-size: 2rem;
  }

  .cta__text {
    font-size: 1rem;
  }
}