/* ==========================================================
   Mountain Health Bar
   Luxury Pool Service Website
   Main Stylesheet
========================================================== */


/* ----------------------------------------------------------
   DESIGN VARIABLES
---------------------------------------------------------- */

:root {
  --color-dark: #101317;
  --color-dark-soft: #171b20;
  --color-dark-card: rgba(255, 255, 255, 0.055);

  --color-light: #f4efe6;
  --color-light-soft: #ebe3d7;
  --color-white: #ffffff;

  --color-text-dark: #18202a;
  --color-text-light: #f8f5ef;
  --color-text-muted: #a9afb6;
  --color-text-beige: #d6cdc0;

  --color-gold: #b79b5b;
  --color-gold-light: #d2bc83;
  --color-gold-dark: #8f7540;

  --color-success: #78927e;
  --color-error: #a45959;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(24, 32, 42, 0.14);
  --border-gold: rgba(183, 155, 91, 0.45);

  --shadow-small:
    0 10px 30px rgba(0, 0, 0, 0.12);

  --shadow-medium:
    0 20px 60px rgba(0, 0, 0, 0.18);

  --shadow-large:
    0 30px 100px rgba(0, 0, 0, 0.28);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;

  --header-height: 92px;

  --transition-fast: 180ms ease;
  --transition-normal: 350ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ----------------------------------------------------------
   RESET
---------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--color-dark);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;

  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  color: var(--color-text-light);
  background: var(--color-dark);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}


/* ----------------------------------------------------------
   ACCESSIBILITY
---------------------------------------------------------- */

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.hidden {
  display: none !important;
}


/* ----------------------------------------------------------
   PAGE BACKGROUND
---------------------------------------------------------- */

.page-background {
  position: fixed;
  inset: 0;
  z-index: -10;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(183, 155, 91, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(255, 255, 255, 0.045),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #0e1115 0%,
      #14181d 45%,
      #0d1014 100%
    );
}


/* ----------------------------------------------------------
   STICKY HEADER
---------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: var(--header-height);

  background:
    linear-gradient(
      to bottom,
      rgba(12, 15, 19, 0.96),
      rgba(12, 15, 19, 0.82)
    );

  border-bottom: 1px solid transparent;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    height var(--transition-normal),
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.site-header.scrolled {
  height: 68px;

  background: rgba(13, 16, 20, 0.93);

  border-bottom-color: rgba(255, 255, 255, 0.08);

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-button {
  width: 122px;
  padding: 0;

  display: flex;
  align-items: center;

  background: transparent;
}

.header-logo {
  width: 100%;
  max-height: 64px;
  object-fit: contain;

  transform-origin: left center;

  transition:
    width var(--transition-normal),
    opacity var(--transition-fast),
    transform var(--transition-normal);
}

.site-header.scrolled .header-logo-button {
  width: 84px;
}

.header-logo-button:hover .header-logo {
  opacity: 0.88;
}


/* ----------------------------------------------------------
   LANGUAGE SWITCHER
---------------------------------------------------------- */

.language-switcher {
  min-width: 112px;
  height: 42px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid var(--border-light);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.language-button {
  padding: 4px 3px;

  color: var(--color-text-muted);
  background: transparent;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;

  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.language-button:hover {
  color: var(--color-white);
}

.language-button.active {
  color: var(--color-gold-light);
}

.language-divider {
  color: rgba(255, 255, 255, 0.24);
  font-size: 12px;
}


/* ----------------------------------------------------------
   HERO SECTION
---------------------------------------------------------- */

.hero-section {
  position: relative;

  min-height: 100svh;
  padding:
    calc(var(--header-height) + 70px)
    20px
    90px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.015),
      transparent 35%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.22),
      transparent 45%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(660px, 100%);
  margin: 0 auto;

  text-align: center;

  animation:
    heroReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(10px);

  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;

  top: 5%;
  left: -280px;

  background:
    radial-gradient(
      circle,
      rgba(183, 155, 91, 0.10),
      transparent 68%
    );
}

.hero-glow-two {
  width: 600px;
  height: 600px;

  right: -360px;
  bottom: -160px;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.055),
      transparent 70%
    );
}


/* ----------------------------------------------------------
   HERO LOGO
---------------------------------------------------------- */

.hero-logo-wrapper {
  width: min(310px, 72vw);
  margin: 0 auto 46px;

  position: relative;
}

.hero-logo-wrapper::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -24px;

  width: 84px;
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to right,
      transparent,
      var(--color-gold),
      transparent
    );
}

.hero-logo {
  width: 100%;

  object-fit: contain;

  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));

  animation:
    logoFloat 5s ease-in-out infinite;
}


/* ----------------------------------------------------------
   HERO TEXT
---------------------------------------------------------- */

.hero-eyebrow {
  margin-bottom: 16px;

  color: var(--color-gold-light);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 18px;

  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(40px, 8vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-text {
  width: min(500px, 100%);
  margin: 0 auto 34px;

  color: var(--color-text-beige);

  font-size: 16px;
  line-height: 1.7;
}


/* ----------------------------------------------------------
   LOCATION CARD
---------------------------------------------------------- */

.location-card {
  width: min(410px, 100%);
  margin: 0 auto 28px;
  padding: 18px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);

  background: rgba(255, 255, 255, 0.035);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.location-label {
  color: var(--color-text-muted);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-value {
  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}


/* ----------------------------------------------------------
   PRIMARY ACTION CARDS
---------------------------------------------------------- */

.primary-actions {
  display: grid;
  gap: 14px;
}

.action-card {
  position: relative;

  width: 100%;
  min-height: 104px;
  padding: 20px 22px;

  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 16px;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);

  color: var(--color-white);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.10);

  text-align: left;

  overflow: hidden;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    background var(--transition-normal),
    box-shadow var(--transition-normal);
}

.action-card::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(255, 255, 255, 0.07) 50%,
      transparent 80%
    );

  transform: translateX(-60%);

  transition:
    transform 650ms ease,
    opacity 650ms ease;

  pointer-events: none;
}

.action-card:hover {
  transform: translateY(-3px);

  border-color: rgba(183, 155, 91, 0.52);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.095),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.19);
}

.action-card:hover::before {
  opacity: 1;
  transform: translateX(60%);
}

.action-card:active {
  transform: translateY(-1px) scale(0.995);
}

.action-card-primary {
  border-color: rgba(183, 155, 91, 0.42);

  background:
    linear-gradient(
      145deg,
      rgba(183, 155, 91, 0.18),
      rgba(183, 155, 91, 0.06)
    );
}

.action-card[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.action-card[disabled]:hover {
  transform: none;
  border-color: var(--border-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.10);
}

.action-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(183, 155, 91, 0.35);
  border-radius: 50%;

  color: var(--color-gold-light);
  background: rgba(183, 155, 91, 0.09);
}

.action-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.action-title {
  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}

.action-description {
  color: var(--color-text-muted);

  font-size: 13px;
  line-height: 1.5;
}

.action-arrow {
  color: var(--color-gold-light);

  font-size: 20px;
  font-weight: 300;

  transition:
    transform var(--transition-normal);
}

.action-card:hover .action-arrow {
  transform: translateX(4px);
}


/* ----------------------------------------------------------
   OPENING STATUS
---------------------------------------------------------- */

.opening-status {
  margin-top: 26px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--color-text-muted);

  font-size: 12px;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--color-gold);

  box-shadow:
    0 0 0 4px rgba(183, 155, 91, 0.10);
}

.opening-status.open .status-dot {
  background: var(--color-success);

  box-shadow:
    0 0 0 4px rgba(120, 146, 126, 0.13);
}

.opening-status.closed .status-dot {
  background: var(--color-error);

  box-shadow:
    0 0 0 4px rgba(164, 89, 89, 0.13);
}


/* ----------------------------------------------------------
   MENU SECTION
---------------------------------------------------------- */

.menu-section {
  position: relative;

  padding: 110px 20px 130px;

  color: var(--color-text-dark);
  background:
    linear-gradient(
      180deg,
      var(--color-light) 0%,
      #f8f5ef 55%,
      #eee6da 100%
    );

  overflow: hidden;
}

.menu-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.35;

  background-image:
    linear-gradient(
      rgba(24, 32, 42, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(24, 32, 42, 0.025) 1px,
      transparent 1px
    );

  background-size: 32px 32px;

  pointer-events: none;
}

.menu-container {
  position: relative;
  z-index: 2;

  width: min(900px, 100%);
  margin: 0 auto;
}


/* ----------------------------------------------------------
   MENU HEADING
---------------------------------------------------------- */

.section-heading {
  width: min(620px, 100%);
  margin: 0 auto 52px;

  text-align: center;
}

.section-eyebrow {
  margin-bottom: 14px;

  color: var(--color-gold-dark);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 15px;

  color: var(--color-text-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(42px, 8vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-description {
  color: rgba(24, 32, 42, 0.68);

  font-size: 15px;
  line-height: 1.7;
}


/* ----------------------------------------------------------
   MENU CATEGORY NAVIGATION
---------------------------------------------------------- */

.menu-navigation {
  position: sticky;
  top: 82px;
  z-index: 50;

  margin-bottom: 52px;
  padding: 12px;

  display: flex;
  gap: 8px;

  overflow-x: auto;

  border: 1px solid rgba(24, 32, 42, 0.10);
  border-radius: 999px;

  background: rgba(248, 245, 239, 0.90);

  box-shadow:
    0 12px 35px rgba(24, 32, 42, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  scrollbar-width: none;
}

.menu-navigation::-webkit-scrollbar {
  display: none;
}

.menu-category-button {
  flex: 0 0 auto;

  padding: 11px 18px;

  border-radius: 999px;

  color: rgba(24, 32, 42, 0.66);
  background: transparent;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.menu-category-button:hover {
  color: var(--color-text-dark);
  background: rgba(24, 32, 42, 0.055);
}

.menu-category-button.active {
  color: var(--color-white);
  background: var(--color-text-dark);

  box-shadow:
    0 8px 20px rgba(24, 32, 42, 0.18);
}


/* ----------------------------------------------------------
   MENU CONTENT
---------------------------------------------------------- */

.menu-content {
  display: grid;
  gap: 54px;
}

.menu-category {
  scroll-margin-top: 165px;
}

.menu-category-header {
  margin-bottom: 24px;
  padding-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border-dark);
}

.menu-category-title {
  margin: 0;

  color: var(--color-text-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(28px, 5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.menu-category-number {
  color: var(--color-gold-dark);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.menu-items {
  display: grid;
  gap: 0;
}


/* ----------------------------------------------------------
   MENU ITEM
---------------------------------------------------------- */

.menu-item {
  position: relative;

  padding: 22px 0;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;

  border-bottom: 1px solid rgba(24, 32, 42, 0.09);

  transition:
    padding var(--transition-normal),
    background var(--transition-normal);
}

.menu-item:first-child {
  padding-top: 0;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item:hover {
  padding-left: 12px;
  padding-right: 12px;

  background: rgba(255, 255, 255, 0.38);
}

.menu-item-main {
  min-width: 0;
}

.menu-item-name {
  margin: 0 0 6px;

  color: var(--color-text-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
}

.menu-item-description {
  margin: 0;

  color: rgba(24, 32, 42, 0.63);

  font-size: 13px;
  line-height: 1.6;
}

.menu-item-volume {
  margin-top: 5px;

  color: rgba(24, 32, 42, 0.52);

  font-size: 12px;
  letter-spacing: 0.04em;
}

.menu-item-price {
  min-width: 46px;
  padding-top: 2px;

  color: var(--color-gold-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;

  text-align: right;
}


/* ----------------------------------------------------------
   MENU FOOTER
---------------------------------------------------------- */

.menu-footer {
  margin-top: 70px;
  padding-top: 30px;

  border-top: 1px solid var(--border-dark);

  text-align: center;
}

.menu-footer p {
  margin-bottom: 10px;

  color: rgba(24, 32, 42, 0.68);

  font-size: 12px;
  line-height: 1.7;
}

.menu-footer .menu-note {
  color: rgba(24, 32, 42, 0.52);
}


/* ----------------------------------------------------------
   MODAL
---------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: grid;
  place-items: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(7, 9, 12, 0.78);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 2;

  width: min(480px, 100%);
  padding: 42px 34px 30px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);

  color: var(--color-text-light);
  background:
    linear-gradient(
      145deg,
      rgba(28, 33, 39, 0.98),
      rgba(15, 18, 22, 0.99)
    );

  box-shadow: var(--shadow-large);

  text-align: center;

  transform: translateY(24px) scale(0.98);

  transition:
    transform var(--transition-normal);
}

.modal.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);

  font-size: 24px;
  font-weight: 300;

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.09);

  transform: rotate(6deg);
}

.modal-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border-gold);
  border-radius: 50%;

  color: var(--color-gold-light);
  background: rgba(183, 155, 91, 0.10);

  font-size: 26px;
}

.modal-eyebrow {
  margin-bottom: 10px;

  color: var(--color-gold-light);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.modal-title {
  margin-bottom: 13px;

  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

.modal-text {
  margin-bottom: 26px;

  color: var(--color-text-beige);

  font-size: 14px;
  line-height: 1.7;
}

.modal-location {
  margin-bottom: 28px;
  padding: 17px 20px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);

  background: rgba(255, 255, 255, 0.04);
}

.modal-location span {
  color: var(--color-text-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-location strong {
  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 17px;
  font-weight: 400;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 12px;
}


/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */

.primary-button,
.secondary-button,
.reminder-button {
  min-height: 52px;
  padding: 14px 20px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;

  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.primary-button {
  color: #17130b;
  background:
    linear-gradient(
      135deg,
      var(--color-gold-light),
      var(--color-gold)
    );

  box-shadow:
    0 10px 25px rgba(183, 155, 91, 0.20);
}

.primary-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 35px rgba(183, 155, 91, 0.28);
}

.secondary-button {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.10);
}

.secondary-button:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);

  transform: translateY(-2px);
}

.reminder-button {
  width: 100%;
  margin-top: 12px;

  color: var(--color-gold-light);
  background: transparent;

  border: 1px solid var(--border-gold);
}

.reminder-button:hover {
  background: rgba(183, 155, 91, 0.09);

  transform: translateY(-2px);
}


/* ----------------------------------------------------------
   SUCCESS OVERLAY
---------------------------------------------------------- */

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;

  padding: 20px;

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;

  background: rgba(7, 9, 12, 0.88);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-card {
  width: min(470px, 100%);
  padding: 46px 34px 32px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);

  background:
    linear-gradient(
      145deg,
      rgba(28, 33, 39, 0.98),
      rgba(14, 17, 21, 0.99)
    );

  box-shadow: var(--shadow-large);

  text-align: center;

  transform: translateY(24px) scale(0.98);

  transition:
    transform var(--transition-normal);
}

.success-overlay.active .success-card {
  transform: translateY(0) scale(1);
}

.success-symbol {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(120, 146, 126, 0.48);
  border-radius: 50%;

  color: #a4b9a7;
  background: rgba(120, 146, 126, 0.10);
}

.success-symbol svg {
  width: 31px;
  height: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-eyebrow {
  margin-bottom: 10px;

  color: var(--color-gold-light);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.success-title {
  margin-bottom: 12px;

  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 42px;
  font-weight: 400;
}

.success-text {
  margin-bottom: 24px;

  color: var(--color-text-beige);

  font-size: 15px;
  line-height: 1.7;
}

.success-location {
  margin-bottom: 26px;
  padding: 17px 20px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);

  background: rgba(255, 255, 255, 0.04);
}

.success-location span {
  color: var(--color-text-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.success-location strong {
  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 17px;
  font-weight: 400;
}

.success-close-button {
  width: 100%;
}


/* ----------------------------------------------------------
   CLOSED PANEL
---------------------------------------------------------- */

.closed-panel {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1200;

  width: min(620px, calc(100% - 32px));

  transform: translateX(-50%);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium);

  background: rgba(18, 22, 27, 0.96);

  box-shadow: var(--shadow-medium);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.closed-panel-content {
  padding: 20px 22px;

  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;

  color: var(--color-text-light);
}

.closed-panel-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(164, 89, 89, 0.42);
  border-radius: 50%;

  color: #cf9b9b;
  background: rgba(164, 89, 89, 0.08);
}

.closed-panel strong {
  display: block;
  margin-bottom: 5px;

  color: var(--color-white);

  font-size: 14px;
  line-height: 1.4;
}

.closed-panel p {
  margin: 2px 0;

  color: var(--color-text-muted);

  font-size: 12px;
  line-height: 1.5;
}


/* ----------------------------------------------------------
   LOADING OVERLAY
---------------------------------------------------------- */

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;

  background: rgba(9, 11, 14, 0.90);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.loading-overlay p {
  margin: 0;

  color: var(--color-text-beige);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loading-spinner {
  width: 44px;
  height: 44px;

  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--color-gold-light);
  border-radius: 50%;

  animation: spin 850ms linear infinite;
}


/* ----------------------------------------------------------
   TOAST
---------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 4000;

  width: max-content;
  max-width: calc(100% - 36px);
  padding: 14px 20px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  color: var(--color-white);
  background: rgba(18, 22, 27, 0.96);

  box-shadow: var(--shadow-medium);

  font-size: 13px;
  line-height: 1.45;
  text-align: center;

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(18px);

  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal),
    transform var(--transition-normal);
}

.toast.show {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

.toast.success {
  border-color: rgba(120, 146, 126, 0.40);
}

.toast.error {
  border-color: rgba(164, 89, 89, 0.45);
}


/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ----------------------------------------------------------
   TABLET
---------------------------------------------------------- */

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    width: min(100% - 30px, 1180px);
  }

  .header-logo-button {
    width: 110px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 54px);
  }

  .menu-section {
    padding-top: 90px;
  }
}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .site-header.scrolled {
    height: 62px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .header-logo-button {
    width: 94px;
  }

  .site-header.scrolled .header-logo-button {
    width: 72px;
  }

  .language-switcher {
    min-width: 100px;
    height: 38px;
    padding: 0 12px;
  }

  .hero-section {
    min-height: auto;

    padding:
      calc(var(--header-height) + 48px)
      16px
      74px;
  }

  .hero-logo-wrapper {
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-text {
    margin-bottom: 26px;

    font-size: 14px;
  }

  .location-card {
    margin-bottom: 20px;
    padding: 15px 16px;
  }

  .location-value {
    font-size: 16px;
  }

  .action-card {
    min-height: 92px;
    padding: 17px 16px;

    grid-template-columns: 42px 1fr 18px;
    gap: 13px;

    border-radius: 17px;
  }

  .action-icon {
    width: 42px;
    height: 42px;
  }

  .action-title {
    font-size: 18px;
  }

  .action-description {
    font-size: 12px;
  }

  .menu-section {
    padding:
      78px
      16px
      96px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .menu-navigation {
    top: 72px;

    width: calc(100% + 16px);
    margin-right: -16px;

    border-radius:
      999px
      0
      0
      999px;
  }

  .menu-category-button {
    padding: 10px 15px;

    font-size: 10px;
  }

  .menu-content {
    gap: 44px;
  }

  .menu-category {
    scroll-margin-top: 145px;
  }

  .menu-category-header {
    margin-bottom: 20px;
  }

  .menu-category-title {
    font-size: 29px;
  }

  .menu-item {
    gap: 14px;
    padding: 19px 0;
  }

  .menu-item:hover {
    padding-left: 6px;
    padding-right: 6px;
  }

  .menu-item-name {
    font-size: 17px;
  }

  .menu-item-description {
    font-size: 12px;
  }

  .menu-item-price {
    min-width: 40px;

    font-size: 18px;
  }

  .modal-dialog,
  .success-card {
    padding:
      42px
      22px
      26px;

    border-radius: 24px;
  }

  .modal-title {
    font-size: 30px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-actions .secondary-button {
    order: 2;
  }

  .modal-actions .primary-button {
    order: 1;
  }

  .closed-panel {
    bottom: 14px;
  }

  .closed-panel-content {
    padding: 17px;

    grid-template-columns: 32px 1fr;
    gap: 13px;
  }
}


/* ----------------------------------------------------------
   SMALL MOBILE DEVICES
---------------------------------------------------------- */

@media (max-width: 390px) {
  .hero-section {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero-logo-wrapper {
    width: 230px;
  }

  .hero-title {
    font-size: 38px;
  }

  .action-card {
    padding-left: 13px;
    padding-right: 13px;

    grid-template-columns: 39px 1fr 16px;
    gap: 11px;
  }

  .action-icon {
    width: 39px;
    height: 39px;
  }

  .action-title {
    font-size: 17px;
  }

  .action-description {
    font-size: 11px;
  }

  .language-switcher {
    min-width: 92px;
  }
}


/* ----------------------------------------------------------
   REDUCED MOTION
---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   FINAL GUEST INFORMATION MODULES
   Announcement, Weather and UV
========================================================== */

.guest-information {
  width: min(610px, 100%);
  margin: 0 auto 34px;

  display: grid;
  gap: 14px;
}

.guest-info-card {
  position: relative;

  padding: 22px 24px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 16px 38px rgba(0, 0, 0, 0.14);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--transition-normal);
}

.guest-info-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.guest-info-eyebrow {
  display: block;
  margin-bottom: 8px;

  color: var(--color-gold-light);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.guest-info-title {
  margin: 0 0 7px;

  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(24px, 5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.guest-info-text {
  margin: 0;

  color: var(--color-text-beige);

  font-size: 14px;
  line-height: 1.65;
}

.announcement-card {
  overflow: hidden;

  border-color: rgba(183, 155, 91, 0.42);

  background:
    linear-gradient(
      145deg,
      rgba(183, 155, 91, 0.19),
      rgba(183, 155, 91, 0.055)
    );
}

.announcement-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      var(--color-gold-light),
      transparent
    );
}

.weather-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  text-align: left;
}

.weather-main {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 17px;
}

.weather-icon {
  flex: 0 0 auto;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(183, 155, 91, 0.34);
  border-radius: 50%;

  color: var(--color-gold-light);
  background: rgba(183, 155, 91, 0.08);

  font-size: 25px;
  line-height: 1;
}

.weather-temperature {
  display: inline-block;
  margin-right: 10px;

  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.weather-condition {
  color: var(--color-text-muted);

  font-size: 13px;
  line-height: 1.45;
}

.weather-uv {
  flex: 0 0 auto;

  min-width: 96px;
  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-small);

  background: rgba(255, 255, 255, 0.035);

  text-align: center;
}

.weather-uv span {
  display: block;
  margin-bottom: 5px;

  color: var(--color-text-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weather-uv strong {
  color: var(--color-white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

body {
  opacity: 0;

  transition:
    opacity 450ms ease;
}

body.app-ready {
  opacity: 1;
}

.menu-category,
.section-heading,
.menu-footer {
  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-category.revealed,
.section-heading.revealed,
.menu-footer.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .guest-information {
    margin-bottom: 28px;
  }

  .guest-info-card {
    padding: 20px;
  }

  .weather-card {
    align-items: stretch;
    flex-direction: column;
  }

  .weather-uv {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;
  }

  .weather-uv span {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .guest-info-card,
  .menu-category,
  .section-heading,
  .menu-footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
