/* ========== CSS RESET + VARIABLES ========== */
:root {
  --brown: #7B3A1A;
  --orange: #C8581A;
  --teal: #0D2E2A;
  --gold: #D4A853;
  --cream: #F0EBE0;
  --white: #ffffff;
  --search-bg: #f0f0f0;
  --search-btn: #e08a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,83,0.3) transparent;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(212,168,83,0.3);
  border-radius: 4px;
}

body {
  background: #0D2E2A;
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
/* ========== INTRO PAGE ========== */
#intro-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: #0D2E2A;
}

.intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: fadeUp 0.8s ease both;
}

.intro-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.intro-para {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin-bottom: 40px;
  max-width: 400px;
}

.intro-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.enter-btn{
  background: var(--gold);
  color: #0D2E2A;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  letter-spacing: 3px;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.enter-btn:hover {
  background: #e8c06a;
  transform: translateY(-2px);
}

.feedback-link {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.5);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  letter-spacing: 3px;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.feedback-link:hover {
  background: rgba(212,168,83,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ========== LANDING PAGE ========== */
#landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: #0D2E2A;
  padding-top: 40px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease both;
}

.logo-image {
  width: 200px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: block;
}
.logo-image:hover { transform: scale(1.02); }

.backBtn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
.back-btn {
  background: none;
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

/* --- UPDATED TO MATCH YOUR NEW HTML CLASSES --- */
.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 15vw, 80px);
  letter-spacing: 4px;
  color: var(--white);
  font-weight: 400;
}

.logo-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 6vw, 38px); /* Smaller than the main title */
  letter-spacing: 4px;
  color: var(--white);
  font-weight: 300;
  margin-top: -8px; /* Pulls it closer to the top */
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.5;
}

.menu-prompt {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s ease both;
  font-weight: 500;
}

.menu-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  max-width: 640px;
  animation: fadeUp 0.8s 0.4s ease both;
  justify-content: center;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.menu-btn::before { display: none; }

.menu-btn:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,83,0.15);
}

/* Image area — top portion of card */
.btn-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(212,168,83,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.menu-btn:hover .btn-img img {
  transform: scale(1.06);
}

/* Text + button area — bottom portion */
.btn-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 20px;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(212,168,83,0.15);
}

.btn-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.btn-desc {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  text-align: center;
  line-height: 1.6;
}




/* ========== SECTION VIEW ========== */
#section-view {
  display: none;
  min-height: 100vh;
  background: #0D2E2A;
  padding-top: 135px;
}

/* header — always visible while scrolling */
.section-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0D2E2A;
  border-bottom: 1px solid rgba(212,168,83,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.back-btn {
  background: none;
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}
.back-btn:hover { background: rgba(212,168,83,0.15); border-color: var(--gold); }

.section-title-bar {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--gold);
}

/* ========== SEARCH BAR — always visible ========== */
#bar-controls {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(13,46,42,0.97);
  padding: 16px 24px 12px;
  border-bottom: 1px solid rgba(212,168,83,0.15);
  min-height: 70px;
}

.bar-search-container {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  height: 50px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.1); }

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.search-bar-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--search-bg);
  border-radius: 50px;
  padding: 4px 6px 4px 20px;
  max-width: 700px;
  min-width: 0;
}

.search-icon {
  font-size: 18px;
  color: #555;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-bar-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #333;
  outline: none;
  min-width: 0;
}

.search-bar-wrapper input::placeholder {
  color: #888;
}

.search-btn {
  background: var(--search-btn);
  border: none;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover { background: #c97a1e; }

.category-sidebar {
  display: none;
  max-width: 1200px;
  margin: 12px auto 0;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(212,168,83,0.1);
}
.category-sidebar.open { display: block; }

.sidebar-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212,168,83,0.2);
  padding-bottom: 8px;
}

.sidebar-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-cat-list .cat-pill {
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(212,168,83,0.25);
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.sidebar-cat-list .cat-pill:hover {
  border-color: var(--gold);
  opacity: 1;
  background: rgba(212,168,83,0.08);
  color: var(--gold);
}
.sidebar-cat-list .cat-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D2E2A;
  opacity: 1;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--cream);
  opacity: 0.5;
  font-style: italic;
  font-size: 15px;
}

/* ========== SPLIT LAYOUT ========== */
.split-layout {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* LEFT — parallax via JS */
.split-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 140px;
  border-radius: 16px;
  background: #0D2E2A;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
}

/* Image fade-in — starts hidden, JS adds .img-visible */
.split-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.split-left img.img-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RIGHT — scrolls normally */
.split-right {
  flex: 2;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* ========== CATEGORY BLOCK ========== */
.category {
  margin-bottom: 48px;
  animation: fadeUp 0.5s ease both;
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 12px 18px 18px 18px;
}

.category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 14px;
}

.item-info { flex: 1; min-width: 0; }

.item-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.2px;
  margin-bottom: 3px;
}

.item-desc {
  font-size: 12px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.4;
}

.item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 1px;
  font-weight: 400;
}

.price-double {
  text-align: right;
  min-width: 110px;
  flex-shrink: 0;
}

.price-row {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 15px;
}

.price-row span {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 17px;
}

.note {
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 8px;
}

.addon-badge {
  display: inline-block;
  background: rgba(200,88,26,0.2);
  border: 1px solid rgba(200,88,26,0.4);
  color: var(--orange);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 8px;
}

.subnote {
  font-size: 11px;
  color: var(--cream);
  opacity: 0.5;
  margin-top: 8px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.cat-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 1px;
}

/* BAR: CATEGORY FILTER — FULL WIDTH MODE */
.split-layout.no-images .split-right {
  flex: 1;
  max-width: 100%;
}

/* ========== FOOTER ========== */
footer {
  background: #0D2E2A;
  border-top: 1px solid rgba(212,168,83,0.3);
  padding: 32px 24px 24px;
  margin-top:auto;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  text-align: center;
}

/* ========== SOCIAL MEDIA LINKS ========== */

.socials {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  margin-top: 70px;
  align-items: center;
  gap: 8px;
}
.socials p {
  font-size: 25px;
  color: var(--gold);
  letter-spacing: 1px;
}
.socials a img {
  display:flex;
  flex-direction: row;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.2s ease;
  color: var(--gold);
}
.socials a img:hover {
  transform: scale(1.1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px);}
  to   { opacity: 1; transform: translateY(0);}
}

/* ========== TABLET ========== */
@media (max-width: 1024px) {
  .split-layout {
    gap: 20px;
    padding: 24px 16px 60px;
  }
  .split-left {
    gap: 100px;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {

  .intro-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .enter-btn, .feedback-link {
    width: 100%;
    text-align: center;
  }
  .intro-para {
    font-size: 13px;
    line-height: 1.6;
  }
  .section-header {
    padding: 10px 12px;
  }

  #section-view {
    padding-top: 100px;
  }

  .split-layout {
    flex-direction: row;
    gap: 6px;
    padding: 10px 8px 40px;
    width: 100%;
  }

  .split-left {
    flex: 1;
    min-width: 0;
    gap: 80px;
  }

  .split-left img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  .split-right {
    flex: 2;
    min-width: 0;
  }

  .category {
    padding: 6px 4px 8px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .category-title {
    font-size: 13px;
    letter-spacing: 0.5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding-bottom: 6px;
    margin-bottom: 4px;
  }

  .cat-sub {
    font-size: 9px;
    opacity: 0.5;
  }

  .menu-item {
    padding: 5px 0;
    gap: 4px;
    align-items: center;
  }

  .item-name {
    font-size: 11px;
    margin-bottom: 1px;
  }

  .item-desc {
    font-size: 9px;
    line-height: 1.3;
  }

  .item-price {
    font-size: 12px;
    white-space: nowrap;
  }

  .price-double {
    min-width: 50px;
    flex-shrink: 0;
  }

  .price-row {
    gap: 6px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .price-row span {
    font-size: 11px;
    line-height: 1.2;
  }

  .note {
    font-size: 9px;
  }

  .addon-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .subnote {
    font-size: 10px;
  }

  /* Search bar */
  #bar-controls {
    top: 50px;
    padding: 6px 6px 4px;
    min-height: 50px;
  }

  .bar-search-container {
    gap: 4px;
    height: 40px;
  }

  .hamburger-btn {
    padding: 2px;
    gap: 3px;
  }

  .hamburger-line {
    width: 16px;
    height: 2px;
  }

  .search-bar-wrapper {
    padding: 2px 4px 2px 10px;
  }

  .search-icon {
    font-size: 12px;
    margin-right: 4px;
  }

  .search-bar-wrapper input {
    font-size: 11px;
    padding: 6px 0;
  }

  .search-btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  .sidebar-cat-list .cat-pill {
    font-size: 9px;
    padding: 3px 8px;
  }

  .menu-buttons {
    flex-direction: column;
    gap: 14px;
    max-width: 100%;
  }

  .menu-btn {
    flex-direction: row;
    align-items: stretch;
    border-radius: 12px;
  }

  .btn-img {
    width: 130px;
    min-width: 130px;
    aspect-ratio: unset;
    height: auto;
    border-radius: 0;
    flex-shrink: 0;
  }

  .btn-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }

  .btn-body {
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 14px;
    border-top: none;
    border-left: 1px solid rgba(212,168,83,0.15);
    text-align: left;
  }

  .btn-label {
    font-size: 24px;
  }

  .btn-desc {
    font-size: 9px;
    text-align: left;
  }

  .logo-image {
    height: 150px;
    width: 150px;
    border-radius: 18px;
  }

  /* Mobile logo adjustments */
  .logo-main {
    font-size: clamp(42px, 12vw, 52px);
  }
  .logo-subtitle {
    font-size: clamp(22px, 5vw, 26px);
    margin-top: -4px;
  }
}
