* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1f1f1f;
  background: #fffdf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(to right, #244b35, #3e6b4f);
  color: #ffffff;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c8a96b;
  color: #1f1f1f;
  font-weight: 700;
}

.brand-text h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.brand-text p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
}

.home {
  padding: 4rem 0 5rem;
}

.home-text {
  max-width: 700px;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: #c8a96b;
  color: #1f1f1f;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.section {
  padding: 1rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-label {
  color: #8a6a33;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2.25rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.about-grid,
.menu-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.menu-card,
.contact-card {
  background: white;
  border: 1px solid #e7dfcf;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.info-card h3{
  margin-bottom: 0rem;
}
.menu-card h3,
.contact-card h3 {
  margin-top: 0;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eee6d8;
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card p,
.info-card p{
  margin-top: 0rem;
}
.contact-card p {
  margin-bottom: 0;
}

.additional-options {
  margin-top: 1.25rem;
}

.site-footer {
  background: #183224;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #c8a96b;
  color: #1f1f1f;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 1rem;
    background: #244b35;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    flex-direction: column;
    min-width: 180px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .top-bar {
    position: relative;
  }

  .brand-text h1 {
    font-size: 1.5rem;
  }
}
.food-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 460px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(31, 61, 43, 0.85);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(47, 92, 67, 0.95);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

@media (max-width: 980px) {
  .carousel-track,
  .carousel-slide img {
    height: 340px;
    min-height: 340px;
  }
}

/* ============================= */
/* Additional Catering Options   */
/* ============================= */

.additional-options-card {
  padding: 2rem;
}

/* section spacing */
.options-block + .options-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee6d8;
}

/* headings */
.options-block h4 {
  margin: 0 0 0.75rem;
  color: #244b35;
  font-size: 1.2rem;
}

.options-block p {
  margin: 0;
  color: #444;
}

/* tray grid */
.tray-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

/* tray cards */
.tray-card {
  background: #fffdf8;
  border: 1px solid #e7dfcf;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tray-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* tray title */
.tray-card h5 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: #1f3d2b;
}

/* serves highlight */
.tray-serves {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #c8a96b;
}

/* mobile responsiveness */
@media (max-width: 900px) {
  .tray-options {
    grid-template-columns: 1fr;
  }
}