/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0d6efd;
  --primary-hover: #0b5ed7;
  --secondary-color: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --transition-speed: 0.3s;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Navbar Hover Effect */
.navbar-nav .nav-link {
  position: relative;
  transition: color var(--transition-speed);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  background: var(--primary-color);
}

/* Simple Slider Style */
.carousel {
  margin-bottom: 50px; /* Gap below the slider */
}

.banner-img {
  height: 650px;
  object-fit: cover;
  filter: brightness(0.7) blur(2px); /* Taller height and clearer image */
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.carousel-caption, 
.carousel-caption h1, 
.carousel-caption p,
.carousel-caption * {
  color: #ffffff !important;
  text-shadow: none !important;
} 

/* Cards Hover effects */
.card {
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Gallery Images */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-speed);
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
} 
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Custom Unordered List (Food Items) - Without Framework Help */
.food-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  max-width: 400px;
}

.food-list li {
  background-color: #fdfbf7;
  border: 1px solid #e0dcd3;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #4a4a4a;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.food-list li::before {
  content: '🍽️';
  margin-right: 10px;
}

.food-list li:hover {
  background-color: #ffe8cc;
  border-color: #ffa94d;
  color: #d9480f;
  transform: translateX(5px);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.05);
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

