/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cormorant Garamond", serif;
  background-color: #3c2c1c;
  color: #e1ab5e;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===================== NAVBAR ===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  background: #3c2c1c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  height: 6.25rem;
  transition: all 0.28s ease;
}
.navbar.shrink {
  height: 5rem;
  padding: 0.25rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.logo img {
  height: 7.5rem;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.28s ease;
}
.navbar.shrink .logo img {
  height: 6.25rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.125rem;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #e1ab5e;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.375rem 0.875rem;
  overflow: hidden;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background-color: #e1ab5e;
  z-index: -1;
  transition: width 0.35s ease;
}
.nav-links a:hover::before,
.nav-links a:focus::before {
  width: 100%;
}
.nav-links a:hover,
.nav-links a:focus {
  color: #3c2c1c;
  font-weight: 700;
}

/* ===================== HAMBURGER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
}
.hamburger span {
  width: 1.5rem;
  height: 0.2rem;
  background: #e1ab5e;
  border-radius: 2px;
  transition: transform 0.34s ease, opacity 0.28s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  width: 100%;
  min-height: 100vh;
  margin-top: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  color: #fff;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.hero-btn {
  background: #e1ab5e;
  color: #3c2c1c;
  border: 2px solid #e1ab5e;
}
.hero-btn.outline {
  background: transparent;
  color: #e1ab5e;
  border: 2px solid #e1ab5e;
}
.hero-btn:hover {
  background: #3c2c1c;
  color: #e1ab5e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-btn.outline:hover {
  background: #e1ab5e;
  color: #3c2c1c;
}

@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 US ===================== */
.about {
  background: #e1ab5e;
  color: #3c2c1c;
  padding: 5rem 8%;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border: 8px solid #3c2c1c;
  border-radius: 4px;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}
.about-content {
  flex: 1;
  min-width: 280px;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #3c2c1c;
}
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
.about-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-weight: 800;
  color: #3c2c1c;
  background: #e1ab5e;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  border: 2px solid #3c2c1c;
  border-radius: 30px;
  font-size: 1.1rem;
}
.about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: #3c2c1c;
  z-index: -1;
  transition: width 0.35s ease;
}
.about-btn:hover::before {
  width: 100%;
}
.about-btn:hover {
  background-color: #3c2c1c;
  color: #e1ab5e;
}

/* Animation classes for scroll effect */
.about-image.animate img {
  animation: slideInFromLeft 0.8s ease forwards;
}
.about-content.animate {
  animation: slideInFromRight 0.8s ease forwards;
}

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

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

/* ===================== MENU SECTION ===================== */
.menu {
  padding: 5rem 8%;
  background: #3c2c1c;
}
.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-header h2 {
  font-size: 2.5rem;
  color: #e1ab5e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.menu-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e1ab5e;
}
.menu-header p {
  color: #e1ab5e;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Menu Categories Filter */
.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.category-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 2px solid #e1ab5e;
  color: #e1ab5e;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}
.category-btn:hover, .category-btn.active {
  background: #e1ab5e;
  color: #3c2c1c;
}

/* Menu Category Styles */
.menu-category {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  display: none;
}
.menu-category.visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.category-header {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.category-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.5s ease;
}
.category-image:hover img {
  transform: scale(1.05);
}
.category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.category-title h3 {
  color: #e1ab5e;
  font-size: 2.5rem;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(225, 171, 94, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(225, 171, 94, 0.2);
}
.menu-item:hover {
  background: rgba(225, 171, 94, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.item-info {
  flex: 1;
  padding-right: 1rem;
}
.item-name {
  font-size: 1.3rem;
  color: #e1ab5e;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.item-description {
  color: #e1ab5e;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}
.item-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 120px;
}
.price {
  color: #e1ab5e;
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Download Button */
.menu-download {
  text-align: center;
  margin-top: 3rem;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #e1ab5e;
  color: #3c2c1c;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.download-btn:hover {
  background: #d19d50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================== GALLERY SECTION ===================== */
.gallery {
  padding: 5rem 8%;
  background: #e1ab5e;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-header h2 {
  font-size: 2.5rem;
  color: #3c2c1c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.gallery-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3c2c1c;
}
.gallery-header p {
  color: #3c2c1c;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 80%;
  animation: zoom 0.3s ease;
  border-radius: 8px;
}
@keyframes zoom {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-modal:hover {
  color: #e1ab5e;
}
.modal-caption {
  margin: 15px auto;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
.modal-prev, .modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
  transition: 0.3s ease;
  user-select: none;
}
.modal-prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}
.modal-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.modal-prev:hover, .modal-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #e1ab5e;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews {
  padding: 5rem 8%;
  background: #3c2c1c;
}
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-header h2 {
  font-size: 2.5rem;
  color: #e1ab5e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.reviews-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e1ab5e;
}
.reviews-header p {
  color: #e1ab5e;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: rgba(225, 171, 94, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(225, 171, 94, 0.2);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: rgba(225, 171, 94, 0.2);
}
.review-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #e1ab5e;
  margin-bottom: 1rem;
}
.stars i {
  margin-right: 2px;
}
.review-text {
  color: #e1ab5e;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}
.reviewer {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #e1ab5e;
}
.reviewer-info h4 {
  color: #e1ab5e;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.reviewer-info p {
  color: #e1ab5e;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===================== CONTACT SECTION ===================== */
.contact {
  padding: 5rem 8%;
  background: #e1ab5e;
}
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-header h2 {
  font-size: 2.5rem;
  color: #3c2c1c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3c2c1c;
}
.contact-header p {
  color: #3c2c1c;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #3c2c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: #e1ab5e;
  font-size: 1.2rem;
}
.contact-details h3 {
  color: #3c2c1c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-details p, .contact-details a {
  color: #3c2c1c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-details a:hover {
  color: #2b1e13;
  text-decoration: underline;
}
.map-container {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form {
  background: #3c2c1c;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid #e1ab5e;
  border-radius: 4px;
  color: #e1ab5e;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #d19d50;
  box-shadow: 0 0 0 2px rgba(225, 171, 94, 0.3);
}
.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #e1ab5e;
  pointer-events: none;
  transition: all 0.3s ease;
  background: #3c2c1c;
  padding: 0 0.5rem;
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #d19d50;
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #e1ab5e;
  color: #3c2c1c;
  border: none;
  border-radius: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #d19d50;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================== FOOTER ===================== */
footer {
  background: #2b1e13;
  padding: 3rem 5% 1.5rem;
  font-size: 0.9rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}
.footer-section h3 {
  color: #e1ab5e;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e1ab5e;
}
.contact-info {
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-info i {
  color: #e1ab5e;
  font-size: 1.1rem;
  width: 20px;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3c2c1c;
  color: #e1ab5e;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #e1ab5e;
  color: #3c2c1c;
  transform: translateY(-3px);
}
.opening-hours p {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  max-width: 250px;
}
.opening-hours span {
  color: #e1ab5e;
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(225, 171, 94, 0.3);
}
footer a {
  color: #e1ab5e;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer p {
  margin: 0.375rem 0;
  color: #e1ab5e;
}

/* Custom Alert Box */
.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #3c2c1c;
  color: #e1ab5e;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  font-size: 1rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}
.custom-alert.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background: #3c2c1c;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 100vh;
    max-height: 100vh;
    transition: right 0.4s ease;
    padding: 2rem 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 1rem 0;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
  .hero {
    margin-top: 5.5rem;
    min-height: 80vh;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-image {
    height: 100%;
    object-fit: cover;
  }

  .about {
    padding: 3rem 5%;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .about-image img {
    max-width: 100%;
  }
  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .menu {
    padding: 3rem 5%;
  }
  .menu-categories {
    gap: 0.5rem;
  }
  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .menu-items {
    grid-template-columns: 1fr;
  }
  .menu-item {
    flex-direction: column;
    gap: 1rem;
  }
  .item-prices {
    align-items: flex-start;
  }
  .category-image {
    height: 200px;
  }
  .category-title h3 {
    font-size: 2rem;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-section .opening-hours{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-info p {
    justify-content: center;
  }
  .social-links {
    justify-content: center;
  }
  .opening-hours p {
    margin: 0 auto 0.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 5%;
  }
  .logo img {
    height: 6rem;
  }
  .navbar.shrink .logo img {
    height: 5rem;
  }
  .hero {
    margin-top: 5rem;
    min-height: 70vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image {
    object-position: center;
  }
  .about-content h2 {
    font-size: 1.75rem;
  }
  .menu-header h2, .gallery-header h2, .reviews-header h2, .contact-header h2 {
    font-size: 2rem;
  }
  .category-title h3 {
    font-size: 1.5rem;
  }
  .menu-categories {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .modal-content {
    max-width: 95%;
  }
  .close-modal {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}