@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap");

:root {
  --olive-primary: #8da741;

  --accent-orange: #d97706;

  --brown-primary: #75605e;

  /* Background */
  --bg-cream: #fef9ea;
  --card-white: #ffffff;

  /* Neutral grays */
  --border-gray: #ddd; /* Light gray (borders) */
  --text-gray: #333; /* Dark gray (main text) */
  --testimonial-gray: #555; /* Medium gray (testimonial text) */
}

/***** Global Styles *****/
html,
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "EB Garamond", "Garamond", "Helvetica Neue", serif;
  color: #333;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

.logo-large {
  max-width: 150px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cover-title {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  color: var(--accent-orange);
  letter-spacing: 1.5px;
  text-align: center;
}

.cover-subtitle {
  font-size: 1.2rem;
  margin: 0.5rem 0 2rem;
  color: var(--olive-primary);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-text {
  font-size: 0.9rem;
  margin-top: 2rem;
  color: #777;
  text-align: center;
}

.container {
  max-width: 700px;
  margin: 2rem auto; /* Center on page with some top/bottom space */
  background-color: var(
    --bg-cream
  ); /* Soft cream (matches your reference image) */
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 2rem 2rem 3rem 2rem; /* Extra bottom padding for testimonials */
  position: relative; /* For positioning the small logo */
}

.logo-small {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  max-width: 120px; /* Adjust as needed */
  opacity: 0.85;
  display: none;
}

/***** Brand Name & Category *****/
.brand-name {
  margin: 0;
  font-size: 2.25rem;
  color: var(--olive-primary); /* Olive green tone */
  text-align: center;
  letter-spacing: 1px;
}
.category {
  margin: 0.25rem 0 1rem 0;
  font-size: 1rem;
  color: var(--olive-primary);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/***** Divider *****/
.divider {
  width: 60px;
  height: 2px;
  background-color: #d97706; /* Warm orange accent */
  margin: 1rem auto;
  border-radius: 1px;
}

/***** Item Title *****/
.item-title {
  font-size: 2rem;
  color: var(--accent-orange);
  text-align: center;
  font-weight: normal;
}

/***** Image Placeholder *****/
.item-image {
  display: block;
  width: 100%;
  max-height: 400px; /* Maintain a reasonable max height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.75rem;
}

/***** Price *****/
.price {
  font-size: 1rem;
  color: var(--olive-primary);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/***** Description & Ingredients *****/
.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--olive-primary);
}
.ingredients {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  text-align: left;
}
.ingredients strong {
  display: block;
  margin-bottom: 0.5rem;
}

/***** Testimonials *****/
.testimonial {
  border-left: 3px solid #d97706;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #555;
  text-align: left;
  /*display: none;*/
}
.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-style: normal;
  color: #333;
}

/****** Menu stuff *****/
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.menu-card {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  background: #fff;
  text-align: center;
  transition: transform 0.2s ease;
}
.menu-card:hover {
  transform: scale(1.03);
}
.menu-thumbnail {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.menu-name {
  margin: 0.5rem 0;
  color: #a45300;
}
.menu-price {
  font-weight: bold;
  margin-top: 0.5rem;
}
