/* ================================
   Basic CSS Boilerplate
   ================================ */
@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus-Regular.woff2") format("woff2"),
    url("../fonts/Marcellus-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AvenirNext LT Pro";
  src: url("../fonts/AvenirNextLTPro-Regular.woff2") format("woff2"),
    url("../fonts/AvenirNextLTPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans 9pt";
  src: url("../fonts/DMSans-9ptRegular.woff2") format("woff2"),
    url("../fonts/DMSans-9ptRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 1. Reset / Normalize */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Root variables (easy theming) */
:root {
  --font-family: "DM Sans 9pt", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  --color-text: #000000;
  --color-bg: #fdf9f2;
  --color-primary: #0077ff;
  --color-secondary: #ff4081;
}

/* 3. Global styles */
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

.bgLiteCream {
  background-color: var(--color-bg);
}
h1,
h2 {
  font-family: "Marcellus";
}

h3,
p {
  font-family: "DM Sans 9pt";
}

.reveal-stagger span {
  opacity: 0;
  transform: translateY(40px);
  display: inline-block;
  transition: all 0.6s ease;
}

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

.reveal-img {
  overflow: hidden;
  display: inline-block;
}
.reveal-img img {
  transform: scale(1.2);
}

.resp-img {
  width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1518px;
  margin: 0 auto;
}
/* Hero Section */
.hero {
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100vh;
  background: #20160d url("../images/hero-img.jpg") no-repeat center
    center/cover;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* full screen width */
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar-container {
  max-width: 1508px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Sans 9pt";
  text-transform: uppercase;
  font-size: 0.9rem;
}
.navbar.sticky {
  position: fixed;
  background: linear-gradient(to right, #3d2a15, #150d07);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f1c40f;
}

.nav-links a.active {
  color: #f1c40f;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-links-mobile {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.nav-links-mobile a {
  font-size: 1.2rem;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 4.6rem;
  margin-bottom: 1rem;
  font-weight: lighter;
}

.hero-content p {
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-content .btn {
  border: 1px solid #fff;
  padding: 0.5rem 2rem;
  background: transparent;
  font-family: "DM Sans 9pt";
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.hero-content .btn:hover {
  background: #fff;
  color: #000;
}

.search-icon {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Scroll to discover */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  margin-top: 2rem;
}

.scroll-down a {
  color: #fff;
  text-decoration: none;
}
.scroll-down i {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* ===== Offer Section ===== */
.offer-section {
  padding: 4rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 4.6rem;
  line-height: 6rem;
  font-weight: lighter;
  margin-bottom: 3.5rem;
  color: #000;
}

.offer-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap; /* ensures stacking on smaller screens */
  margin-bottom: 2rem;
}

.offer-card {
  flex: 1 1 45%; /* responsive sizing */
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-icon {
  margin-bottom: 1rem;
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.offer-icon > img {
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: middle;
}

.offer-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.offer-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1.5rem;
  padding: 0 1rem; /* breathing space */
  min-height: 130px;
  max-width: 80%;
}

.offer-card .resp-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.offer-btn {
  margin-top: 4rem;
}

.offer-btn .btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #000;
  transition: all 0.3s ease;
}

.offer-btn .btn:hover {
  background: #000;
  color: #fff;
}

/* ===== About Section ===== */
.about-section {
  padding: 4rem 1rem;
}

.about-section .container {
  max-width: 1518px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  /* flex: 1 1 50%; */
  max-width: 700px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: #000000;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  color: #000000;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1rem;
}

.about-image {
  /* flex: 1 1 40%; */
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Menus Section ===== */
.menu-section {
  padding: 4rem 1rem;
  text-align: center;
}

.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section h2 {
  font-size: 4.6rem;
  line-height: 6rem;
  font-weight: lighter;
  margin-bottom: 1rem;
  color: #000000;
}

.menu-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  margin: 0 auto 3rem;
  max-width: 890px;
}

.menu-image {
  margin-bottom: 4rem;
}

.menu-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.menu-services {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.service-box {
  max-width: 600px;
  text-align: center;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.service-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.service-box ul {
  list-style: disc;
  text-align: left;
  padding-left: 1.5rem;
  margin: 0 auto;
  max-width: 500px;
}

.service-box ul li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
}

/* ===== Sample Menus Section ===== */
.sample-menus {
  padding: 4rem 1rem;
  background-color: #f2ebde;
}

.sample-menus .container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-heading {
  font-size: 4.6rem;
  line-height: 6rem;
  font-weight: lighter;
  margin-bottom: 3rem;
  color: #000000;
  text-align: center;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

/* Left Image */
.menu-image {
  flex: 1 1 40%;
  min-width: 300px;
}

/* Right Menu */
.menu-list {
  flex: 1 1 55%;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-column {
  flex: 1 1 250px;
}

.menu-column h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.menu-column ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.menu-column ul li {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
}

/* ===== Footer ===== */
.site-footer {
  background: #f5f1ea; /* light beige */
  padding: 4rem 1rem 2rem;
  font-family: "Marcellus";
  color: #111;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.footer-col {
  font-size: 1rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-weight: lighter;
}

.footer-col p {
  margin: 0.4rem 0;
}

.footer-col a {
  color: #111;
  text-decoration: none;
}

.footer-col .btn {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.6rem 1.2rem;
  border: 1px solid #111;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col .btn:hover {
  background: #111;
  color: #fff;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

/* Bottom Section */
.footer-bottom {
  max-width: 1200px;
  margin: 0.5rem auto 0;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom img {
  height: 38px;
}

.footer-right p {
  font-size: 0.9rem;
  color: #333;
}

.footer-right a {
  color: #333;
  text-decoration: underline;
  margin: 0 0.3rem;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 8px;
  border: 1px solid #000;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  background: none;
  box-shadow: none;
}

.footer-social a:hover {
  background-color: rgb(0, 0, 0);
  background-image: none;
  opacity: 1;
  color: #fff;
}

.reduce-size {
  width: 60% !important;
}

/* Modal Base */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Content */
.modal-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.modal-content p {
  margin-bottom: 1rem;
}
/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

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

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    gap: 2rem;
  }
  h1,
  h2,
  h3 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .section-title,
  .menu-heading {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }

  .menu-section h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }

  p {
    font-size: 1.2rem !important;
  }

  .offer-card h3 {
    font-size: 1.6rem;
  }
  .about-text h3 {
    font-size: 1.6rem;
  }

  .service-box h3 {
    font-size: 1.6rem;
  }
  .service-box ul li {
    font-size: 1.2rem;
  }
  .menu-grid {
    flex-direction: column;
  }

  .offer-card p {
    min-height: auto;
    max-width: 100%;
  }
  .about-section {
    padding: 3rem 1rem;
  }

  .menu-section {
    padding: 3rem 1rem;
  }

  .sample-menus {
    padding: 3rem 1rem;
  }
  .footer-col {
    flex: auto;
  }
  .menu-list {
    flex-direction: column;
    gap: 2rem;
  }

  .offer-icon {
    height: auto;
  }
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .offer-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .menu-column h3 {
    font-size: 1.5rem;
  }

  .menu-column ul li {
    font-size: 1.2rem;
  }

  .footer-col h3 {
    font-size: 1.2rem;
  }

  .menu-grid {
    gap: 2rem;
  }

  .menu-image {
    margin-bottom: 1rem;
  }
  .nav-links {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%; /* just below navbar */
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }

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

@media (max-width: 768px) {
  .service-icon img {
    width: 20%;
  }
  .menu-services {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

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