* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d4741e;
  --secondary-color: #8b4513;
  --accent-color: #ffd700;
  --text-dark: #2c1810;
  --text-light: #6b4423;
  --bg-cream: #fff8f0;
  --bg-white: #ffffff;
  --shadow: 0 4px 20px rgba(212, 116, 30, 0.1);
  --gradient: linear-gradient(135deg, #d4741e 0%, #8b4513 100%);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  /* background: var(--primary-color); */
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  /* box-shadow: var(--shadow); */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo > img {
  width: 200px;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgb(29 17 1 / 70%), rgba(139, 69, 19, 0.8)),
    url(../images/banner.jpeg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* margin-top: 78px; */
  border-bottom: 1px solid #4c2300;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
}

/* Weekly Menu Section */
.weekly-menu {
  background: var(--bg-cream);
}

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

.menu-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-day {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.menu-items {
  color: var(--text-light);
  font-size: 1rem;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.product-image {
  height: 400px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}
.product-image img {
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1rem;
}

/* Reviews Section */
.reviews {
  background: var(--bg-cream);
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-section h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  padding: 15px;
  background: var(--bg-cream);
  border-radius: 10px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-form {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 15px;
  min-height: 355px;
  margin-top: 45px;
}

.contact-form iframe {
  min-height: 355px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  background: var(--gradient);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.note {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px dashed #cb9696;
  gap: 10px;
  padding: 10px;
  background-color: #f7d2d2;
}

.note img {
  width: 70px;
  height: 80px;
}
.note h1 {
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 2rem;
  }
  .contact-form {
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .menu-grid,
  .products-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .logo > img {
    width: 160px;
  }

  .contact-info > span:last-child {
    display: none;
  }

  .contact-info > span:first-child {
    margin-top: 10px;
  }

  .contact-form {
    margin-top: 0px;
  }
}
