/* ========== Custom Fonts ========== */
@font-face {
  font-family: "Neue Metana";
  src: url("fonts/NeueMetana-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Neue Metana";
  src: url("fonts/NeueMetana-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* ========== General Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #1a1a1a;
}

/* ========== Navbar Styles ========== */
.navbar {
  background-color: #1a1a1a;
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Mobile Brand Name */
.navbar-brand-mobile {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  flex: 1;
  text-align: center;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff0000);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

/* Order Now Button */
.btn-order {
  background-color: #ff0000;
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-order:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Order Dropdown */
.order-dropdown {
  position: relative;
  display: inline-block;
}

.order-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  min-width: 180px;
  background-color: #ff0000;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.order-dropdown:hover .order-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-option {
  display: block;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.order-app {
  background-color: #cc0000;
  color: #ffffff;
}

.order-app:hover {
  background-color: #aa0000;
  color: #ffffff;
}

.order-website {
  background-color: #d4a020;
  color: #ffffff;
}

.order-website:hover {
  background-color: #b8860b;
  color: #ffffff;
}

/* Mobile Order Buttons */
.mobile-order-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
  width: 100%;
}

.btn-mobile-order {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.order-app-mobile {
  background-color: #cc0000;
  color: #ffffff;
}

.order-app-mobile:hover {
  background-color: #aa0000;
  color: #ffffff;
}

.order-website-mobile {
  background-color: #d4a020;
  color: #ffffff;
}

.order-website-mobile:hover {
  background-color: #b8860b;
  color: #ffffff;
}

/* Mobile Navbar Toggle */
.navbar-toggler {
  border: none;
  padding: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Curved Line ========== */
.curved-line {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  pointer-events: none;
}

.curved-line svg {
  width: 100%;
  height: 100%;
}

/* ========== Hero Section ========== */
.hero-section {
  min-height: 100vh;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.6) 0%,
    rgba(26, 26, 26, 0.3) 40%,
    rgba(26, 26, 26, 0.2) 60%,
    rgba(26, 26, 26, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-title {
  font-family: "Neue Metana", "Bebas Neue", sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 4px 13px 5px rgba(0, 0, 0, 0.6);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  /*margin-bottom: 22%;*/
}

.italic-text {
  font-style: normal;
  display: inline-block;
  animation: fadeInUp 1s ease forwards;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatFood {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@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);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========== Menu Slider Section ========== */
.menu-slider-section {
  background-color: #ffffff;
  padding: 60px 0 40px;
  position: relative;
}

.menu-slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.menu-slide-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.menu-slide-item:hover {
  transform: translateY(-10px);
}

.menu-slide-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 4px solid transparent;
}

.menu-slide-item:hover .menu-slide-img {
  border-color: #ff0000;
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.2);
}

.menu-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-slide-item:hover .menu-slide-img img {
  transform: scale(1.1);
}

.menu-slide-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.menu-slide-item:hover .menu-slide-title {
  color: #ff0000;
}

/* ========== About Section ========== */
.about-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5e6 50%, #ffeedd 100%);
  padding: 60px 0 80px;
  position: relative;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ffd700);
  border-radius: 2px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  max-width: 100%;
  text-align: left;
}

/* Restaurant Interior */
.restaurant-interior {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.interior-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.restaurant-interior:hover .interior-img {
  transform: scale(1.05);
}

.interior-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.interior-frame {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 50px;
  text-align: center;
  border: 2px solid #333;
  position: relative;
}

.interior-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #333;
}

.interior-frame span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 3px;
}

/* ========== Features Section ========== */
.features-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5e6 50%, #ffeedd 100%);
  padding: 60px 0 80px;
}

.feature-card {
  background-color: #fff5e6;
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 0;
}

/* ========== Menu Section ========== */
.menu-section {
  background-color: #ffffff;
  padding: 60px 0 80px;
}

.menu-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.menu-card {
  background-color: #faf5f0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.menu-card-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-content {
  padding: 15px 20px 20px;
  background-color: #fff;
}

.menu-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.menu-card-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 12px;
}

.btn-menu-order {
  background: #4c3528;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-menu-order:hover {
  background: linear-gradient(135deg, #c4922c 0%, #a8760b 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 162, 76, 0.4);
}

/* View More Button */
.btn-view-more {
  background: linear-gradient(135deg, #4c3528 0%, #3a2819 100%);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(76, 53, 40, 0.3);
}

.btn-view-more:hover {
  background: linear-gradient(135deg, #c4922c 0%, #a8760b 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 162, 76, 0.5);
}

.btn-view-more i {
  transition: transform 0.3s ease;
}

.btn-view-more:hover i {
  transform: translateX(5px);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  background: linear-gradient(135deg, #fdf6ed 0%, #faf3e8 50%, #f8f0e3 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.testimonials-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  padding-left: 5%;
}

.testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonial-track-rtl {
  animation: scrollRTL 30s linear infinite;
}

.testimonial-track-ltr {
  animation: scrollLTR 30s linear infinite;
}

.testimonial-slider-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes scrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLTR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  min-width: 320px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

/* ========== Gallery Section ========== */
.gallery-section {
  background: linear-gradient(135deg, #fdf6ed 0%, #faf3e8 50%, #f8f0e3 100%);
  padding: 60px 0 80px;
}

.gallery-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #ffffff;
  font-size: 28px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Item 1 - Kitchen (left column, rows 1-2, TALL) */
.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Item 2 - Chef Cooking (middle column, row 1 only, SMALL) */
.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* Item 3 - Food Ordering (right column, rows 1-2, TALL) */
.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* Item 4 - Food Counter (left column, row 3) */
.gallery-item:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

/* Item 5 - Chef Portrait (middle column, rows 2-3, TALL) */
.gallery-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2 / 4;
}

/* Item 6 - Restaurant Interior (right column, row 3) */
.gallery-item:nth-child(6) {
  grid-column: 3;
  grid-row: 3;
}

/* ========== Location Section ========== */
.location-section {
  background: linear-gradient(135deg, #fdf6ed 0%, #faf3e8 50%, #f8f0e3 100%);
  padding: 60px 0 80px;
}

.location-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 15px;
}

.contact-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
}

.location-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: transparent;
}

.location-map {
  flex: 1;
  max-width: 55%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

.location-info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.location-divider {
  width: 4px;
  height: 150px;
  background: linear-gradient(180deg, #e67e22 0%, #d4a24c 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.location-details {
  flex: 1;
}

.location-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.location-address {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-phone {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 10px;
}

.location-phone span {
  color: #1a1a1a;
}

.location-email {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 0;
}

.location-email a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.location-email a:hover {
  opacity: 0.8;
}

/* ========== Footer Section ========== */
.footer-section {
  background-color: #1a1a1a;
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Footer Badges */
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-icon {
  font-size: 20px;
}

.badge-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  font-family: "Georgia", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-style: italic;
}

.footer-copyright a {
  color: #d4a020;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #f0c040;
}

.footer-copyright .powered-by {
  font-size: 14px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright .powered-by a {
  color: #d4a020;
  font-weight: 500;
  text-decoration: none;
}

.footer-copyright .powered-by a:hover {
  color: #f0c040;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-badges {
    flex-direction: column;
    gap: 12px;
  }

  .badge-item {
    padding: 10px 20px;
  }

  .badge-text {
    font-size: 13px;
  }

  .footer-copyright p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 30px 0 25px;
  }

  .footer-badges {
    gap: 10px;
  }

  .badge-item {
    padding: 8px 16px;
  }

  .footer-copyright p {
    font-size: 13px;
  }
}

/* ========== Responsive Styles ========== */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: 18%;
  }

  .menu-slide-img {
    width: 160px;
    height: 160px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    padding: 20px 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
    font-size: 16px;
  }

  .btn-order {
    margin-top: 15px;
    display: inline-block;
  }

  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15%;
  }

  .hero-content {
    padding-top: 30px;
  }

  .curved-line {
    display: none;
  }

  .menu-slider-wrapper {
    gap: 20px;
  }

  .menu-slide-img {
    width: 140px;
    height: 140px;
  }

  .menu-slide-title {
    font-size: 13px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .menu-section {
    padding: 50px 0 70px;
  }

  .menu-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .testimonials-section {
    padding: 50px 0 70px;
  }

  .testimonials-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
    padding: 22px;
  }

  .gallery-section {
    padding: 50px 0 70px;
  }

  .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-rows: 160px 160px 160px;
    gap: 12px;
  }

  .location-section {
    padding: 50px 0 70px;
  }

  .location-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .location-content {
    gap: 30px;
  }

  .location-name {
    font-size: 1.3rem;
  }

  .location-address {
    font-size: 0.95rem;
  }

  .footer-brand {
    font-size: 4rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-nav {
    gap: 25px;
  }
}

/* Small Devices (Phones - Landscape) */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background-image: url("images/PotraitBanner.jpg.jpeg") !important;
    background-position: center center;
    background-size: cover;
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 50%;
    text-shadow: 3px 10px 4px rgba(0, 0, 0, 0.6);
    padding: 0 15px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .menu-slider-section {
    padding: 40px 0 30px;
  }

  .menu-slider-wrapper {
    gap: 15px;
  }

  .menu-slide-img {
    width: 120px;
    height: 120px;
  }

  .menu-slide-title {
    font-size: 12px;
  }

  .about-section {
    padding: 40px 0 60px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 14px;
  }

  .interior-frame {
    padding: 25px 35px;
  }

  .interior-frame span {
    font-size: 1rem;
  }

  .features-section {
    padding: 40px 0 60px;
  }

  .feature-card {
    padding: 20px 18px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-title {
    font-size: 0.95rem;
  }

  .feature-text {
    font-size: 12px;
  }

  .menu-section {
    padding: 40px 0 60px;
  }

  .menu-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .menu-card-content {
    padding: 12px 15px 18px;
  }

  .menu-card-title {
    font-size: 0.95rem;
  }

  .menu-card-price {
    font-size: 1.1rem;
  }

  .btn-menu-order {
    padding: 10px 20px;
    font-size: 13px;
  }

  .btn-view-more {
    font-size: 14px;
    padding: 12px 28px;
  }

  .testimonials-section {
    padding: 40px 0 60px;
  }

  .testimonials-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .testimonial-slider-wrapper {
    margin-bottom: 20px;
  }

  .gallery-section {
    padding: 40px 0 60px;
  }

  .gallery-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
  }

  /* Reset grid positions for tablet */
  .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }

  .location-section {
    padding: 40px 0 60px;
  }

  .location-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .location-content {
    flex-direction: column;
    gap: 30px;
  }

  .location-map {
    max-width: 100%;
  }

  .location-info {
    width: 100%;
  }

  .location-divider {
    height: 120px;
  }

  .location-name {
    font-size: 1.2rem;
  }

  .location-address {
    font-size: 0.9rem;
  }

  .location-phone {
    font-size: 1rem;
  }

  .footer-section {
    padding: 40px 0 35px;
  }

  .footer-bg-image {
    width: 200px;
    opacity: 0.2;
  }

  .footer-brand {
    font-size: 3rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Extra Small Devices (Phones - Portrait) */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }

  .hero-section {
    padding-top: 70px;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 55%;
    text-shadow: 2px 8px 4px rgba(0, 0, 0, 0.6);
    padding: 0 10px;
    line-height: 1.1;
  }

  .hero-content {
    padding-top: 30px;
  }

  .btn-order {
    padding: 8px 20px;
    font-size: 13px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
  }

  .menu-slider-wrapper {
    gap: 10px;
    justify-content: space-around;
  }

  .menu-slide-img {
    width: 100px;
    height: 100px;
  }

  .menu-slide-title {
    font-size: 11px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .interior-frame {
    padding: 20px 25px;
  }

  .interior-frame span {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .features-section {
    padding: 30px 0 50px;
  }

  .feature-card {
    padding: 20px 15px;
    text-align: center;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin: 0 auto 15px;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-text {
    font-size: 12px;
  }

  .menu-section {
    padding: 30px 0 50px;
  }

  .menu-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .menu-card {
    border-radius: 12px;
  }

  .menu-card-content {
    padding: 12px 15px 15px;
  }

  .menu-card-title {
    font-size: 0.9rem;
  }

  .menu-card-price {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .btn-menu-order {
    padding: 8px 18px;
    font-size: 12px;
  }

  .testimonials-section {
    padding: 30px 0 50px;
  }

  .testimonials-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-left: 15px;
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
    padding: 18px;
  }

  .testimonial-text {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .testimonial-author img {
    width: 35px;
    height: 35px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

  .testimonial-slider-wrapper {
    margin-bottom: 15px;
  }

  .testimonial-track {
    gap: 15px;
  }

  .gallery-section {
    padding: 30px 0 50px;
  }

  .gallery-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 130px);
    gap: 10px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-overlay i {
    font-size: 22px;
  }

  .location-section {
    padding: 30px 0 50px;
  }

  .location-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .location-content {
    flex-direction: column;
    gap: 25px;
  }

  .location-map {
    max-width: 100%;
    border-radius: 12px;
  }

  .location-info {
    gap: 15px;
  }

  .location-divider {
    width: 3px;
    height: 100px;
  }

  .location-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .location-address {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .location-phone {
    font-size: 0.95rem;
  }

  .footer-section {
    padding: 35px 0 30px;
  }

  .footer-bg-image {
    width: 150px;
    opacity: 0.15;
  }

  .footer-top {
    margin-bottom: 30px;
  }

  .footer-brand {
    font-size: 2.5rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-nav {
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-divider {
    margin-bottom: 20px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }

  .footer-social {
    gap: 12px;
  }
}

/* Extra Extra Small Devices */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 60%;
    line-height: 1.15;
  }

  .hero-content {
    padding-top: 20px;
  }

  .logo-img {
    width: 45px;
    height: 45px;
  }

  .menu-slide-img {
    width: 80px;
    height: 80px;
  }

  .menu-slide-title {
    font-size: 10px;
  }

  .menu-card-title {
    font-size: 0.85rem;
  }

  .menu-card-price {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .interior-frame {
    padding: 15px 20px;
  }

  .interior-frame span {
    font-size: 0.8rem;
  }

  .gallery-item {
    height: 120px;
  }

  .gallery-overlay i {
    font-size: 18px;
  }
}

/* ========== Utility Classes ========== */
.text-gradient {
  background: linear-gradient(90deg, #ffd700, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll to top button (for later use) */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* ========== Order Modal ========== */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.order-modal.active {
  opacity: 1;
  visibility: visible;
}

.order-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.order-modal-content {
  position: relative;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-modal.active .order-modal-content {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.order-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.order-modal-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.order-modal-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #aaaaaa;
  margin-bottom: 30px;
}

.order-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.order-modal-btn i {
  font-size: 1.2rem;
}

.order-modal-app {
  background: linear-gradient(135deg, #cc0000, #ff3333);
  color: #ffffff;
}

.order-modal-app:hover {
  background: linear-gradient(135deg, #aa0000, #dd0000);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
}

.order-modal-website {
  background: linear-gradient(135deg, #d4a020, #f0c040);
  color: #ffffff;
}

.order-modal-website:hover {
  background: linear-gradient(135deg, #b8860b, #d4a020);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 160, 32, 0.4);
}

@media (max-width: 480px) {
  .order-modal-content {
    padding: 30px 20px;
  }

  .order-modal-title {
    font-size: 1.5rem;
  }

  .order-modal-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
