:root {
  --green: #2f7d32;
  --green-dark: #1f5f25;
  --red: #c62828;
  --red-dark: #a91f1f;
  --cream: #fffaf2;
  --light: #f8f8f1;
  --dark: #1f1f1f;
  --muted: #666666;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

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

/* BASE */
html {
  scroll-behavior: smooth;
}

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

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

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

/* LAYOUT */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

/* TYPOGRAPHY */
.script-text {
  font-family: "Playfair Display", serif;
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.15;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
  margin-bottom: 1rem;
}

.section-heading p,
.split-content p {
  color: var(--muted);
}

.section-line {
  width: 75px;
  height: 4px;
  background: var(--green);
  border-radius: 999px;
  margin: 1.1rem 0;
}

.section-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--red);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--red-dark);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--red);
  color: var(--red);
  background: var(--white);
}

.btn-outline-light:hover {
  background: var(--red);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green);
}

.btn-light:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eeeeee;
}

.nav-wrapper {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 62px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a.active {
  border-bottom: 3px solid var(--red);
  padding-bottom: 6px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--green);
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 1px solid #eeeeee;
  padding: 18px 4%;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
}

.mobile-nav.active {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  margin-left: max(6%, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.green-text {
  color: var(--green);
}

.red-text {
  color: var(--red);
}

.hero-description {
  max-width: 520px;
  color: #333333;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  background-image:
    linear-gradient(
      to right,
      var(--cream) 0%,
      rgba(255, 250, 242, 0.92) 12%,
      rgba(255, 250, 242, 0.45) 30%,
      rgba(255, 250, 242, 0) 50%
    ),
    url("../images/grilled-salmon.png");
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  padding: 34px 0;
  border-bottom: 1px solid #eeeeee;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.trust-item p {
  color: var(--muted);
}

/* MENU PREVIEW */
.menu-preview {
  background: var(--white);
}

.food-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.food-feature-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
}

.food-feature-card img {
  height: 210px;
  object-fit: cover;
}

.food-feature-card div {
  padding: 22px;
}

.food-feature-card h3 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.food-feature-card p {
  color: var(--muted);
}

.center-btn {
  text-align: center;
  margin-top: 42px;
}

/* GOOGLE REVIEWS */
.reviews-section {
  background: var(--cream);
}

.google-review-widget {
  background: var(--white);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

/* SPLIT SECTIONS */
.catering-section {
  background: var(--white);
}

.about-section {
  background: var(--cream);
}

.visit-section {
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.section-image {
  height: 430px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.split-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  margin: 26px 0 32px;
}

.check-list li {
  color: #444444;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

/* VISIT */
.visit-details {
  margin: 24px 0 30px;
}

.visit-details p {
  color: #444444;
  margin-bottom: 10px;
}

.visit-details a {
  color: var(--green);
  font-weight: 700;
}

.hours-list {
  margin-top: 16px;
}

.hours-list p {
  margin-bottom: 6px;
}

.visit-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
  background-image: url("../images/cta-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.final-cta p {
  color: #f4f4f4;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: var(--cream);
  color: var(--dark);
  padding: 60px 0 0;
  border-top: 1px solid #eadfce;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 45px;
}

.footer-logo {
  height: 76px;
  width: auto;
  background: var(--white);
  padding: 8px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.site-footer h4 {
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.site-footer p,
.site-footer a {
  color: #4a4a4a;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-bottom {
  margin-top: 45px;
  padding: 18px;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--white);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .food-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-side {
    width: 68%;
    background-position: center right;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 65px 0;
  }

  .nav-wrapper {
    height: 78px;
  }

  .logo {
    height: 54px;
  }

  .main-nav,
  .nav-order-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: 700px;
    align-items: flex-start;
    padding-top: 70px;
  }

  .hero-content {
    max-width: none;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .hero-image-side {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    background-image:
      linear-gradient(
        to bottom,
        var(--cream) 0%,
        rgba(255, 250, 242, 0.75) 28%,
        rgba(255, 250, 242, 0) 70%
      ),
      url("../images/hearty-meal.png");
    background-position: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .food-feature-grid {
    grid-template-columns: 1fr;
  }

  .section-image {
    height: 350px;
  }

  .reverse > div:first-child {
    order: 1;
  }

  .reverse > div:last-child {
    order: 2;
  }
}
/* =========================
   MENU PAGE STYLES
   Controls menu.html only.
   Keeps the original card/grid menu structure.
   Hero uses a background image.
========================= */

/* MENU HERO */
.menu-hero {
  position: relative;
  min-height: 560px;
  padding: 90px 0;
  overflow: hidden;

  background-image: url("../images/latin-stew-chicken-peppers.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* HERO OVERLAY */
.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 250, 242, 0.97) 0%,
    rgba(255, 250, 242, 0.9) 35%,
    rgba(255, 250, 242, 0.45) 65%,
    rgba(255, 250, 242, 0.08) 100%
  );
  z-index: 1;
}

/* HERO TEXT */
.menu-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: max(2%, calc((100vw - 1180px) / 2));
}

.menu-hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.menu-hero-content h1 span {
  display: block;
}

.menu-hero-content p {
  color: #444;
  margin-bottom: 28px;
  max-width: 560px;
}

/* FEATURED DISHES */
.featured-menu-section {
  background: var(--white);
}

/* STICKY CATEGORY NAV */
.menu-category-nav {
  background: var(--cream);
  padding: 22px 0;
  border-top: 1px solid #eadfce;
  border-bottom: 1px solid #eadfce;
  position: sticky;
  top: 88px;
  z-index: 800;
}

.menu-category-nav .container {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.menu-category-nav a {
  white-space: nowrap;
  background: var(--white);
  color: var(--green);
  border: 1px solid #d9cdbb;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.menu-category-nav a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* FULL MENU SECTION */
.full-menu-section {
  background: var(--white);
}

/* ORIGINAL MENU CARD GRID */
.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* MENU CATEGORY CARD */
.menu-category {
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* CATEGORY HEADING */
.menu-category h3 {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
}

/* MENU ITEM ROW */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px dashed #c9bda9;
}

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

/* ITEM NAME */
.menu-item h4 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ITEM DESCRIPTION */
.menu-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ITEM PRICE */
.menu-item span {
  color: var(--red);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* SUBTITLE INSIDE CARDS */
.menu-subtitle {
  margin: 24px 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SMALL MENU NOTES */
.menu-note {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
}

/* SMALL BOTTOM ROW FOR VEGETARIAN + COMBOS */
.menu-bottom-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  align-items: start;
}

/* SMALLER BOTTOM CARDS */
.menu-category-small {
  padding: 24px;
}

/* SLIGHTLY SHORTER SPACING FOR SMALL CARDS */
.menu-category-small .menu-item {
  padding: 11px 0;
}

/* MAKE VEGETARIAN CARD FEEL LESS EMPTY */
#vegetarian {
  min-height: 100%;
}

#vegetarian .menu-item {
  padding: 18px 0;
}

/* BEVERAGES SECTION */
.beverages-section {
  background: var(--cream);
}

.beverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.beverage-card {
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.beverage-card h3 {
  color: var(--green);
  margin-bottom: 14px;
}

.beverage-card p {
  color: var(--muted);
  margin-bottom: 6px;
}

/* MENU CTA SECTION */
.menu-cta-section {
  background: var(--white);
}

/* GIFT CARD + CATERING CTA */
.menu-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  align-items: stretch;
}

.gift-card-box,
.catering-menu-box {
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

/* GIFT CARD BOX */
.gift-card-box {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  text-align: center;
}

.gift-card-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gift-card-box p {
  color: #ffe9e9;
  font-size: 1.15rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* CATERING CTA BOX */
.catering-menu-box {
  background:
    linear-gradient(to right, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.82)),
    url("../images/buffet-spread.png");
  background-size: cover;
  background-position: center;
}

.catering-menu-box h2 {
  color: var(--red);
  margin-bottom: 12px;
}

.catering-menu-box p {
  color: #444;
  margin-bottom: 20px;
  max-width: 620px;
}

/* =========================
   MENU PAGE RESPONSIVE
========================= */

@media (max-width: 1050px) {
  /* Stack menu cards on tablet */
  .menu-list-grid,
  .menu-cta-grid {
    grid-template-columns: 1fr;
  }

  /* Stack bottom small cards on tablet */
  .menu-bottom-row {
    grid-template-columns: 1fr;
  }

  .beverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-category-nav {
    top: 78px;
  }
}

@media (max-width: 760px) {
  /* Mobile hero spacing */
  .menu-hero {
    min-height: 620px;
    padding: 65px 0;
    background-position: center;
  }

  /* Stronger mobile overlay */
  .menu-hero::before {
    background: rgba(255, 250, 242, 0.88);
  }

  .menu-hero-content {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }

  .menu-hero-content h1 {
    font-size: 2.75rem;
  }

  /* Mobile menu cards */
  .menu-category {
    padding: 22px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .beverage-grid {
    grid-template-columns: 1fr;
  }

  .gift-card-box,
  .catering-menu-box {
    padding: 26px;
  }
}
/* =========================
   CATERING PAGE STYLES
   Controls catering.html only.
========================= */

/* CATERING HERO */
.catering-hero {
  position: relative;
  min-height: 560px;
  padding: 90px 0;
  overflow: hidden;

  background-image:
    linear-gradient(
      to right,
      rgba(255, 250, 242, 0.98) 0%,
      rgba(255, 250, 242, 0.9) 36%,
      rgba(255, 250, 242, 0.35) 65%,
      rgba(255, 250, 242, 0.05) 100%
    ),
    url("../images/served-crab.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.catering-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: max(2%, calc((100vw - 1180px) / 2));
}

.catering-hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.catering-hero-content h1 span {
  display: block;
}

.catering-hero-content p {
  color: #444;
  margin-bottom: 28px;
  max-width: 560px;
}

/* EVENT TYPES */
.catering-events-section {
  background: var(--white);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.event-card {
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.event-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(47, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.event-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--green);
  stroke-width: 2.2;
}

.event-icon.red-icon {
  background: rgba(198, 40, 40, 0.1);
}

.event-icon.red-icon svg {
  stroke: var(--red);
}

.event-card h3 {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.35;
}

/* CATERING MENU */
.catering-menu-section {
  background: var(--cream);
}

.catering-menu-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.catering-menu-card {
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.catering-menu-card h3 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
}

.catering-note {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}

.catering-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed #c9bda9;
}

.catering-item:last-child {
  border-bottom: none;
}

.catering-item h4 {
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 4px;
}

.catering-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.catering-item span {
  color: var(--red);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.catering-image-box {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 22px;
}

.catering-image-box img {
  height: 210px;
  object-fit: cover;
}

/* CALL OUT CTA */
.catering-callout-section {
  background: var(--white);
}

.catering-callout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;

  background: var(--cream);
  border: 1px solid #eadfce;
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.callout-image {
  overflow: hidden;
  border-radius: 24px;
}

.callout-image img {
  height: 280px;
  object-fit: cover;
}

.callout-content h2 {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.callout-content p {
  color: #444;
  margin-bottom: 22px;
  max-width: 620px;
}

/* =========================
   CATERING PAGE RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .event-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catering-menu-grid,
  .catering-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .catering-hero {
    min-height: 620px;
    padding: 65px 0;
    background-position: center;
    background-image:
      linear-gradient(
        rgba(255, 250, 242, 0.9),
        rgba(255, 250, 242, 0.9)
      ),
      url("../images/served-crab.png");
  }

  .catering-hero-content {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }

  .catering-hero-content h1 {
    font-size: 2.75rem;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    padding: 26px 20px;
  }

  .catering-menu-card {
    padding: 24px;
  }

  .catering-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catering-callout {
    padding: 20px;
  }

  .callout-image img {
    height: 230px;
  }
}
/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.58) 28%,
      rgba(0, 0, 0, 0.22) 55%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    url("../images/about-hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;

  margin-left: max(6%, calc((100vw - 1180px) / 2));
  margin-right: auto;

  color: var(--white);
}

.about-hero-content .script-text {
  color: #d7f2d8;
}

.about-hero-content h1 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.about-hero-content h1 span {
  display: block;
}

.about-hero-content h1 .red-text {
  color: #ff5757;
}

.about-hero-content p {
  color: #f0f0f0;
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-hero .section-line {
  background: var(--green);
}

/* =========================================================
   ABOUT STORY SECTION
========================================================= */

.about-story-section {
  background: var(--white);
}

.about-story-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-story-section .split-content p {
  margin-bottom: 1rem;
}

/* =========================================================
   ABOUT VALUES SECTION
========================================================= */

.about-values-section {
  background: var(--cream);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value-card {
  background: var(--white);
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;

  border: 1px solid #eadfce;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.about-value-icon {
  width: 74px;
  height: 74px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: rgba(47, 125, 50, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 34px;
  height: 34px;

  color: var(--green);
}

.about-value-card h3 {
  color: var(--red);

  margin-bottom: 12px;

  font-size: 1.15rem;
}

.about-value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   REVIEWS SECTION
========================================================= */

.about-reviews-section {
  background: var(--white);
}

.about-reviews-widget {
  background: var(--cream);

  border-radius: 28px;

  padding: 20px;

  box-shadow: var(--shadow);
}

/* =========================================================
   CONNECT + VISIT SECTION
========================================================= */

.about-connect-section {
  background: var(--cream);
}

.about-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.about-connect-card {
  background: var(--white);

  border-radius: 28px;

  padding: 34px;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);

  border: 1px solid #eadfce;
}

.about-connect-card h2 {
  color: var(--red);
  margin-bottom: 10px;
}

.about-connect-card p {
  color: var(--muted);
}

.social-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  margin-top: 26px;
}

.social-link {
  background: var(--cream);

  border-radius: 18px;

  padding: 18px 14px;

  text-align: center;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);

  background: #f5efe4;
}

.social-link svg {
  width: 28px;
  height: 28px;

  color: var(--green);

  margin-bottom: 10px;
}

.social-link span {
  display: block;

  font-weight: 700;

  color: var(--dark);
}

.about-connect-image img {
  height: 100%;

  min-height: 100%;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: var(--shadow);
}

/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  text-align: center;

  color: var(--white);

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.58)
    ),
    url("../images/shrimp-chicken-rice-bowl.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-final-cta-content {
  position: relative;
  z-index: 2;

  max-width: 760px;
}

.about-final-cta .script-text {
  color: #d7f2d8;
}

.about-final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);

  margin-bottom: 18px;
}

.about-final-cta p {
  color: #f1f1f1;

  margin-bottom: 34px;

  font-size: 1.05rem;
}

.about-final-cta .hero-buttons {
  justify-content: center;
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-connect-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {

  /* HERO */

  .about-hero {
    min-height: 720px;

    align-items: flex-start;

    padding-top: 90px;

    background-position: center;
  }

  .about-hero-content {
    width: 92%;

    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  /* VALUES */

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  /* CONNECT */

  .social-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FINAL CTA */

  .about-final-cta {
    padding: 85px 0;
  }

  .about-final-cta h2 {
    font-size: 2.7rem;
  }

}
/* =========================
   FOOTER SOCIALS
========================= */

.footer-brand p {
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.footer-socials a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
}
/* =========================
   CONTACT PAGE STYLES
   Controls contact.html only.
========================= */

/* CONTACT HERO */
.contact-hero {
  position: relative;
  min-height: 560px;
  padding: 90px 0;
  overflow: hidden;

  background-image:
    linear-gradient(
      to right,
      rgba(255, 250, 242, 0.98) 0%,
      rgba(255, 250, 242, 0.9) 38%,
      rgba(255, 250, 242, 0.45) 68%,
      rgba(255, 250, 242, 0.1) 100%
    ),
    url("../images/front-view-salsa-grill.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: max(2%, calc((100vw - 1180px) / 2));
}

.contact-hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.contact-hero-content h1 span {
  display: block;
}

.contact-hero-content p {
  color: #444;
  margin-bottom: 28px;
  max-width: 560px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form-card h2,
.contact-info-card h2 {
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

/* FORM */
.contact-form {
  margin-top: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8cbb7;
  background: var(--white);
  border-radius: 16px;
  padding: 15px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 125, 50, 0.12);
}

.form-group small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.82rem;
}

/* CONTACT INFO */
.contact-info-list {
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 34px;
  height: 34px;
  color: var(--red);
  stroke-width: 2.2;
}

.contact-info-item h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: #444;
}

/* GIFT CARD BANNER */
.contact-gift-section {
  background: var(--cream);
}

.gift-card-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;

  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.gift-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(47, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-icon svg {
  width: 42px;
  height: 42px;
  color: var(--green);
  stroke-width: 2.2;
}

.gift-card-banner h2 {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.gift-card-banner p {
  color: #444;
}

/* FINAL CTA */
.contact-final-cta {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.58)
    ),
    url("../images/hearty-sandwich.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact-final-cta .script-text {
  color: #d7f2d8;
}

.contact-final-cta h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}

.contact-final-cta p {
  color: #f1f1f1;
  margin-bottom: 32px;
}

.contact-final-cta .hero-buttons {
  justify-content: center;
}

/* =========================
   CONTACT PAGE RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 620px;
    padding: 65px 0;
    background-position: center;
    background-image:
      linear-gradient(
        rgba(255, 250, 242, 0.9),
        rgba(255, 250, 242, 0.9)
      ),
      url("../images/front-view-salsa-grill.png");
  }

  .contact-hero-content {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-content h1 {
    font-size: 2.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 26px;
  }

  .gift-card-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }

  .gift-icon {
    margin: 0 auto;
  }

  .contact-final-cta {
    padding: 85px 0;
  }

  .contact-final-cta h2 {
    font-size: 2.7rem;
  }
}
/* =========================
   CATERING GALLERY
========================= */

.catering-gallery-section {
  background: var(--cream);
}

.catering-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Featured image */
.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.catering-gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: var(--white);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.catering-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.catering-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Standard gallery images */
.catering-gallery-item:not(.gallery-featured) {
  height: 280px;
}

/* Large featured image */
.gallery-featured {
  height: 582px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .catering-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-featured {
    grid-column: span 2;
    height: 450px;
  }

}

@media (max-width: 768px) {

  .catering-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-featured {
    grid-column: span 1;
    height: 350px;
  }

  .catering-gallery-item:not(.gallery-featured) {
    height: 260px;
  }

}
/* =========================
   CATERING VIDEOS
========================= */

.catering-video-section {
  background: var(--white);
}

.catering-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Video Card */
.catering-video-card {
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.catering-video-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.14);
}

/* =========================
   CATERING VIDEOS
========================= */

.catering-video-section {
  background: var(--white);
}

/* 4-column layout for vertical videos */
.catering-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Video Card */
.catering-video-card {
  background: var(--white);

  border: 1px solid #eadfce;
  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.catering-video-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.14);
}

/* =========================
   VIDEO CONTAINER
========================= */

.video-wrapper {
  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 500px;

  display: block;

  object-fit: contain;

  background: #000;
}

/* =========================
   VIDEO CONTENT
========================= */

.video-content {
  padding: 20px;
}

.video-content h3 {
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.video-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1200px) {

  .catering-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

  .catering-video-grid {
    grid-template-columns: 1fr;
  }

  .video-wrapper video {
    height: 520px;
  }

  .video-content {
    padding: 20px;
  }

  .video-content h3 {
    font-size: 1.15rem;
  }

}
/* =========================
   CUSTOM CATERING SECTION
========================= */

.custom-catering-section {
  background: var(--cream);
}

.custom-catering-box {
  background: var(--white);

  border: 1px solid #eadfce;
  border-radius: 32px;

  padding: 50px;

  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: center;

  box-shadow: var(--shadow);
}

/* Icon Circle */
.custom-catering-icon {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: rgba(47, 125, 50, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-catering-icon svg {
  width: 42px;
  height: 42px;

  color: var(--green);
  stroke-width: 2.2;
}

/* Content */
.custom-catering-content h2 {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 14px;
}

.custom-catering-content p {
  color: var(--muted);

  max-width: 800px;
  margin-bottom: 14px;

  line-height: 1.7;
}

.custom-catering-content .btn {
  margin-top: 12px;
}

/* Optional Highlight Text */
.custom-catering-content strong {
  color: var(--green);
}

/* =========================
   HOVER EFFECT
========================= */

.custom-catering-box:hover {
  transform: translateY(-4px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .custom-catering-box {
    grid-template-columns: 1fr;
    text-align: center;

    padding: 40px 30px;
  }

  .custom-catering-icon {
    margin: 0 auto;
  }

  .custom-catering-content p {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 760px) {

  .custom-catering-box {
    padding: 32px 24px;
  }

  .custom-catering-content h2 {
    font-size: 2rem;
  }

}
