/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1a13;
  background-color: #fff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  color: #1f1a13;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}
.about-btn > section {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.badge {
  background-color: rgba(31, 26, 19, 0.9);
  padding: 8px 15px;
  font-size: 18px;
  font-weight: 500;
  color: #ffd700;
  letter-spacing: 1px;
  border: 2px solid rgba(129, 101, 1, 0.742);
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffd700;
  color: #1f1a13;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background-color: #f1cd04;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #ffd700;
  border-radius: 99px;
  opacity: 0;
  animation: pulse 2s infinite;
  z-index: -1;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  color: #1f1a13;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0;
    box-shadow: 0 0 10px #ffd700;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
    box-shadow: 0 0 17px #ffd700;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
    box-shadow: 0 0 25px #ffd700;
  }
}

h1 > .yellow-text {
  color: #f9c31f;
}
h2 > .yellow-text {
  color: #ac9305;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background-color: #1f1a13;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 1px 1px 5px #5a5a59;
  z-index: 1000;
  opacity: 0.9;
}

.logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: cover;
}

.logo-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.logo {
  display: flex;
  flex-direction: column;
}

#shaigan {
  font-family: "Times New Roman", Times, serif;
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
}

.restaurant {
  letter-spacing: 1px;
  font-size: 14px;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 18px;
}

header a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

header a:hover {
  color: #ffd700;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  width: 90%;
  position: fixed;
  top: 16%;
  right: 0%;
  gap: 0.5rem;
  background: #1f1a13;
  border-right: none;
  padding: 5px;
  border-radius: 10px 0 0px 10px;
  z-index: 1000;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 1.15rem;
  border: 1px solid #f5dd55;
}

@media (max-width: 768px) {
  .header-nav .btn-primary {
    padding: 8px 16px;
    font-size: 20px;
    white-space: nowrap;
    margin-left: 10px;
  }
}

@media (max-width: 400px) {
  .header-nav .btn-primary {
    padding: 6px 12px;
    font-size: 16px;
    margin-left: 8px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: url(assets/hero-bg.avif);
  background-size: cover;
  min-height: 100vh;
  width: 100%;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 900px;
  gap: 30px;
  text-align: center;
}

h1 {
  color: #ffffff;
  font-size: clamp(40px, 5vw + 1rem, 72px);
  line-height: 1.2;
}

.hero-p {
  color: #ffffff;
  font-size: clamp(16px, 4vw, 21px);
  width: 90%;
  max-width: 800px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Mobile adjustments for hero section */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 100px 20px 60px; /* Reduce padding on mobile */
  }

  .hero-content {
    width: 100%; /* Full width on mobile */
    gap: 20px; /* Reduce gap between elements */
  }

  .badge {
    font-size: 14px; /* Smaller font size */
    padding: 6px 12px; /* Adjust padding */
    margin-bottom: 15px; /* Reduce margin */
  }

  .hero-btns {
    flex-direction: column; /* Stack buttons vertically */
    justify-content: center;
    align-items: center;
    width: 100%; /* Full width */
    gap: 15px; /* Space between buttons */
  }

  .hero-btns .btn {
    width: 70%; /* Full width buttons */
    text-align: center; /* Center text */
    padding: 12px 20px; /* Adjust padding */
    font-size: 16px; /* Slightly smaller font */
  }
}

@media (max-width: 480px) {
  .badge {
    font-size: 14px; /* Even smaller on very small screens */
    padding: 5px 10px;
  }

  .hero-btns .btn {
    padding: 10px 16px;
    font-size: 16px;
  }
}
/* ===== MENU SECTION ===== */
.menu {
  background-color: #f1e9dc;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(30px, 3.75vw + 0.75rem, 54px);
  margin-bottom: 20px;
}

.section-header p {
  font-size: clamp(16px, 4vw, 21px);
  max-width: 700px;
  margin: 0 auto;
}

.menu-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
}

.menu-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-dish-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ac9305;
  margin-bottom: 10px;
}

.dish-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: 700;
  font-size: 1.4rem;
  color: #c17c1e;
}

.menu-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.chef-special {
  background-color: #ffd700;
  color: #1f1a13;
}

.most-selling {
  background-color: #ff6b6b;
  color: white;
}

.favourite {
  background-color: #4ecdc4;
  color: white;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  background: linear-gradient(to bottom, #ffffff, #f9f6f1);
  padding: 80px 0;
}

.why-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  max-width: 1300px;
}

.feature-card {
  background: rgba(235, 232, 224, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(25% - 30px);
  min-width: 230px;
  max-width: 350px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
}

.feature-card:hover {
  border: 2px solid rgba(235, 232, 224, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #1f1a13;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 1300px) {
  .features-cards {
    padding: 0 15px;
  }
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.our-story-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(96, 1, 1, 0.9);
}

.decorative-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 15px solid rgba(188, 138, 95, 0.15);
  border-radius: 50%;
  top: -70px;
  right: -70px;
  z-index: 0;
}

.decorative-circle-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 12px solid rgba(139, 69, 19, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
}

.intro {
  font-size: 20px;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.story-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.story-paragraph {
  padding: 25px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-paragraph:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.para-1 {
  background: linear-gradient(
    120deg,
    rgba(188, 138, 95, 0.1) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  border-left: 4px solid #d4a574;
}

.para-2 {
  background: linear-gradient(
    120deg,
    rgba(139, 69, 19, 0.1) 0%,
    rgba(188, 138, 95, 0.05) 100%
  );
  border-left: 4px solid #8b4513;
}

.para-3 {
  background: linear-gradient(
    120deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(188, 138, 95, 0.05) 100%
  );
  border-left: 4px solid #bc8a5f;
}

.para-4 {
  background: linear-gradient(
    120deg,
    rgba(188, 138, 95, 0.1) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  border-left: 4px solid #8b4513;
}

.para-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: #8b4513;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
  box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

.story-text {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.highlight {
  background: linear-gradient(
    120deg,
    rgba(188, 138, 95, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 100%
  );
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #8b4513;
  margin: 30px 0;
}

.highlight p {
  font-style: italic;
  font-size: 20px;
  color: #8b4513;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8b4513 0%, #bc8a5f 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
  text-transform: uppercase;
  font-size: 14px;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.spice-dots {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4a574;
}

.dot:nth-child(2) {
  background: #8b4513;
}

.dot:nth-child(3) {
  background: #bc8a5f;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.review-container {
  position: relative;
  height: 320px;
  margin: 30px 0 40px;
}

.review-card {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 35px;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-card.active {
  opacity: 1;
}

.stars {
  color: #ffd700;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.customer-name {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  color: #8b4513;
  font-weight: 700;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4a574;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #8b4513;
  transform: scale(1.3);
}

/* ===== RESERVATION SECTION ===== */
.reserve-container {
  background: url(assets/reserve-bg.avif);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reservation-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.floral-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    #8b4513,
    #8b4513 10px,
    #d4a574 10px,
    #d4a574 20px
  );
}

.floral-border.bottom {
  top: auto;
  bottom: 0;
}

.decorative-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 20px;
  right: 20px;
}

.decorative-corner::before,
.decorative-corner::after {
  content: "";
  position: absolute;
  background: #8b4513;
}

.decorative-corner::before {
  width: 60px;
  height: 3px;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right top;
}

.decorative-corner::after {
  width: 60px;
  height: 3px;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right top;
}

.decorative-corner.left {
  right: auto;
  left: 20px;
  transform: scaleX(-1);
}

.pattern-dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  opacity: 0.5;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #5a4b41;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9e1d5;
  border-radius: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fdfaf5;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #bc8a5f;
  box-shadow: 0 0 0 3px rgba(188, 138, 95, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  grid-column: span 2;
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #8b4513 0%, #bc8a5f 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  font-size: 60px;
  color: #4caf50;
  margin-bottom: 20px;
}

.modal-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  color: #8b4513;
  margin-bottom: 15px;
}

.modal-message {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-close {
  padding: 12px 30px;
  background: #8b4513;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #6b3410;
}

/* ===== DISHES CAROUSEL SECTION ===== */
.dishes-section {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  width: 95%;
}

.carousel-container {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
}

.carousel-track {
  width: 100%;
  display: flex;
  animation: scroll 30s linear infinite;
}

.carousel-slide {
  width: 400px; /* Fixed width as requested */
  height: 400px;
  position: relative;
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 25px;
  color: white;
}

.dish-name {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(23px, 7vw, 32px);
  margin-bottom: 8px;
  font-weight: 700;
  color: #ffffff;
}

.dish-desc {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
  color: #ffffff;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1f1a13;
  color: #ffd700;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #ffd700;
  color: #1f1a13;
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* Animation for continuous scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-300px * 5 - 20px * 5)
    ); /* Width of all slides + margins */
  }
}

/* Decorative elements */
.spice-decoration {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  color: #8b4513;
  opacity: 0.2;
}

.spice-decoration.right {
  left: auto;
  right: 30px;
  transform: scaleX(-1);
}

.pattern-lines {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    #d4a574 10px,
    #d4a574 20px
  );
  opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dishes-section {
    padding: 40px 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .carousel-slide {
    height: 350px;
  }
}

/* ===== FOOTER ===== */
.footer-container {
  width: 100%;
}

footer {
  background: linear-gradient(135deg, #1f1a13 0%, #2a1f14 100%);
  color: #fff;
  overflow: hidden;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 0 60px 40px;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  max-width: 320px;
}

.footer-contact,
.footer-hours,
.footer-links-container {
  flex: 1;
  min-width: 250px;
}

.footer-heading {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #bc8a5f;
}

.footer-contact p,
.footer-hours p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-contact i,
.footer-hours i {
  margin-right: 12px;
  margin-top: 4px;
  width: 16px;
  height: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.footer-links a i {
  margin-right: 10px;
  width: 12px;
  height: 12px;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: #999;
  font-size: 14px;
}

.crafted {
  color: #bc8a5f;
  font-style: italic;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #ffd700;
  color: #1f1a13;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .feature-card {
    flex: 0 1 calc(33.333% - 30px);
  }

  .our-story-section,
  .reviews-section,
  .reservation-section,
  .dishes-section {
    padding: 50px 40px;
  }

  h2 {
    font-size: 42px;
  }

  .footer-content {
    padding: 0 40px 40px;
  }
}

@media (max-width: 768px) {
  .header-ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    opacity: 0;
    width: 60px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .feature-card {
    flex: 0 1 calc(50% - 30px);
  }

  /* Fix for reservation form on mobile */
  .reservation-form {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .form-group.full-width {
    grid-column: span 1 !important;
  }

  .reservation-section {
    padding: 40px 20px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  input,
  select,
  textarea {
    padding: 12px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 16px;
  }

  .our-story-section,
  .reviews-section,
  .dishes-section {
    padding: 40px 30px;
  }

  h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .carousel-slide {
    height: 350px;
  }

  .dish-name {
    font-size: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 30px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .reservation-section {
    padding: 30px 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .our-story-section,
  .reviews-section,
  .reservation-section,
  .dishes-section {
    padding: 30px 20px;
  }

  h2 {
    font-size: 32px;
  }

  .decorative-circle,
  .decorative-corner {
    display: none;
  }

  .story-paragraph {
    padding: 20px 15px 15px 15px;
  }

  .para-number {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 15px;
  }

  .review-container {
    height: 380px;
  }

  .carousel-slide {
    height: 300px;
  }

  .dish-name {
    font-size: 20px;
  }

  .dish-desc {
    font-size: 14px;
  }

  .dish-overlay {
    padding: 15px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-content {
    padding: 0 20px 20px;
  }
}