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

body {
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #fffaf4;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background-color: #111;
  color: white;
}

.navbar h1 {
  font-size: 24px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.hero {
  min-height: 70vh;
  background-color: #333;
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url("../images/hero-food.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

.hero-text {
  max-width: 600px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  background-color: #d35400;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 12px;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid white;
}

.info,
.menu-page,
.contact-page {
  padding: 50px 8%;
  max-width: 900px;
  margin: auto;
}

.info {
  text-align: center;
}

.info h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.menu-page h2,
.contact-page h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.menu-section {
  margin-bottom: 40px;
}

.menu-section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 2px solid #d35400;
  padding-bottom: 8px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.menu-item h4 {
  font-size: 20px;
}

.menu-item span {
  font-weight: bold;
  white-space: nowrap;
}

.contact-page {
  text-align: center;
}

.contact-page p {
  margin-bottom: 14px;
  font-size: 18px;
}

.contact-info {
  margin-bottom: 48px;
}

.contact-form-section {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section h2 {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: bold;
  font-size: 15px;
}

.required {
  color: #d35400;
}

.optional {
  color: #888;
  font-weight: normal;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d35400;
}

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

.submit-btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}

.form-status--success {
  display: block;
  background-color: #e6f4ea;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  display: block;
  background-color: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

footer {
  text-align: center;
  padding: 24px;
  background-color: #111;
  color: white;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .navbar a {
    margin: 0 8px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .menu-item {
    flex-direction: column;
  }
}

/* Menu page styling */

html {
  scroll-behavior: smooth;
}

.menu-hero {
  text-align: center;
  padding: 35px 20px;
  margin-bottom: 24px;
  background-color: #fff3e6;
  border-radius: 14px;
}

.menu-hero h2 {
  font-size: 42px;
  margin-bottom: 8px;
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: #fffaf4;
  padding: 14px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.category-nav a {
  color: #111;
  text-decoration: none;
  border: 1px solid #d35400;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
}

.category-nav a:hover {
  background-color: #d35400;
  color: white;
}

.section-description {
  font-style: italic;
  margin-bottom: 18px;
  color: #555;
}

.menu-note,
.extras {
  background-color: #f7f1e8;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.extras p {
  margin-bottom: 6px;
}

.menu-section {
  scroll-margin-top: 95px;
}
.menu-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.menu-card-text {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card-text h4 {
  font-size: 26px;
  margin-bottom: 8px;
}

.menu-card-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

.menu-card-text span {
  font-size: 24px;
  font-weight: bold;
  color: #111;
}

.menu-card img {
  width: 260px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .menu-card {
    flex-direction: column;
  }

.menu-card img {
  width: 100%;
  height: 220px;
  min-width: 0;
  order: -1;
  object-fit: cover;
}

  .menu-card-text {
    padding: 22px;
  }

  .menu-card-text h4 {
    font-size: 22px;
  }

  .menu-card-text p {
    font-size: 16px;
  }

  .menu-card-text span {
    font-size: 22px;
  }
}
/* Clean homepage design */

.site-header {
  text-align: center;
  padding: 40px 8% 35px;
  background-color: white;
}

.logo-circle {
  width: 130px;
  height: 130px;
  border: 3px solid #d35400;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d35400;
  font-weight: bold;
  font-size: 22px;
}

.site-header h1 {
  font-size: 44px;
  color: #d35400;
  margin-bottom: 6px;
}

.tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 22px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  color: #d35400;
  font-weight: bold;
  text-transform: lowercase;
  letter-spacing: 3px;
}

.main-nav a:hover {
  color: #111;
}

.welcome-section {
  background-color: #f3f3f3;
  text-align: center;
  padding: 75px 8%;
}

.welcome-section h2 {
  font-size: 48px;
  color: #d35400;
  font-weight: 400;
  margin-bottom: 24px;
}

.welcome-section p {
  max-width: 850px;
  margin: 0 auto 32px;
  font-size: 19px;
  line-height: 1.9;
  color: #333;
}

.home-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.featured-home {
  padding: 70px 8%;
  background-color: #fffaf4;
}

.featured-home h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 36px;
  color: #111;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-card {
  background-color: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.featured-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.featured-card h3 {
  font-size: 22px;
  padding: 20px 20px 8px;
}

.featured-card p {
  padding: 0 20px 24px;
  color: #666;
  line-height: 1.6;
}

.home-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 60px 8%;
  background-color: white;
  text-align: center;
}

.home-info h2 {
  color: #d35400;
  margin-bottom: 10px;
}

.home-info p {
  font-size: 18px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .site-header {
    padding: 32px 6%;
  }

  .logo-circle {
    width: 105px;
    height: 105px;
    font-size: 18px;
  }

  .site-header h1 {
    font-size: 36px;
  }

  .main-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .welcome-section {
    padding: 55px 6%;
  }

  .welcome-section h2 {
    font-size: 36px;
  }

  .welcome-section p {
    font-size: 17px;
    line-height: 1.7;
  }

  .home-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .featured-card img {
    height: 240px;
  }

  .home-info {
    grid-template-columns: 1fr;
  }
}
.site-logo {
  width: 260px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
}
.storefront-section {
  padding: 70px 8%;
  background-color: #f3f3f3;
}

.storefront-container {
  max-width: 900px;
  margin: 0 auto;
}

.storefront-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .storefront-section {
    padding: 40px 6%;
  }

  .storefront-container {
    max-width: 100%;
  }

  .storefront-image {
    height: auto;
    border-radius: 16px;
  }
}

/* ── Hero v2 (split layout with diagonal image) ── */
.hero-v2 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fffaf4;
  overflow: hidden;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  width: 100%;
}

.hero-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  animation: heroFadeUp 0.6s ease both;
}

.hero-v2-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-v2-logo-img {
  height: 38px;
  width: auto;
}

.hero-v2-brand-name {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
}

.hero-v2-slogan {
  font-size: 9px;
  letter-spacing: 3px;
  color: #999;
  margin: 0;
  text-transform: uppercase;
}

.hero-v2-nav {
  display: flex;
  gap: 28px;
}

.hero-v2-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-v2-nav a:hover {
  color: #d35400;
}

.hero-v2-main {
  flex: 1;
}

.hero-v2-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  color: #222;
  margin-bottom: 0;
  animation: heroFadeUp 0.6s 0.1s ease both;
}

.hero-v2-accent {
  color: #d35400;
}

.hero-v2-divider {
  width: 80px;
  height: 4px;
  background-color: #d35400;
  margin: 24px 0;
  animation: heroFadeUp 0.6s 0.2s ease both;
}

.hero-v2-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: heroFadeUp 0.6s 0.3s ease both;
}

.hero-v2-cta {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d35400;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, letter-spacing 0.2s;
  animation: heroFadeUp 0.6s 0.35s ease both;
}

.hero-v2-cta:hover {
  color: #b8460a;
  letter-spacing: 5px;
}

.hero-v2-footer {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  animation: heroFadeUp 0.6s 0.45s ease both;
}

.hero-v2-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

.hero-v2-info svg {
  width: 18px;
  height: 18px;
  color: #d35400;
  flex-shrink: 0;
}

/* Right: diagonal reveal image */
.hero-v2-image {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  animation: clipReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes clipReveal {
  from { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  to   { clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .hero-v2 {
    flex-direction: row;
  }

  .hero-v2-content {
    width: 60%;
    padding: 48px;
  }

  .hero-v2-footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-v2-image {
    width: 40%;
    min-height: 100%;
    animation: clipRevealDiag 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  }

  @keyframes clipRevealDiag {
    from { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
    to   { clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
  }

  .hero-v2-title {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .hero-v2-content {
    width: 60%;
    padding: 64px;
  }

  .hero-v2-title {
    font-size: 60px;
  }
}

@media (max-width: 640px) {
  .hero-v2-nav { display: none; }
  .hero-v2-title { font-size: 36px; }
}
