/* ==========================================================================
   Khan's Adda — brand palette pulled from the Instagram logo (red/gold badge
   + Bengali script) plus Bangladesh-flag green as the accent.
   ========================================================================== */
:root {
  --red: #E4222E;
  --red-dark: #B71C26;
  --gold: #F5A623;
  --gold-light: #FFD873;
  --green: #00693E;
  --cream: #FFF8EC;
  --cream-2: #FFEFD6;
  --ink: #2B1810;
  --brown: #6B3A22;
  --white: #FFFFFF;

  --font-body: 'Poppins', 'Noto Sans Bengali', 'Noto Sans JP', sans-serif;
  --font-script: 'Pacifico', 'Noto Sans Bengali', cursive;

  --shadow: 0 10px 30px rgba(180, 40, 20, 0.15);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
section { position: relative; }

/* language toggling ------------------------------------------------------- */
html[data-lang="en"] .lang-jp { display: none; }
html[data-lang="jp"] .lang-en { display: none; }
html[data-lang="jp"] body { font-family: 'Noto Sans JP', var(--font-body); }

/* decorative rickshaw-art style stripe divider ---------------------------- */
.stripe-divider {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 24px,
    var(--gold) 24px 48px,
    var(--green) 48px 72px,
    var(--gold-light) 72px 96px
  );
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* buttons ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(228, 34, 46, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(228, 34, 46, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}
.btn-gold:hover { transform: translateY(-3px); }

.section-heading {
  text-align: center;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--red-dark);
  margin: 0 0 6px;
}
.section-heading p {
  color: var(--brown);
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 560px;
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* header -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(43, 24, 16, 0.08);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
}
.logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(183, 28, 38, 0.4);
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text { line-height: 1.1; }
.logo-text .en {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--red);
  display: block;
}
.logo-text .bn {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 0.85rem;
  color: var(--brown);
  font-weight: 600;
  display: block;
}

.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); }
.main-nav a.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.main-nav a.nav-cta:hover { background: var(--red-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  border: 2px solid var(--red);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  border: none;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.85rem;
}
.lang-toggle button.active {
  background: var(--red);
  color: var(--white);
}
.insta-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}
.insta-link:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
  place-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero ------------------------------------------------------------------ */
.hero {
  background:
    linear-gradient(160deg, rgba(228,34,46,0.62), rgba(183,28,38,0.68)),
    url('../pictures/hero-1.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 110px 24px 90px;
  text-align: center;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 70%);
  z-index: 0;
}
.hero::before { top: -120px; left: -80px; }
.hero::after { bottom: -140px; right: -60px; background: radial-gradient(circle, rgba(0,105,62,0.35), transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 6px 0 6px;
  color: var(--white);
  text-shadow: 0 6px 22px rgba(0,0,0,0.45);
}
.hero .bn-title {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero .tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero .subtext {
  font-size: 1.02rem;
  opacity: 0.92;
  margin-bottom: 34px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* about ------------------------------------------------------------------ */
.about {
  padding: 90px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
}
.about-photo img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.about-photo img.slide.active { opacity: 1; }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--white);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}
.slideshow-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slideshow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slideshow-dot.active { background: var(--white); transform: scale(1.2); }
.about-text .eyebrow { color: var(--red); }
.about-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  color: var(--red-dark);
  margin: 0 0 18px;
}
.about-text p { margin-bottom: 16px; color: var(--brown); }
.about-badges { display: flex; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.about-badge {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}
.about-badge strong { display: block; color: var(--red); font-size: 1.3rem; }
.about-badge span { font-size: 0.82rem; color: var(--brown); }

/* menu preview / sliding tiles -------------------------------------------- */
.menu-preview {
  padding: 90px 0 70px;
  background: var(--cream-2);
  overflow: hidden;
}
.slider-track-wrap {
  overflow: hidden;
  margin: 46px 0 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.slider-track-wrap:hover .slider-track { animation-play-state: paused; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.menu-tile {
  width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.menu-tile:hover { transform: translateY(-8px) rotate(-1deg); }
.menu-tile-img {
  height: 150px;
  background: linear-gradient(135deg, var(--gold-light), var(--red));
  position: relative;
  overflow: hidden;
}
.menu-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-tile-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  color: var(--red-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.menu-tile-body { padding: 14px 16px 18px; }
.menu-tile-body .name-en { font-weight: 700; color: var(--ink); display: block; }
.menu-tile-body .name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--brown);
  display: block;
  margin-bottom: 6px;
}
.menu-tile-body .price { color: var(--red); font-weight: 700; font-size: 0.95rem; }
.menu-preview-cta { text-align: center; }

/* gallery ------------------------------------------------------------------ */
.gallery { padding: 90px 0; background: var(--cream); }
.gallery-grid {
  display: flex;
  gap: 16px;
  margin: 46px 0 40px;
}
.gallery-grid-mobile { display: none; }
.gallery-grid .g-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.gallery-grid .g-col:nth-child(even) { margin-top: 32px; }
.gallery-grid .g-item {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-grid .g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(43,24,16,0.22);
}
.gallery-grid .g-item img { width: 100%; height: auto; display: block; }
.gallery-follow { text-align: center; color: var(--brown); }
.gallery-follow a { color: var(--red); font-weight: 700; }

/* visit -------------------------------------------------------------------- */
.visit { padding: 90px 0; background: var(--red); color: var(--white); }
.visit .section-heading h2 { color: var(--white); }
.visit .section-heading p { color: var(--gold-light); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
}
.visit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(2px);
}
.visit-card h3 {
  color: var(--gold-light);
  margin-top: 0;
  font-size: 1.2rem;
}
.visit-card p { margin: 6px 0; }
.visit-card p a { text-decoration: underline; text-underline-offset: 3px; }
.visit-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.25); }
.visit-row:last-child { border-bottom: none; }
.visit-cards-col { display: flex; flex-direction: column; gap: 24px; }
.payments-group-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  margin: 16px 0 8px !important;
}
.payments-group-label:first-of-type { margin-top: 6px !important; }
.payments-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.2);
  overflow: hidden;
  flex-shrink: 0;
}
.pay-badge svg { width: 100%; height: 100%; }
.pay-badge-wide {
  width: auto;
  padding: 0 7px;
  gap: 4px;
}
.pay-badge-wide svg { width: 18px; height: 18px; flex-shrink: 0; }
.pay-badge-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.55rem;
  white-space: nowrap;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: 260px; }

/* footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: var(--gold-light); margin: 0 0 14px; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,248,236,0.7);
}

/* menu page ------------------------------------------------------------------ */
.menu-hero {
  background: linear-gradient(160deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 80px 24px 50px;
  text-align: center;
}
.menu-hero h1 { font-family: var(--font-script); font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 6px 0; }
.category-nav {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(43,24,16,0.08);
  overflow-x: auto;
}
.category-nav ul {
  display: flex;
  gap: 8px;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  white-space: nowrap;
}
.category-nav a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--cream-2);
  color: var(--brown);
}
.category-nav a:hover, .category-nav a.active { background: var(--red); color: var(--white); }

.menu-section { padding: 60px 0 20px; scroll-margin-top: 130px; }
.menu-section:nth-child(even) { background: var(--cream-2); }
.menu-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 10px;
}
.menu-section-title h2 { color: var(--red-dark); margin: 0; font-size: 1.7rem; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-bottom: 60px;
}
.menu-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(43,24,16,0.06);
}
.menu-item-img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--red));
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info { flex: 1; }
.menu-item-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.menu-item-top .name-en { font-weight: 700; }
.menu-item-top .price { color: var(--red); font-weight: 700; white-space: nowrap; }
.menu-item .name-jp { font-family: 'Noto Sans JP', sans-serif; font-size: 0.85rem; color: var(--brown); }
.menu-item .desc { font-size: 0.88rem; color: var(--brown); margin-top: 4px; }
.spice-tag { color: var(--red); font-size: 0.85rem; margin-left: 4px; }

/* reservation page ------------------------------------------------------------------ */
.reserve-section {
  padding: 70px 0 100px;
  background:
    linear-gradient(rgba(255,248,236,0.94), rgba(255,248,236,0.94)),
    url('../pictures/gallery-3.jpg') center/cover no-repeat;
}
.reserve-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.reserve-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}
.form-row-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 22px;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 2px solid var(--cream-2);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.reserve-form textarea { resize: vertical; }

/* custom calendar date picker ------------------------------------------------ */
.date-picker { position: relative; }
.date-picker-input {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 2px solid var(--cream-2);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.date-picker-input:hover { border-color: var(--gold); }
.date-picker-input[aria-expanded="true"] { border-color: var(--gold); }
.date-picker-icon { opacity: 0.7; }

.calendar-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(43, 24, 16, 0.25);
  padding: 14px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--red-dark);
}
.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: var(--red);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.cal-nav:hover:not(:disabled) { background: var(--gold-light); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
}
.cal-day:hover:not(:disabled) { background: var(--cream-2); }
.cal-day.today { border: 2px solid var(--gold); }
.cal-day.selected { background: var(--red); color: var(--white); font-weight: 700; }
.cal-day.disabled { color: rgba(43,24,16,0.25); cursor: default; }
.cal-day.empty { cursor: default; }

/* custom time picker ---------------------------------------------------------- */
.time-picker { position: relative; }
.time-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 300px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(43, 24, 16, 0.25);
  padding: 16px;
}
.time-group + .time-group { margin-top: 16px; }
.time-group-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red-dark);
  margin-bottom: 8px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  border: 2px solid var(--cream-2);
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.time-slot:hover { border-color: var(--gold); }
.time-slot.selected { background: var(--red); border-color: var(--red); color: var(--white); }

.reserve-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--brown);
  line-height: 1.5;
}
.reserve-confirm {
  background: var(--cream-2);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.reserve-confirm p { margin: 2px 0; font-weight: 600; color: var(--green); }
.reserve-alt-card { background: var(--white); border: 1px solid rgba(43,24,16,0.08); color: var(--ink); box-shadow: var(--shadow); }
.reserve-alt-card h3 { color: var(--red); }
.reserve-alt-card .visit-row { border-bottom: 1px dashed rgba(43,24,16,0.15); color: var(--ink); }

/* two-stage reservation flow ------------------------------------------------ */
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-dot.active { background: var(--red); color: var(--white); }
.step-dot.done { background: var(--green); color: var(--white); }
.step-line { flex: 1; height: 2px; background: var(--cream-2); max-width: 60px; }

.step-title {
  color: var(--red);
  font-size: 1.05rem;
  margin: 0 0 18px;
}
.hours-hint {
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--brown);
  background: var(--cream-2);
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.4;
}
.availability-msg {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}
.availability-msg.ok { background: rgba(0,105,62,0.1); color: var(--green); border-left: 4px solid var(--green); }
.availability-msg.bad { background: rgba(228,34,46,0.08); color: var(--red-dark); border-left: 4px solid var(--red); }

.reserve-summary {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 600;
}
.step2-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 4px; }

/* responsive ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid-desktop { display: none; }
  .gallery-grid-mobile { display: flex; }
  .menu-list { grid-template-columns: 1fr; }
  .reserve-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: auto;
    width: min(260px, calc(100vw - 32px));
    background: var(--white);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 45px rgba(43, 24, 16, 0.2);
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; transform: scale(1); pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { display: block; padding: 12px 14px; border-radius: 14px; }
  .main-nav a:hover, .main-nav a.active { background: var(--cream-2); }
  .main-nav a.nav-cta { text-align: center; margin-top: 6px; }
  .hamburger { display: grid; }
  .header-actions .lang-toggle { order: 2; }
}
