/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://picsum.photos/id/431/1600/900");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: transform 0.3s ease-out;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-primary {
  background-color: #e67e22;
  color: #fff;
}

.cta-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location {
  font-size: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.9s backwards;
}

.location svg {
  margin-right: 0.5rem;
}

nav {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #e67e22;
}

/* Featured Products Section Styles */
.featured-products {
  background-color: #f9f5f0;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #333;
  margin: 1rem 0 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.order-btn {
  display: inline-block;
  background-color: #e67e22;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 1rem;
}

.order-btn:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

/* Customer Testimonials Section Styles */
.testimonials {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 14rem;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  flex: 0 0 100%;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #e67e22;
}

.carousel-controls {
  margin-top: 2rem;
}

.carousel-control {
  background-color: transparent;
  border: 2px solid #e67e22;
  color: #e67e22;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-control:hover {
  background-color: #e67e22;
  color: #fff;
}

/* Our Story Section Styles */
.our-story {
  background-color: #f9f5f0;
  padding: 4rem 0;
}

.our-story .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.story-content {
  flex: 1;
}

.story-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more-btn {
  display: inline-block;
  background-color: #e67e22;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
}

.read-more-btn:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.story-image {
  flex: 1;
  position: relative;
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.02);
}

/* Footer Styles */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #e67e22;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  .tagline {
    font-size: 1.2rem;
  }
  .cta-container {
    flex-direction: column;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-carousel {
    height: 15rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .our-story .container {
    flex-direction: column-reverse;
  }
  .story-image {
    margin-bottom: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
/* Fade-in animation class (added by script) */
.fade-in {
  opacity: 1 !important;
}

/* Menu Section Styles */
.menu-section {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-category-btn {
  background-color: transparent;
  border: none;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.menu-category-btn.active,
.menu-category-btn:hover {
  color: #e67e22;
  border-color: #e67e22;
}

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

.menu-item {
  background-color: #f9f5f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.5rem;
  text-align: left;
}

.menu-item-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.menu-item-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.menu-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #e67e22;
}

/* Gallery Section Styles */
.gallery-section {
  background-color: #f9f5f0;
  padding: 4rem 0;
  text-align: center;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Prevents extra space below image */
  aspect-ratio: 1/1; /* Ensures square images */
}

/*# sourceMappingURL=local.css.map */
