/* Cookie Consent Banner Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #78531D;
  /* Updated to hex equivalent of rgb(120, 83, 29) */
  color: #fff;
  text-align: center;
  padding: 10px;
  z-index: 1000;
  box-sizing: border-box;
}

/* Mobile responsive adjustments for cookie consent */
@media (max-width: 767px) {
  .cookie-consent {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* Add padding to body when cookie consent banner is active */
body.cookie-consent-active {
  padding-bottom: 60px;
}

.cookie-consent button {
  border: none;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
}

body {
  font-family: 'Poppins', sans-serif;
  margin-top: 30px;
  background-color: #F5F0E6;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1em;
}

h2 {
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
}

h3 {
  font-size: 16px;
  line-height: 1em;
  font-weight: 300;
}

p {
  font-size: 16px;
  line-height: 1em;
  font-weight: 200;
}

.small {
  font-size: 10px;
}

header {
  text-align: center;
}

#menu-buttons {
  margin: 20 0 20 0;
  text-align: center;
}

#menu-buttons>a {
  margin: 0px 10px 10px 0;
}

.responsive {
  width: 100%;
  height: auto;
}

.pure-button-success,
.pure-button-selected,
a.pure-button-success,
a.pure-button-selected,
button.pure-button-success {
  background: rgb(28, 184, 65);
  color: #fff;
}

.pure-button-red,
a.pure-button-red {
  background: rgb(255, 0, 0);
  /* Bright red */
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 2px;
}

.pure-button-yellow,
.pure-button-selected,
a.pure-button-yellow,
a.pure-button-selected {
  background: rgb(244, 180, 0);
  color: #fff;
}

/* Loader */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 180px;
  height: 180px;
  margin: 12px;
  border: 12px solid #6f4e37;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #6f4e37 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.lds-ring-small {
  width: 64px;
  height: 64px;
}

.lds-ring-small div {
  width: 50px;
  height: 50px;
  margin: 6px;
  border-width: 6px;
}

/* Localized Image Loader Container */
/* Localized Image Loader Container */
.img-loading-container {
  display: inline-block;
  /* Changed from inline-flex to simple block context for stacking */
  position: relative;
  /* Anchor for absolute spinner */
  background: rgba(245, 240, 230, 0.5);
  min-height: 200px;
  min-width: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin: 10px auto;
  line-height: 0;
  /* Remove funny spacing under images */
}

/* Spinner Positioning */
.img-loading-container .lds-ring,
.img-loading-container .lds-ring-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
  /* Ensure no auto margins interfere */
}

/* Image State Transitions */
.img-hidden {
  opacity: 0;
  transition: opacity 0.5s ease-in;
  display: block;
  /* Ensure it takes up space to set container size */
  width: 100%;
  /* Fill container */
  height: auto;
}

.img-loaded-active {
  opacity: 1;
}

/* Ensure the spinner is hidden when image loads */
.img-loading-container.loaded .lds-ring,
.img-loading-container.loaded .lds-ring-small {
  display: none;
}

/* Clean up container when loaded */
.img-loading-container.loaded {
  background: transparent;
  min-height: 0;
  min-width: 0;
  border-radius: 0;
  /* Let image handle radius if needed, or keep consistent */
}

.loader-body {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  text-align: center;
  justify-content: center;
  align-content: center;
  transition: .5s all;
}

.visible {
  visibility: visible;
}

.hidden {
  visibility: hidden !important;
}

.loader-center {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100vh;
  align-items: center;
  justify-items: center;
  /* adjusted */
}

/* Buttons */

#menu-buttons {
  margin: 20 0 20 0;
}

#menu-buttons>a {
  margin: 0px 10px 10px 0;
}

.pure-button {
  display: inline-block;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box
}

.pure-button::-moz-focus-inner {
  padding: 0;
  border: 0
}

.pure-button-group {
  letter-spacing: -.31em;
  text-rendering: optimizespeed
}

.opera-only :-o-prefocus,
.pure-button-group {
  word-spacing: -0.43em
}

.pure-button-group .pure-button {
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto
}

.pure-button {
  font-family: inherit;
  font-size: 100%;
  padding: .5em 1em;
  color: rgba(0, 0, 0, .8);
  border: none transparent;
  background-color: #e6e6e6;
  text-decoration: none;
  border-radius: 2px
}

.pure-button-hover,
.pure-button:focus,
.pure-button:hover {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1))
}

.pure-button:focus {
  outline: 0
}

.pure-button-active,
.pure-button:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset, 0 0 6px rgba(0, 0, 0, .2) inset;
  border-color: #000
}

.pure-button-disabled,
.pure-button-disabled:active,
.pure-button-disabled:focus,
.pure-button-disabled:hover,
.pure-button[disabled] {
  border: none;
  background-image: none;
  opacity: .4;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none
}

.pure-button-hidden {
  display: none
}

.pure-button-primary,
.pure-button-selected,
a.pure-button-primary,
a.pure-button-selected {
  background-color: #0078e7;
  color: #fff
}

.pure-button-group .pure-button {
  margin: 0;
  border-radius: 0;
  border-right: 1px solid rgba(0, 0, 0, .2)
}

.pure-button-group .pure-button:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px
}

.pure-button-group .pure-button:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-right: none
}

/* Style for desktop */
@media (min-width: 768px) {
  #menu img.responsive {
    width: 800px;
    /* Adjust as needed */
    height: auto;
  }
}

/* Style for mobile */
@media (max-width: 767px) {
  #menu img.responsive {
    width: 100%;
    height: auto;
  }
}

#menu {
  text-align: center;
}

/* Marquee Styles */
.group {
  position: relative;
}

.flex {
  display: flex;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-row {
  flex-direction: row;
}

.shrink-0 {
  flex-shrink: 0;
}

.justify-around {
  justify-content: space-around;
}

.p-2 {
  padding: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  -webkit-animation: marquee var(--duration, 40s) linear infinite;
  animation: marquee var(--duration, 40s) linear infinite;
}

.group:hover .animate-marquee {
  animation-play-state: paused;
}

/* Marquee container */
.marquee-container {
  --duration: 40s;
  --gap: 1rem;
  gap: var(--gap);
}

/* Marquee images */
.marquee-image {
  max-width: 400px;
  height: auto;
}

/* Responsive marquee */
@media (max-width: 767px) {
  .marquee-image {
    max-width: 200px;
  }
}

/* Aurora Text */
@keyframes aurora {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.animate-aurora {
  animation: aurora 60s ease infinite;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aurora-text {
  background-image: linear-gradient(135deg, #3E2723, #8D6E63, #D7CCC8, #FFF8E1, #3E2723);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 20px 0 0 0;
}

/* Responsive aurora text */
@media (max-width: 767px) {
  .aurora-text {
    font-size: 1.5rem;
  }
}

/* New Year Promo Section */
#newyear-promo {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(156, 39, 176, 0.08) 0%, transparent 28%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
  border: 2px solid #ffd700;
  border-radius: 18px;
  padding: 32px;
  margin: 30px 0;
  box-shadow: 0 15px 45px rgba(26, 26, 46, 0.55), inset 0 0 0 1px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

#newyear-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(3px 3px at 15% 25%, #ffd700, transparent),
    radial-gradient(2px 2px at 45% 15%, #ff6b9d, transparent),
    radial-gradient(2.5px 2.5px at 75% 35%, #00d4ff, transparent),
    radial-gradient(2px 2px at 25% 65%, #a855f7, transparent),
    radial-gradient(3px 3px at 85% 75%, #ffd700, transparent),
    radial-gradient(2px 2px at 55% 85%, #ff6b9d, transparent);
  background-size: 180px 180px, 220px 220px, 200px 200px, 240px 240px, 160px 160px, 190px 190px;
  background-repeat: repeat;
  animation: confetti-fall 8s linear infinite;
  opacity: 0.85;
  pointer-events: none;
}

@keyframes confetti-fall {
  to {
    background-position: 60px 360px, -40px 280px, 30px 320px, -50px 300px, 45px 340px, -30px 290px;
  }
}

.newyear-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 960px;
  margin: 0 auto;
}

#newyear-promo .holiday-kicker {
  color: #ffd700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

#newyear-promo h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 215, 0, 0.5);
  margin-bottom: 12px;
}

.holiday-tagline {
  color: #ffd700;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

#newyear-promo img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.25);
  margin: 18px auto 0;
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.promo-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 6px auto 10px;
}

.promo-details .promo-item {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  padding: 12px 20px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.promo-title {
  font-weight: 600;
  font-size: 16px;
}

.holiday-note {
  color: #ffd700;
  font-size: 15px;
  margin-top: 12px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Signup CTA for non-members */
.signup-cta {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px dashed rgba(255, 215, 0, 0.4);
}

.signup-text {
  color: #e0e0e0;
  font-size: 14px;
  margin: 0 0 12px;
}

.btn-signup {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.scroll-text {
  color: #f6d479;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(246, 212, 121, 0.6);
}

.scroll-arrow {
  color: #f6d479;
  font-size: 32px;
  font-weight: bold;
  animation: bounce 2s infinite;
  text-shadow: 0 0 14px rgba(246, 212, 121, 0.8);
  display: inline-block;
}

/* Bounce Animation for Scroll Arrow */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Mobile Responsive for New Year Promo Section */
@media (max-width: 767px) {
  #newyear-promo {
    padding: 22px;
    margin: 20px 10px;
  }

  #newyear-promo h3 {
    font-size: 22px;
  }

  .holiday-tagline {
    font-size: 16px;
  }

  .promo-details {
    margin: 0 0 24px 0;
  }

  .promo-details .promo-item {
    width: 100%;
  }

  .promo-title {
    font-size: 14px;
  }

  .btn-signup {
    font-size: 14px;
    padding: 10px 22px;
  }

  .scroll-arrow {
    font-size: 28px;
  }
}

footer {
  text-align: center;
}

#rest_circ5 {
  display: inline-block;
}

/* Modern mobile-first header styles */
.site-header {
  padding: 12px 16px;
  background: transparent;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 56px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.brand-text {
  line-height: 1;
}

.brand-text {
  line-height: 1;
  text-align: left;
}

.site-title {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 600;
}

.site-subtitle {
  margin: 0;
  font-size: 1.00rem;
  color: #666;
}

.header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  font-size: .80rem;
  min-width: 160px;
}

.address a {
  color: inherit;
  text-decoration: none;
}

.phone {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
}

.btn-order {
  background: #2ecc71;
  color: #fff;
}

.btn-map {
  background: #f1c40f;
  color: #000;
}

.btn-loyal {
  background: #e74c3c;
  color: #fff;
}

.hours-visible {
  font-size: .9rem;
  color: #333;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .site-header-inner {
    align-items: center;
  }

  .header-meta {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}

@media (max-width: 719px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-meta {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .cta-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    flex: 0 0 auto;
  }
}

/* Footer CTA container */
.footer-ctas {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-ctas .cta-buttons {
  justify-content: center;
}

.map-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.map-link:hover,
.map-link:focus {
  text-decoration: underline;
}