:root {
  --brown-main: #BC5F31;
  --beige-text: #FFEEDF;
  --active-yellow: #FFC526;
  --text-brown: #6E371B;

  --btn-orange: #FF6F26;
  --btn-orange-text: #FFEEDF;

  --btn-green: #5D581C;
  --btn-green-text: #E0D7C6;

  --btn-radius: 521px;

  --bg-light: #FFFAF4;
  --bg-soft: #FFEEDF;

  --grad-1: #F2CFB2;
  --grad-2: #FF9966;
  --grad-3: #FFBD87;

  --radius-main: 40px;

  --text-xs: 14px;
  --text-sm: 16px;
  --text-md: 18px;
  --text-lg: 22px;
  --text-xl: 26px;

  --title-sm: 46px;
  --title-md: 64px;
  --title-lg: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  background: var(--bg-light);
  color: var(--text-brown);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
button {
  font-family: "Outfit", sans-serif;
}

button {
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-card {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-card.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

button,
.pillButton,
.viewMenu,
.menuBtnSmall,
.openingHoursBtn,
.happeningsButtons a {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.pillButton,
.viewMenu,
.menuBtnSmall {
  border-radius: var(--btn-radius);
  padding: 11px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.navBar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  width: 100%;
  padding: 10px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--brown-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease;
}

.navBar.hide {
  transform: translateY(-100%);
}

.navLogo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navLogo img {
  width: 100px;
  height: auto;
  display: block;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 80px;
}

.navLink {
  color: var(--beige-text);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.navLink:hover,
.navLink.active {
  color: var(--active-yellow);
}

.langDropdown {
  position: relative;
}

.langButton {
  background: none;
  border: 2px solid var(--beige-text);
  color: var(--beige-text);
  border-radius: var(--btn-radius);

  font-weight: 700;
  font-size: var(--text-xs);

  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  transition: all 0.25s ease;
}

.langButton:hover {
  background: rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.langIcon,
.langMiniIcon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.langIcon {
  filter: brightness(0) invert(1);
}

.langButton .langText {
  margin-left: 6px;
}

.langArrow {
  margin-left: 6px;
}

.langMenu {
  position: absolute;
  top: 125%;
  right: 0;

  min-width: 150px;
  padding: 8px;

  display: flex;
  flex-direction: column;

  background: var(--bg-light);
  border: 2px solid rgba(110, 55, 27, 0.15);
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(110, 55, 27, 0.22);
}

.langOption {
  width: 100%;
  padding: 11px 14px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: transparent;
  border: none;
  border-radius: 14px;

  color: var(--text-brown);
  font-weight: 700;
  font-size: var(--text-xs);

  transition: all 0.2s ease;
}

.langOption img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.langOption:hover {
  background: rgba(255, 111, 38, 0.12);
  color: var(--btn-orange);
  padding-left: 16px;
}

.langOption.active {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
}

.tick {
  margin-left: auto;
}

.langMenu[hidden] {
  opacity: 0;
  pointer-events: none;
}

.langOption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;

  /* hollow style */
  background: transparent;
  color: var(--brown-main);   /* 🔥 always brown */
  border: 2px solid #ffffff;

  transition: all 0.3s ease;
}
.langOption:hover {
  background: #ffffff;
  color: var(--brown-main);   /* keep brown */
  border-color: #ffffff;
}
.langOption.active {
  background: #F4C542;
  border-color: #F4C542;
  color: var(--brown-main);   /* still brown */
}
/* ================= MOBILE MENU ================= */
.mobileMenuBtn,
.mobileCloseBtn,
.mobileMenu {
  display: none;
}

.mobileMenuLogoLink {
  display: block;
  margin-bottom: 54px;
}

.mobileMenuLogoLink .mobileMenuLogo {
  margin-bottom: 0;
}

/* ================= MOBILE LANG BUTTONS ================= */
.mobileLangButtons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px; /* spacing from top of mobile menu */
}

.mobileLangButtons button {
  padding: 10px 18px;
  border-radius: 18px;
  border: 2px solid var(--beige-text); /* beige border */
  background: var(--beige-text);        /* beige background */
  color: var(--brown-main);            /* brown text for contrast */
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobileLangButtons button:hover {
  background: transparent;             /* hollow effect on hover */
  color: var(--yellow-main);           /* yellow text */
  border-color: var(--yellow-main);    /* yellow border */
  border-width: 3px;
}

.mobileLangOption {
  padding: 10px 18px;
  border-radius: 18px;
  border: 2px solid var(--beige-text);
  background: var(--beige-text);
  color: var(--brown-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.mobileLangOption.active {
  background: #F4C542;
  color: #ffeedf;
  border: 3px solid #F4C542;
}


/* ================= MOBILE SOCIAL ICONS ================= */
.mobileMenuIcons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.mobileMenuIcons img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hoursLightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: none;
  align-items: center;
  justify-content: center;
}

.hoursLightbox.is-open {
  display: flex;
}

.hoursOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hoursBox {
  position: relative;
  z-index: 1;

  width: min(90%, 460px);
  padding: 42px 38px 34px;

  background: var(--bg-light);
  color: var(--text-brown);
  border-radius: var(--radius-main);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hoursClose {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 34px;
  height: 34px;
  padding: 0;

  border: none;
  border-radius: 50%;

  background: var(--btn-orange);
  color: var(--btn-orange-text);

  font-size: 26px;
  line-height: 1;
}

.hoursTitle {
  font-family: "Cormorant", serif;
  font-size: var(--title-sm);
  font-weight: 500;
  margin-bottom: 24px;
  text-align: center;
}

.hoursList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hoursList div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: var(--text-sm);
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(110, 55, 27, 0.18);
}

.backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 998;

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: var(--btn-orange);
  color: var(--btn-orange-text);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 18px rgba(110, 55, 27, 0.28);

  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: all 0.3s ease;
}

.backToTop::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 4px solid var(--btn-orange-text);
  border-left: 4px solid var(--btn-orange-text);
  border-radius: 3px;
  transform: rotate(45deg) translate(2px, 2px);
}

.backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.backToTop:hover {
  transform: translateY(-5px);
}

.siteFooter {
  background: var(--brown-main);
  padding: 60px 120px 30px;
  color: var(--beige-text);
  margin-top: -1px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.footerCol a,
.footerCol {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--beige-text);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footerCol a:hover {
  color: var(--active-yellow);
}

.footerCol a.active {
  color: var(--active-yellow); 
}

.mobileMenuLinks a.active {
  color: var(--active-yellow);
}

.footerTitle {
  margin-bottom: 16px;
}

.footerAddress {
  display: flex;
  flex-direction: column;
  gap: 20px;

  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.45;

  text-align: right;
  align-items: flex-end;
}

.footerIcons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.footerIcons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
  opacity: 0.95;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.footerIcons img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footerLogoCol {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footerLogo {
  width: 145px;
  height: auto;
  object-fit: contain;
}

.footerBottom {
  margin-top: 50px;
}

.footerLine {
  height: 1px;
  background: var(--beige-text);
  opacity: 0.8;
  margin-bottom: 20px;
}

.footerCopyright {
  font-size: var(--text-sm);
  color: var(--beige-text);
}

@media screen and (max-width: 1100px) {
  :root {
    --text-xs: 13px;
    --text-sm: 15px;
    --text-md: 16px;
    --text-lg: 20px;
    --text-xl: 22px;
    --title-sm: 40px;
    --title-md: 54px;
    --title-lg: 82px;
  }

  .navBar {
    padding: 10px 34px;
  }

  .navLinks {
    gap: 34px;
  }

  .footerGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }

  .footerAddress {
    text-align: left;
    align-items: flex-start;
  }

  .footerIcons {
    justify-content: flex-start;
  }

  .footerLogoCol {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --text-xs: 11px;
    --text-sm: 12px;
    --text-md: 13px;
    --text-lg: 15px;
    --text-xl: 17px;
    --title-sm: 28px;
    --title-md: 34px;
    --title-lg: 50px;
    --radius-main: 24px;
  }

  body {
    background: #ffffff;
  }

  .navBar {
    position: sticky;
    top: 0;
    padding: 22px 28px;
    justify-content: center;
    box-shadow: none;
  }

  .navLogo img {
    width: 105px;
  }

  .navLinks,
  .langDropdown {
    display: none;
  }

  .mobileMenuBtn {
    display: flex;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 0;
    border: none;
    background: transparent;
  }

  .mobileMenuBtn span {
    width: 30px;
    height: 2px;
    background: var(--beige-text);
    display: block;
  }

  .mobileMenu {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: var(--brown-main);
    color: var(--beige-text);

    padding: 78px 32px 40px;

    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .mobileMenu.is-open {
    transform: translateX(0);
  }

  .mobileCloseBtn {
    display: block;
    position: absolute;
    right: 26px;
    top: 20px;

    border: none;
    background: transparent;
    color: var(--beige-text);

    font-size: 60px;
    line-height: 1;
    font-weight: 300;
  }

  .mobileMenuLogo {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
  }

  .mobileMenuLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    margin-bottom: 36px;
  }

  .mobileMenuLinks a {
    color: var(--beige-text);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobileMenuLinks a:hover {
    color: var(--active-yellow);
  }

  .mobileLangBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: transparent;
    border: 2px solid var(--beige-text);
    border-radius: var(--btn-radius);
    color: var(--beige-text);

    padding: 7px 16px;

    font-size: 15px;
    font-weight: 700;
  }

  .mobileLangBtn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .mobileMenuAddress {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
      margin-top: 24px;
    margin-bottom: 24px;
  }

  .mobileMenuIcons {
    display: flex;
    gap: 14px;
  }

  .mobileMenuIcons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .pillButton,
  .viewMenu,
  .menuBtnSmall {
    padding: 10px 22px;
    font-size: 11px;
  }

  .hoursBox {
    padding: 40px 24px 30px;
  }

  .hoursTitle {
    font-size: 32px;
  }

  .hoursList div {
    font-size: 12px;
  }

  .backToTop {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .backToTop::before {
    width: 11px;
    height: 11px;
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .siteFooter {
    padding: 0 26px 26px;
    text-align: center;
  }

  .footerGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footerLogoCol {
    order: 1;
    justify-content: center;
    margin-bottom: 24px;
  }

  .footerLogo {
    width: 126px;
  }

  .footerAddress {
    order: 2;
    text-align: center;
    align-items: center;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .footerIcons {
    justify-content: center;
  }

  .footerIcons img {
    width: 34px;
    height: 34px;
  }

  .footerAbout,
  .footerMenu {
    display: none;
  }

  .footerMainLinks {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footerMainLinks a {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .footerBottom {
    margin-top: 36px;
  }

  .footerLine {
    margin-bottom: 14px;
  }

  .footerCopyright {
    font-size: 9px;
    text-align: center;
  }
}
/* Mobile Footer Links */
.mobileFooterLinks {
  display: none; /* hide on desktop */
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  background: var(--brown-main);
}

.mobileFooterLinks a {
  color: var(--beige-text);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.mobileFooterLinks a.active {
  color: var(--active-yellow);
}

/* Only show on mobile and hide desktop footer columns */
@media screen and (max-width: 600px) {
  .mobileFooterLinks {
    display: flex;
  }

  /* Optional: hide desktop columns if desired */
  .footerGrid > .footerCol {
    display: none;
  }

  .footerLogoCol {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
}
/* Mobile Footer Base */
.mobileFooterContainer {
  display: none; /* hidden on desktop */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  text-align: center;
  background: var(--brown-main);
}

/* Logo */
.mobileFooterLogo img {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}

/* Address */
.mobileFooterAddress {
  color: var(--beige-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* Social icons */
.mobileFooterIcons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.mobileFooterIcons img {
  width: 30px;
  height: 30px;
}

/* Footer links */
.mobileFooterLinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.mobileFooterLinks a {
  font-weight: 700;
  font-size: 14px;
  color: var(--beige-text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobileFooterLinks a:hover {
  color: var(--active-yellow);
}

.mobileFooterLinks a.active {
  color: var(--active-yellow);
}

/* Show only on mobile screens */
@media screen and (max-width: 600px) {
  .mobileFooterContainer {
    display: flex;
  }

  /* Hide desktop columns completely on mobile */
  .footerGrid > .footerCol {
    display: none;
  }

  .footerLogoCol {
    display: none;
  }
}
/* Mobile Hamburger Menu Links */
.mobileMenuLinks a {
  color: var(--beige-text);
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  display: block;
  transition: color 0.3s ease;
}

.mobileMenuLinks a:hover {
  color: var(--active-yellow);
}

.mobileMenuLinks a.active {
  color: var(--active-yellow);
}