/* =====================================================
   GLOBAL RESET & BASE SETTINGS
   ===================================================== */

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --hs-navy: #0b2545;
  --hs-gold: #c9a24b;
  --navbar-height: 90px;
  --searchbox-top: 140px;
  --searchbox-height: 100px;
  --hero-clearance: calc(
    var(--searchbox-top) + var(--searchbox-height) + 100px
  );
}

body {
  font-family: var(--font-body);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  background-color: #0B2545;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0 32px;
  box-sizing: border-box;
}

/* Navbar Logo */
.logo {
  width: 200px;
  height: auto;
}

/* =========================
   Navigation Links
   ========================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a{
    position: relative;
    color: var(--hs-gold);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all .3s ease;
}

/* Hover */

.nav-links a:hover{
    background: rgba(201,162,75,.12);
    color:#fff;
}

/* Active Page */

.nav-links a.active{
    background: rgba(201,162,75,.16);
    color:#fff;
    border:1px solid rgba(201,162,75,.45);
}

/* Sign In Link */
.signin {
  color: var(--hs-gold);
  text-decoration: none;
  padding: 20px;
  margin-left: 12px;
}

/* Navbar Actions
   Contains login/user links, bookings and logout */
.nav-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  text-decoration: none;
  color: var(--hs-gold);
  gap: 12px;
}

.nav-actions a {
  text-decoration: none;
  color: var(--hs-gold);
}

/* Login / User Navigation Groups */
.nav-group {
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("assets/Hero1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding-top: var(--hero-clearance);
}

/* Hero Text Container */
.hero-overlay {
  position: relative;
  z-index: 5;
  max-width: 560px;
  color: #fff;
  text-align: left;
  padding: 20px 56px;
  transform: translateY(-20px);
}

/* Dark Overlay Over Hero Image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Hero Main Heading */
.hero-title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--hs-gold);
  background: rgba(0, 0, 0, 0.38);
  border: 0px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  padding: 10px;
}

/* Hero Description */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #f0ede6;
}

/* Hero CTA Button */
.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--hs-gold);
  color: var(--hs-navy);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease;
}

/* Hero CTA Hover */
.hero-cta:hover {
  background: var(--hs-gold);
}

/* =====================================================
   SEARCH BOX
   ===================================================== */

.search-box {
  position: absolute;
  left: 50%;
  top: var(--searchbox-top);
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
  z-index: 5;
}

.input-group {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 15px;
  height: 60px;
}

.input-group span {
  margin-right: 10px;
  font-size: 20px;
}

.input-group input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-box button {
  height: 60px;
  padding: 0 35px;

  border: none;
  border-radius: 8px;

  background: var(--hs-navy);
  color: white;

  font-size: 18px;
  cursor: pointer;

  transition: 0.3s;
}

.search-box button:hover {
  background: #0b2545e6;
}

.input-group span {
  display: flex;
  align-items: center;
}

.hs-icon {
  width: 20px;
  height: 20px;
  color: var(--hs-gold);
  flex-shrink: 0;
}

/* =====================================================
   EXPLORE SECTION
   Tabs + Feature Cards
   ===================================================== */

.explore {
  padding: 100px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Explore Tabs ---------- */

.explore-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #e5e2da;
  margin-bottom: 40px;
}

.tab {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: #6b6b6b;
  padding: 0 0 16px;
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: var(--hs-navy);
  font-weight: 600;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hs-navy);
}

/* ---------- Feature Cards ---------- */

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  animation: fadeIn 0.5s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.85) 0%,
    rgba(11, 37, 69, 0.1) 55%
  );
}

.feature-card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-gold);

  background: rgba(11, 37, 69, 0.75);   /* Dark navy */
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;

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

  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 90%;
}

.feature-card p {
  font-size: 15px;
  color: #ece9e2;
  max-width: 90%;
  line-height: 1.5;
}

.feature-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ---------- Feature Card Animation ---------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Highlights Section
========================= */

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 100px;
}

.highlight-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 360px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.25);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.88) 0%,
    rgba(11, 37, 69, 0.15) 60%
  );
}

.highlight-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.highlight-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.highlight-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  max-width: 90%;
}

.highlight-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.highlight-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.highlight-link:hover span {
  transform: translateX(4px);
}

/* =========================
   Offers Slider
========================= */

.offers {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 100px;
}

.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.offers-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--hs-navy);
  margin-bottom: 10px;
}

.offers-header p {
  font-size: 15px;
  color: #6b6b6b;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-navy);
  text-decoration: none;
  white-space: nowrap;
}

.view-more span {
  transition: transform 0.2s ease;
}

.view-more:hover span {
  transform: translateX(4px);
}

.offers-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.offers-track-wrap {
  overflow: hidden;
  width: 100%;
}

.offers-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.offer-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3.15);
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.15);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.85) 0%,
    rgba(11, 37, 69, 0) 55%
  );
}

.offer-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px;
}

.offer-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  max-width: 80%;
  line-height: 1.3;
}

.offer-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.25);
  font-size: 18px;
  color: var(--hs-navy);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

.slider-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.offers-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.offers-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d5cb;
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.offers-dots .dot.active {
  background: var(--hs-navy);
  transform: scale(1.2);
}

/* =========================
   Partners Section
========================= */

.partners {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 100px;
  text-align: center;
}

.partners h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--hs-navy);
  margin-bottom: 48px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   Card Container
========================= */

.promo-card {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.189);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* =========================
   Left Content Section
========================= */

.promo-content {
  flex: 1;
  padding: 120px 120px 120px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-content h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--hs-navy);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.promo-content p {
  font-size: 16px;
  color: #555;
  margin: 0 0 32px 0;
  line-height: 1.5;
}


/* =========================
   Buttons
========================= */

.promo-actions {
  display: flex;
  gap: 16px;
}

.promo {
  padding: 0 60px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-dark {
  background-color: var(--hs-navy);
  color: #ffffff;
  border: 2px solid #1a1a1a;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #cccccc;
}

.btn-outline:hover {
  border-color: var(--hs-navy);
}


/* =========================
   Right Features Section
========================= */

.promo-features {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.border-right {
  border-right: 1px solid #eaeaea;
}

.border-bottom {
  border-bottom: 1px solid #eaeaea;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--hs-gold);
  margin-bottom: 12px;
}

.feature-item span {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}


/* =========================
   Info Rows
========================= */

.info-rows {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.1);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.info-card:hover {
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.18);
  transform: translateY(-2px);
}

.info-card-image {
  flex: 0 0 220px;
  height: 150px;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card-text {
  flex: 1;
  padding: 0 32px;
}

.info-card-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--hs-navy);
  margin-bottom: 8px;
}

.info-card-text p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
}

.info-card-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-right: 28px;
  border-radius: 50%;
  background: #f3f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-navy);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.info-card-arrow:hover {
  background: var(--hs-gold);
  color: #fff;
}

/* =========================
   Footer
========================= */

.site-footer {
  background: var(--hs-navy);
  color: #d8dce6;
  padding: 80px 60px 0;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #aeb4c2;
  margin-bottom: 24px;
  max-width: 220px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--hs-gold);
  border-color: var(--hs-gold);
  color: var(--hs-navy);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* =====================================================
   FOOTER LINKS
   ===================================================== */

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aeb4c2;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--hs-gold);
}

.footer-newsletter p {
  font-size: 14px;
  color: #aeb4c2;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #8891a3;
}

.newsletter-form button {
  background: var(--hs-gold);
  border: none;
  width: 44px;
  color: var(--hs-navy);
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #dab661;
}


/* =====================================================
   FOOTER BOTTOM
   ===================================================== */

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: #8891a3;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #8891a3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--hs-gold);
}


/* =====================================================
   LOGIN / REGISTER PAGE
   ===================================================== */

.hidden {
  display: none;
}



#register-panel {
  display: none;
}

.auth-section {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0,0,0,.35),
      rgba(0,0,0,.35)
    ),
    url("auth-background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-container {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,.18);
}

.auth-content {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.08);
}

.auth-content .section-title,
.auth-subtitle {
    color: #fff;
    font-size: 1.2rem;
}

.auth-content .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  color: #fff;
  letter-spacing: 0.3px;
}

.form-group input {
  border:1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background:rgba(35, 35, 35, 0.5);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
  color: #a9a9a9;
}

.form-group input:focus {
  border-color: var(--hs-gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}

.form-group input.invalid {
  border-color: #d64545;
}

.form-error {
  display: none;
  font-size: 12.5px;
  color: #d64545;
}

.form-group input.invalid + .form-error,
.form-error.visible {
  display: block;
}

.auth-btn {
  width: 100%;
  border: none;
  background: var(--hs-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.auth-btn:hover {
  background: #13315c;
  transform: translateY(-1px);
}

.auth-switch {
  margin-top: 20px;
  text-align: center;
  color: #000;
}

.auth-link {
  color: var(--color-black);
  font-weight: 700;
  text-decoration: underline;
}

.auth-link:hover {
  text-decoration: underline;
}

.form-error {
  color: #d9534f;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-success {
  background-color: #e6f6ec;
  color: var(--color-green-dark);
  padding: 12px;
  border-radius: 8px;
  margin-top: 14px;
  display: none;
}


/* ===================
   Auth / Login-Register
   =================== */
/*
.hidden {
  display: none !important;
}

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B2545 0%, #13315c 100%);
  padding: 60px 24px;
}

.auth-container {
  width: 100%;
  max-width: 480px;
}

.auth-content {
  background: #fff;
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.auth-content .section-title {
  text-align: center;
  margin-bottom: 32px;
}

.auth-content .section-title h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--hs-navy);
  margin-bottom: 10px;
}

.auth-subtitle {
  font-size: 15px;
  color: #6b6b6b;
}


/* ===================
   Auth Form
   =================== 

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-navy);
  letter-spacing: 0.3px;
}

.form-group input {
  border: 1px solid #dcd8cf;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--hs-navy);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
  color: #a9a9a9;
}

.form-group input:focus {
  border-color: var(--hs-gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}

.form-group input.invalid {
  border-color: #d64545;
}

.form-error {
  display: none;
  font-size: 12.5px;
  color: #d64545;
}

.form-group input.invalid + .form-error,
.form-error.visible {
  display: block;
}


/* ===================
   Auth Button
   =================== 

.auth-btn {
  width: 100%;
  border: none;
  background: var(--hs-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.auth-btn:hover {
  background: #13315c;
  transform: translateY(-1px);
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 4px;
}

.auth-switch .auth-link {
  color: var(--hs-gold);
  font-weight: 600;
  text-decoration: none;
}

.auth-switch .auth-link:hover {
  text-decoration: underline;
}*/


/* ===================
   Navbar Auth State
   =================== */

.nav-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .auth-link {
  color: var(--hs-gold);
  text-decoration: none;
  font-size: 15px;
}

.welcome-user {
  color: #fff;
  font-size: 15px;
}
.welcome-user i{
  margin-right: 8px;
}
.cart-link {
  position: relative;
  color: var(--hs-gold);
  text-decoration: none;
  font-size: 15px;
}

#cart-count {
  background: var(--hs-gold);
  color: var(--hs-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 4px;
}

#logout-btn {
  color: #d8dce6;
  text-decoration: none;
  font-size: 14px;
}

#logout-btn:hover {
  color: #fff;
}


/* ===================
   Toast Notification
   =================== */

#toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--hs-navy);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ===================
   Rooms Page
   =================== */

.ari-rooms-hero {
  text-align: center;
  padding: 160px 24px 40px;
}

.page-hero-content{
    display: inline-block;
    padding:20px 35px;
    background: rgba(30,42,47,.40);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
}

.ari-rooms-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--hs-navy);
  margin-bottom: 14px;
}

.ari-rooms-hero p {
  font-size: 16px;
  color: #6b6b6b;
}


/* ===================
   Rooms Filter
   =================== */

.ari-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 24px 60px;
}

.ari-filter-btn {
  border: 1.5px solid var(--hs-navy);
  background: #fff;
  color: var(--hs-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ari-filter-btn.active,
.ari-filter-btn:hover {
  background: var(--hs-navy);
  color: #fff;
}


/* ===================
   Rooms Grid
   =================== */

.ari-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 100px;
}


/* ===================
   Room Card
   =================== */

.ari-room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,37,69,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ari-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,37,69,0.18);
}

.ari-room-image {
  position: relative;
  height: 220px;
}

.ari-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ari-room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--hs-gold);
  color: var(--hs-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 999px;
}


/* ===================
   Room Content
   =================== */

.ari-room-content {
  padding: 22px;
}

.ari-room-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--hs-navy);
  margin-bottom: 8px;
}

.ari-room-desc {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
  margin-bottom: 14px;
}

.ari-room-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 16px;
}

.ari-room-price span {
  font-size: 13px;
  font-weight: 400;
  color: #9a9a9a;
}


/* ===================
   Room Date Fields
   =================== */

.ari-room-dates {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.ari-date-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ari-date-field label {
  font-size: 12px;
  color: #6b6b6b;
}

.ari-date-field input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 13px;
}


/* ===================
   Add To Cart Button
   =================== */

.ari-add-to-cart-btn {
  width: 100%;
  border: none;
  background: var(--hs-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ari-add-to-cart-btn:hover {
  background: #13315c;
}

/* =========================
   Page Hero - Interior Pages
   ========================= */

.page-hero {
  position: relative;
  min-height: 75vh;
  padding-top: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,0.4);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hs-gold);
  margin-bottom: 14px;
  padding:8px 18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:30px;
  backdrop-filter:blur(8px);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 20px;
  color: #e8e5dd;
  line-height: 1.5;
}

@media (max-width:768px){
    .page-hero{
        min-height:100vh;
    }
}

/* =========================
   Dining Intro Card
   ========================= */

.ari-dining-intro {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 100px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,37,69,0.12);
}

.ari-dining-image {
  flex: 0 0 45%;
}

.ari-dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 640px;
}

.ari-dining-content {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ari-dining-badge {
  display: inline-block;
  align-self: flex-start;
  border: 2px solid var(--hs-gold);
  color: var(--hs-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.ari-dining-content h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 20px;
}

.ari-dining-content > p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Dining Features */

.ari-dining-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
}

.ari-dining-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
}

.ari-dining-feature i {
  font-size: 2.4rem;
  color: var(--hs-gold);
}

.ari-dining-feature span {
  font-family: var(--font-body);
  font-weight: 670;
  font-size: 16px;
  color: var(--hs-navy);
}

/* Vertical line */
.ari-dining-feature:nth-child(odd){
    border-right:1.5px solid rgba(0,0,0,.08);
}

/* Horizontal line */
.ari-dining-feature:nth-child(-n+2){
    border-bottom:1.5px solid rgba(0,0,0,.08);
}

/* Dining CTA Button */

.ari-dining-cta {
  align-self: center;
  border: 1.5px solid var(--hs-gold);
  color: var(--hs-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.ari-dining-cta:hover {
  background: var(--hs-gold);
  color: #fff;
}


/* Dining Intro - Mobile */

@media (max-width: 900px) {
  .ari-dining-intro {
    flex-direction: column;
    margin: 40px 24px 60px;
  }

  .ari-dining-image img {
    min-height: 280px;
  }

  .ari-dining-content {
    padding: 36px 28px;
  }

  .ari-dining-content h1 {
    font-size: 30px;
  }

  .ari-dining-cta {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   Responsive CTA
   ========================= */

@media (max-width: 768px) {

  .ari-dining-cta {
    font-size: 14px;
    padding: 16px 34px;
  }

}

@media (max-width: 480px) {

  .ari-dining-cta {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 280px;

    margin: 0 auto;

    font-size: 14px;
    padding: 15px 24px;
  }

}

/* =========================
   Restaurants Section
   ========================= */

.ari-restaurants {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 60px;
    background: #f8fafc;
}

.ari-restaurants-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.ari-restaurants-header .ari-dining-badge {
  margin-bottom: 20px;
}

.ari-restaurants-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--hs-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ari-restaurants-header p {
  font-size: 17px;
  color: #6b6b6b;
  line-height: 1.6;
}


/* Restaurant Cards */

.ari-restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.ari-restaurant-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ari-restaurant-card:hover {
  transform: translateY(-10px);
  box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.ari-restaurant-image {
  height: 320px;
}

.ari-restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ari-restaurant-content {
  padding: 30px;
}

.ari-restaurant-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--hs-navy);
  margin-bottom: 15px;
}

.ari-restaurant-content > p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 25px;
}


/* Restaurant Tags */

.ari-restaurant-tags{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:30px;
}

.ari-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#f7f7f7;
    padding:10px 16px;
    border-radius:50px;
    width:fit-content;
    font-size:14.5px;
}

.ari-tag i {
  color: var(--hs-gold);
  font-size: 16px;
}


/* Restaurant Read More */

.ari-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hs-gold);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.ari-read-more span {
  transition: transform 0.2s ease;
}

.ari-read-more{
    transition:.3s ease;
}

.ari-read-more:hover{
    gap:14px;
}


/* Restaurants - Mobile */

@media (max-width: 900px) {
  .ari-restaurant-grid {
    grid-template-columns: 1fr;
  }

  .ari-restaurants {
    padding: 20px 24px 60px;
  }

  .ari-restaurants-header h2 {
    font-size: 28px;
  }
}

/*=====================================================
                SIGNATURE DISHES
=====================================================*/
.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.signature-dishes{
    padding:70px 0;
}

.section-tag{
  display: inline-block;
  align-self: flex-start;
  border: 2px solid var(--hs-gold);
  color: var(--hs-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-header h2{
    font-size:2.7rem;
    margin:15px 0 20px;
}

.section-header p{
    color:#666;
    line-height:1.8;
}

.dish-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.dish-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.dish-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.dish-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.dish-content{
    padding:28px;
}

.dish-category{
    display:inline-block;
    color:var(--hs-gold);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.dish-content h3{
    margin-bottom:18px;
    color:var(--hs-navy);
    font-size:1.45rem;
}

.dish-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

.dish-divider{
    width:55px;
    height:2px;
    background:var(--hs-gold);
    border-radius:20px;
    margin-bottom:22px;
}

.price-label{
    display:block;
    color:#999;
    font-size:.85rem;
    margin-bottom:5px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dish-price{
    font-size:1.6rem;
    font-weight:700;
    color:var(--hs-gold);
}

.menu-btn{
    display:block;
    width:fit-content;
    margin:60px auto 0;
    background:transparent;
    color:var(--hs-navy);
    border:2px solid var(--hs-gold);
    padding:14px 34px;
    border-radius:50px;
    transition:.3s ease;
    text-decoration: none;
}

.menu-btn:hover{
    background:var(--hs-gold);
    color:#fff;
}

/* =====================================================
   SIGNATURE DISHES RESPONSIVE
   ===================================================== */

/* Tablets */

@media (max-width: 992px) {

    .signature-dishes{
        padding: 60px 0;
    }

    .section-header{
        margin: 0 auto 55px;
        padding: 0 20px;
    }

    .section-header h2{
        font-size: 2.2rem;
    }

    .section-header p{
        font-size: 15px;
    }

    .dish-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 28px;
    }

    .dish-card img{
        height: 260px;
    }

    .dish-content{
        padding: 24px;
    }

}


/* Mobile */

@media (max-width: 768px) {

    .container{
        width: 92%;
    }

    .section-tag{
        font-size: 13px;
        padding: 14px 16px;
        letter-spacing: 1.5px;
    }

    .section-header{
        margin-bottom: 45px;
    }

    .section-header h2{
        font-size: 1.9rem;
    }

    .section-header p{
        font-size: 14px;
        line-height: 1.7;
    }

    .dish-grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dish-card img{
        height: 240px;
    }

    .dish-content{
        padding: 22px;
    }

    .dish-content h3{
        font-size: 1.3rem;
    }

    .dish-content p{
        font-size: 14px;
        margin-bottom: 24px;
    }

    .dish-price{
        font-size: 1.4rem;
    }

    .menu-btn{
        margin-top: 45px;
        padding: 13px 28px;
        font-size: 14px;
    }

}


/* Small Phones */

@media (max-width: 480px){

    .signature-dishes{
        padding: 50px 0;
    }

    .section-header h2{
        font-size: 1.7rem;
    }

    .dish-card{
        border-radius: 18px;
    }

    .dish-card img{
        height: 220px;
    }

    .dish-content{
        padding: 20px;
    }

}

/* =========================
   Chefs Section
   ========================= */

.ari-chefs {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 60px 110px;
  background: #f8fafc;;
}

.ari-chefs-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.ari-chefs-header .ari-dining-badge {
  margin-bottom: 20px;
}

.ari-chefs-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 16px;
}

.ari-chefs-header p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}

.ari-chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.ari-chef-card {
  text-align: center;
}

.ari-chef-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.12);
}

.ari-chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.ari-chef-card:hover .ari-chef-image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.ari-chef-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--hs-navy);
  margin-bottom: 4px;
}

.ari-chef-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--hs-gold);
  text-transform: uppercase;
}

/*=====================================================
                EXECUTIVE CHEF
=====================================================*/

.executive-chef{
    padding:160px 30px 0 0;
    background:#faf8f4;
}

.chef-card{
    display:grid;
    grid-template-columns:420px 1fr;
    align-items:center;
    gap:70px;
}

.chef-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.chef-content h2{
    font-size:2.6rem;
    margin:18px 0 35px;
}

.chef-content blockquote{
    font-size:1.25rem;
    line-height:2;
    color:#555;
    font-style:italic;
    margin-bottom:45px;
    position:relative;
    padding-left:35px;
}

.chef-content blockquote::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:85%;
    background:var(--hs-gold);
    border-radius:20px;
}

.chef-details h4{
    font-size:1.4rem;
    margin-bottom:8px;
}

.chef-details span{
    color:#888;
    letter-spacing:1px;
}

.chef-role{
    display:block;
    color:#888;
    letter-spacing:1px;
    margin-bottom:18px;
}

.chef-experience{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.chef-experience i{
    color:var(--hs-gold);
    font-size:1.1rem;
}

.chef-experience span{
    color:var(--hs-navy);
    font-weight:600;
}

/* =========================
   Chefs Section - Tablet
   ========================= */

@media (max-width: 900px) {
  .ari-chefs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .ari-chefs {
    padding: 20px 24px 70px;
  }
}

/* =========================
   Chefs Section - Mobile
   ========================= */

@media (max-width: 560px) {
  .ari-chefs-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =====================================================
   EXECUTIVE CHEF RESPONSIVE
   ===================================================== */

/* Tablets */

@media (max-width: 992px) {

    .executive-chef{
        padding:100px 24px 0;
    }

    .chef-card{
        grid-template-columns:1fr;
        gap:50px;
    }

    .chef-image{
        max-width:500px;
        margin:0 auto;
    }

    .chef-image img{
        height:460px;
    }

    .chef-content{
        text-align:center;
    }

    .chef-content h2{
        font-size:2.2rem;
        margin:18px 0 28px;
    }

    .chef-content blockquote{
        padding-left:0;
        font-size:1.15rem;
        margin-bottom:35px;
    }

    .chef-content blockquote::before{
        display:none;
    }

    .chef-details{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

}


/* Mobile */

@media (max-width:768px){

    .executive-chef{
        padding:80px 20px 0;
    }

    .chef-card{
        gap:40px;
    }

    .chef-image img{
        height:380px;
        border-radius:20px;
    }

    .chef-content h2{
        font-size:1.9rem;
    }

    .chef-content blockquote{
        font-size:1rem;
        line-height:1.9;
    }

    .chef-details h4{
        font-size:1.25rem;
    }

    .chef-role,
    .chef-details span{
        font-size:14px;
    }

    .chef-experience{
        padding:10px 18px;
    }

    .chef-experience span{
        font-size:14px;
    }

        .chef-card{
        grid-template-columns: 1fr;
    }

    .chef-content{
        order: 1;
    }

    .chef-image{
        order: 2;
    }

}


/* Small Phones */

@media (max-width:480px){

    .executive-chef{
        padding:70px 16px 0;
    }

    .chef-image img{
        height:300px;
    }

    .chef-content h2{
        font-size:1.7rem;
    }

    .chef-content blockquote{
        font-size:.95rem;
        line-height:1.8;
    }

    .chef-details h4{
        font-size:1.15rem;
    }

    .chef-experience{
        width:100%;
        justify-content:center;
    }
    .chef-card{
        grid-template-columns: 1fr;
    }

    .chef-content{
        order: 1;
    }

    .chef-image{
        order: 2;
    }
}

/* =========================
   Opening Hours
   ========================= */

.ari-hours {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}

.ari-hours-header {
  text-align: center;
  margin-bottom: 48px;
}

.ari-hours-header .ari-dining-badge {
  margin-bottom: 20px;
}

.ari-hours-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 16px;
}

.ari-hours-header p {
  font-size: 15px;
  color: #6b6b6b;
}

.ari-hours-card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 0 35px rgba(212,175,55,.28),
    0 18px 45px rgba(0,0,0,.10);
  padding: 8px 44px;
}

.ari-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid #eee;
}

.ari-hours-row:last-child {
  border-bottom: none;
}

.ari-hours-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ari-hours-label i {
  font-size: 18px;
  color: var(--hs-gold);
  width: 20px;
  text-align: center;
}

.ari-hours-label span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--hs-navy);
}

.ari-hours-time {
  font-family: var(--font-body);
  font-size: 15px;
  color: #6b6b6b;
}


/* =========================
   Opening Hours - Mobile
   ========================= */

@media (max-width: 600px) {
  .ari-hours-card {
    padding: 6px 24px;
  }

  .ari-hours-row {
    padding: 20px 0;
  }

  .ari-hours-label span {
    font-size: 16px;
  }

  .ari-hours-time {
    font-size: 13px;
  }

  .ari-hours-header h2 {
    font-size: 28px;
  }
}


/* =========================
   Reserve a Table
   ========================= */

.ari-reserve {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/Hero-4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}


/* =========================
   Reservation Background Overlay
   ========================= */

.ari-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.55);
}


/* =========================
   Reservation Card
   ========================= */

.ari-reserve-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 56px 50px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.ari-reserve-card .ari-dining-badge {
  color: var(--hs-gold);
  border-color: var(--hs-gold);
  margin-bottom: 24px;
}

.ari-reserve-card h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.ari-reserve-card > p {
  font-size: 15px;
  color: #e4e1d8;
  line-height: 1.6;
  margin-bottom: 36px;
}


/* =========================
   Reservation Form
   ========================= */

.ari-reserve-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ari-reserve-row {
  display: flex;
  gap: 16px;
}

.ari-reserve-row-single {
  justify-content: center;
}

.ari-reserve-row input,
.ari-reserve-row select {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ari-reserve-row-single input {
  max-width: 320px;
}

.ari-reserve-row input::placeholder {
  color: #d8d5cc;
}

.ari-reserve-row input:focus,
.ari-reserve-row select:focus {
  border-color: var(--hs-gold);
  background: rgba(255, 255, 255, 0.18);
}

.ari-reserve-row select option {
  color: #0B2545;
}

.ari-reserve-row input[type="date"]::-webkit-calendar-picker-indicator,
.ari-reserve-row input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* =========================
   Reservation Button
   ========================= */

.ari-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  margin-top: 10px;
  border: none;
  background: var(--hs-gold);
  color: var(--hs-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ari-reserve-btn:hover {
  background: #dab661;
  transform: translateY(-1px);
}

/* =====================================================
   Wellness Hero
   ===================================================== */

.wellness-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("wellness-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wellness-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.45);
}

.wellness-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

/* Wellness Hero Text Box */
.wellness-hero-content {
  max-width: 720px;
  padding: 42px 56px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
}

.wellness-hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hs-gold);
  margin-bottom: 18px;
}

.wellness-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.wellness-hero-content p {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #eee;
}

/* Smaller screens */
@media (max-width: 700px) {
  .wellness-hero {
    min-height: 75vh;
  }

  .wellness-hero-content {
    padding: 32px 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .wellness-hero-content h1 {
    font-size: 40px;
  }

  .wellness-hero-content p {
    font-size: 15px;
  }
}

/* =====================================================
   WELLNESS PHILOSOPHY
   ===================================================== */

.wellness-philosophy {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  background:#f8fafc;
}

/* =========================
   Philosophy Images
   ========================= */

.wellness-philosophy-images {
  position: relative;
  min-height: 550px;
}

.wellness-image {
  position: absolute;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(11, 37, 69, 0.15);
}

.wellness-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top image */

.wellness-image-top {
  width: 78%;
  height: 350px;
  top: 0;
  left: 0;
}

/* Lower image */

.wellness-image-bottom {
  width: 68%;
  height: 300px;
  right: -30px;
  bottom: 0px;
  border: 4px solid #fff;
}

/* =========================
   Philosophy Content
   ========================= */

.wellness-philosophy-content {
  max-width: 480px;
  padding: 20px 10px;
}

.wellness-eyebrow {
  display: inline-block;
  color: var(--hs-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 15px;
  border: 2px solid var(--hs-gold);
  border-radius: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wellness-philosophy-content h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--hs-navy);
  line-height: 1.15;
  margin-bottom: 20x;
}

/* Small luxury divider */
.wellness-philosophy-content h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  background: var(--hs-gold);
  margin-top: 18px;
  margin-bottom: 22px;
}

.wellness-philosophy-content p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 450px;
}

/* First paragraph gets slightly more emphasis */
.wellness-philosophy-content p:first-of-type {
  font-size: 17px;
  color: var(--hs-navy);
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   Wellness Values
   ========================= */

.wellness-values {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 190px;
  margin-top: 40px;
}

/* Subtle connecting lines */

.wellness-values::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: 1px;
  height: 72px;
  background: #ddd8cc;
}

.wellness-values::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 12%;
  width: 76%;
  height: 1px;
  background: #ddd8cc;
}


/* =========================
   Individual Values
   ========================= */

.wellness-value {
  position: absolute;
  z-index: 2;
  width: 110px;
  text-align: center;
}

.wellness-value i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border: 1px solid #e1d8c4;
  border-radius: 50%;
  background: #fff;
  color: var(--hs-gold);
  font-size: 18px;
}

.wellness-value span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hs-navy);
}

/* Top icon */
.wellness-value-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Bottom left */
.wellness-value-left {
  top: 120px;
  left: 4%;
}

/* Bottom right */
.wellness-value-right {
  top: 120px;
  right: 4%;
}
/* =========================
   Responsive Design
   ========================= */

@media (max-width: 900px) {

  .wellness-philosophy {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 90px 24px;
  }

  .wellness-philosophy-images {
    min-height: 520px;
  }

  .wellness-philosophy-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 600px) {

  .wellness-philosophy {
    padding: 70px 20px;
    overflow: hidden;
  }

  .wellness-philosophy-images {
    min-height: 430px;
    width: 100%;
    overflow: hidden;
  }

  .wellness-image-top {
    width: 78%;
    height: 260px;
  }

  .wellness-image-bottom {
    width: 68%;
    height: 230px;
    right: 0;
    max-width: 68%;
  }

  .wellness-philosophy-content h2 {
    font-size: 32px;
  }
}

/* =====================================================
   WELLNESS EXPERIENCES
   ===================================================== */

.wellness-experiences {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 110px;
}


/* =========================
   Experiences Header
   ========================= */

.wellness-experiences-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.wellness-experiences-header .wellness-eyebrow {
  margin-bottom: 18px;
}

.wellness-experiences-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--hs-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.wellness-experiences-header p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}


/* =========================
   Experiences Grid
   ========================= */

.wellness-experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* =========================
   Experience Card
   ========================= */

.wellness-experience-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wellness-experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.16);
}


/* =========================
   Experience Image
   ========================= */

.wellness-experience-image {
  height: 230px;
  overflow: hidden;
}

.wellness-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.wellness-experience-card:hover .wellness-experience-image img {
  transform: scale(1.05);
}


/* =========================
   Experience Content
   ========================= */

.wellness-experience-content {
  padding: 24px;
}

.wellness-experience-number {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--hs-gold);
  margin-bottom: 10px;
}

.wellness-experience-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 14px;
}

/* Subtle divider */

.wellness-experience-content h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: var(--hs-gold);
  margin-top: 14px;
  opacity: 0.7;
}

.wellness-experience-content p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-top: 16px;
}

/* =========================
   Responsive Design
   ========================= */

@media (max-width: 1100px) {

  .wellness-experiences {
    padding: 40px 40px 90px;
  }

  .wellness-experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {

  .wellness-experiences {
    padding: 30px 24px 70px;
  }

  .wellness-experiences-header h2 {
    font-size: 28px;
  }

  .wellness-experiences-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wellness-experience-image {
    height: 240px;
  }
}

/* =====================================================
   WELLNESS JOURNEY
   ===================================================== */

.wellness-journey {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
  background:#f8fafc;
}


/* =========================
   Journey Header
   ========================= */

.wellness-journey-header {
  max-width: 620px;
  margin: 0 auto 70px;
  text-align: center;
}

.wellness-journey-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 16px;
}

.wellness-journey-header p {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.7;
}


/* =========================
   Journey Steps
   ========================= */

.wellness-journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}


/* Connecting line */

.wellness-journey-line::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: #dcd8cf;
}


/* =========================
   Individual Step
   ========================= */

.wellness-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}


/* Tiny decorative circle on the connecting line */

.wellness-step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 11px;
  height: 12px;
  background: var(--hs-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
}


.wellness-step-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--hs-gold);
  margin-bottom: 14px;
}


/* =========================
   Large Step Icon Circle
   ========================= */

.wellness-step-icon {
  width: 50px;
  height: 50px;
  margin: 30px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--hs-gold);
  border-radius: 50%;
  color: var(--hs-gold);
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* =========================
   Step Icon Hover Effect
   ========================= */

.wellness-step-icon {
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}


/* Circle Hover */

.wellness-step:hover .wellness-step-icon {
  transform: translateY(-6px);
  background: var(--hs-gold);
  color: #fff;
  box-shadow: 0 10px 25px rgba(194, 160, 80, 0.25);
}


/* Icon Hover */

.wellness-step-icon i {
  transition: transform 0.3s ease;
}

.wellness-step:hover .wellness-step-icon i {
  transform: scale(1.15);
}

.wellness-step h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 10px;
}

.wellness-step p {
  max-width: 230px;
  margin: 0 auto;
  font-size: 13.5px;
  color: #777;
  line-height: 1.7;
}


/* =========================
   Responsive Design
   ========================= */

@media (max-width: 900px) {

  .wellness-journey {
    padding: 80px 24px;
  }

  .wellness-journey-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }

  .wellness-journey-line::before {
    display: none;
  }

  .wellness-step::before {
    display: none;
  }
}

@media (max-width: 560px) {

  .wellness-journey {
    padding: 70px 20px;
  }

  .wellness-journey-header {
    margin-bottom: 50px;
  }

  .wellness-journey-header h2 {
    font-size: 32px;
  }

  .wellness-journey-line {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}



/* =====================================================
   WELLNESS SPACES
   ===================================================== */

.wellness-spaces {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
}


/* =========================
   Spaces Header
   ========================= */

.wellness-spaces-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.wellness-spaces-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 12px;
}

.wellness-spaces-header p {
  max-width: 520px;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.7;
}

.wellness-spaces-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hs-navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.wellness-spaces-view-more span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.wellness-spaces-view-more:hover span {
  transform: translateX(5px);
}


/* =========================
   Carousel Wrapper
   ========================= */

.wellness-spaces-carousel-wrapper {
  position: relative;
}


/* =========================
   Horizontal Carousel
   ========================= */

.wellness-spaces-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wellness-spaces-carousel::-webkit-scrollbar {
  display: none;
}


/* =========================
   Wellness Space Card
   ========================= */

.wellness-space-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  height: 440px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #ddd;
  cursor: pointer;
}

.wellness-space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}


/* =========================
   Dark Image Overlay
   ========================= */

.wellness-space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.85),
    rgba(11, 37, 69, 0.15) 55%,
    transparent 75%
  );
}


/* =========================
   Card Content
   ========================= */

.wellness-space-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: #fff;
}

.wellness-space-content h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wellness-space-content p {
  max-width: 300px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #e8e8e8;
}


/* =========================
   Carousel Navigation
   ========================= */

.wellness-spaces-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 46px;
  height: 46px;

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

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);
  color: var(--hs-navy);

  box-shadow: 0 8px 25px rgba(11, 37, 69, 0.18);

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.wellness-spaces-prev {
  left: -23px;
}

.wellness-spaces-next {
  right: -23px;
}

.wellness-spaces-nav:hover {
  background: var(--hs-gold);
  color: var(--hs-navy);
  transform: translateY(-50%) scale(1.06);
}


/* =========================
   Pagination
   ========================= */

.wellness-spaces-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
}

.wellness-spaces-pagination span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5d1c8;
  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.wellness-spaces-pagination span.active {
  width: 22px;
  border-radius: 999px;
  background: var(--hs-gold);
}


/* =========================
   Card Hover
   ========================= */

.wellness-space-card:hover img {
  transform: scale(1.05);
}


/* =========================
   Responsive Design
   ========================= */

@media (max-width: 900px) {

  .wellness-spaces {
    padding: 80px 24px;
  }

  .wellness-spaces-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .wellness-space-card {
    flex: 0 0 calc((100% - 20px) / 2);
    height: 400px;
  }

  .wellness-spaces-prev {
    left: -12px;
  }

  .wellness-spaces-next {
    right: -12px;
  }

}


@media (max-width: 560px) {

  .wellness-spaces {
    padding: 70px 20px;
  }

  .wellness-spaces-header h2 {
    font-size: 32px;
  }

  .wellness-spaces-view-more {
    display: none;
  }

  .wellness-space-card {
    flex: 0 0 85%;
    height: 420px;
  }

  .wellness-space-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .wellness-spaces-nav {
    width: 40px;
    height: 40px;
  }

  .wellness-spaces-prev {
    left: -8px;
  }

  .wellness-spaces-next {
    right: -8px;
  }

}

/* =====================================================
   WELLNESS CTA
   ===================================================== */

.wellness-cta {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;

  background-image: url("assets/wellness-cta.jpg");
  background-size: cover;
  background-position: center;
}


/* =========================
   Dark Image Overlay
   ========================= */

.wellness-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.68);
}


/* =========================
   CTA Content
   ========================= */

.wellness-cta-content {
  position: relative;
  z-index: 1;

  max-width: 700px;
  margin: 0 auto;

  text-align: center;
}


.wellness-cta-content .wellness-eyebrow {
  color: var(--hs-gold);
  margin-bottom: 20px;
}


.wellness-cta-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}


.wellness-cta-content p {
  max-width: 520px;
  margin: 0 auto 34px;

  font-size: 15px;
  line-height: 1.7;
  color: #e4e1d8;
}


/* =========================
   CTA Button
   ========================= */

.wellness-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: var(--hs-gold);
  color: var(--hs-navy);

  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;

  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}


.wellness-cta-btn i {
  transition: transform 0.2s ease;
}


.wellness-cta-btn:hover {
  background: #dab661;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(194, 160, 80, 0.25);
}


.wellness-cta-btn:hover i {
  transform: translateX(4px);
}


/* =========================
   Responsive Design
   ========================= */

@media (max-width: 700px) {

  .wellness-cta {
    min-height: 460px;
    padding: 80px 20px;
    background-position: center;
  }

  .wellness-cta-content h2 {
    font-size: 36px;
  }

  .wellness-cta-content p {
    font-size: 14px;
  }

  .wellness-cta-btn {
    width: 100%;
    max-width: 200px;
  }

}
/* =========================
   Gallery Page
   ========================= */
   /* Gallery */

   /* Gallery Lightbox */
.ari-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11,37,69,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ari-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

body.ari-lightbox-open {
  overflow: hidden;
}

.ari-lightbox-img {
  max-width: 85vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.ari-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ari-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.ari-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ari-lightbox-arrow:hover {
  background: rgba(255,255,255,0.2);
}

.ari-lightbox-prev { left: 24px; }
.ari-lightbox-next { right: 24px; }

.ari-lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #d8dce6;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 700px) {
  .ari-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .ari-lightbox-prev { left: 12px; }
  .ari-lightbox-next { right: 12px; }

  .ari-lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .ari-lightbox-img {
    max-width: 92vw;
    max-height: 78vh;
  }
}
.ari-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 100px;
}

.ari-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ari-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(11,37,69,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ari-gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,37,69,0.18);
}

@media (max-width: 900px) {
  .ari-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ari-gallery {
    padding: 40px 24px 60px;
  }
}

@media (max-width: 560px) {
  .ari-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   About Page
   ========================= */
/* About — Our Story */
.ari-about-story {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 60px auto 100px;
  padding: 30px 60px;
}

.ari-about-image {
  flex: 0 0 45%;
}

.ari-about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.ari-about-content {
  flex: 1;
}

.ari-about-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--hs-navy);
  line-height: 1.25;
  margin: 20px 0 24px;
}

.ari-about-content > p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 32px;
}

.ari-about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ari-about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--hs-navy);
  font-size: 15px;
}

.ari-about-check-item i {
  color: var(--hs-gold);
  font-size: 17px;
}

/* About — Our Impact */
.ari-about-impact {
  background: #f7f5ef;
  padding: 90px 24px;
}

.ari-about-impact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ari-about-impact-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--hs-navy);
  margin: 20px 0 16px;
}

.ari-about-impact-header p {
  font-size: 15px;
  color: #6b6b6b;
}

.ari-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.ari-impact-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11,37,69,0.08);
}

.ari-impact-card i {
  font-size: 30px;
  color: var(--hs-gold);
  margin-bottom: 18px;
  display: block;
}

.ari-impact-number {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 8px;
}

.ari-impact-label {
  font-size: 14px;
  color: #6b6b6b;
}

/* About — Our Values */
.ari-about-values {
  padding: 90px 24px 110px;
  max-width: 1300px;
  margin: 0 auto;
}

.ari-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ari-value-card {
  text-align: center;
  padding: 20px;
}

.ari-value-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f0ede2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.ari-value-icon i {
  font-size: 26px;
  color: var(--hs-gold);
}

.ari-value-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--hs-navy);
  margin-bottom: 12px;
}

.ari-value-card p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .ari-about-story {
    flex-direction: column;
    margin: 40px auto 60px;
  }

  .ari-about-image img {
    height: 420px;
    width: 100%;
    object-fit: cover;
  }

  .ari-about-checklist {
    grid-template-columns: 1fr;
  }

  .ari-impact-grid,
  .ari-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ari-about-impact,
  .ari-about-values {
    padding: 60px 24px;
  }

  .ari-about-content h2,
  .ari-about-impact-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .ari-impact-grid,
  .ari-values-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Cart / Bookings Page
   ========================= */

.ari-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1300px;
  margin: 60px auto 100px;
  padding: 0 24px;
  align-items: start;
}

/* =========================
   Cart Items
   ========================= */

.ari-cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ari-cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
}

.ari-cart-item img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}


/* =========================
   Cart Item Information
   ========================= */

.ari-cart-item-info {
  flex: 1;
}

.ari-cart-item-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--hs-navy);
  margin-bottom: 6px;
}

.ari-cart-item-info p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.ari-cart-item-price-night {
  font-size: 13px;
  color: #9a9a9a;
}


/* =========================
   Cart Item Total
   ========================= */

.ari-cart-item-total {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ari-cart-item-price {
  font-size: 18px;
  font-weight: 700;
  color: #2e8b57;
}


/* =========================
   Remove Cart Item Button
   ========================= */

.ari-remove-btn {
  background: none;
  border: none;
  color: #d64545;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.ari-remove-btn:hover {
  text-decoration: underline;
}


/* =========================
   Empty Cart
   ========================= */

.ari-cart-empty-wrap {
  width: 100%;
  background: #fff;
  padding: 80px 24px;
}

.ari-cart-empty {
    max-width: 480px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.ari-cart-empty p {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}

.empty-cart-link{
    display: inline-block;
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;

    word-break: break-word;
    overflow-wrap: break-word;
}

/* =========================
   Cart Sidebar
   ========================= */

.ari-cart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}


/* =========================
   Order Summary
   ========================= */

.ari-order-summary {
  background: var(--hs-navy);
  color: #fff;
  border-radius: 14px;
  padding: 32px;
}

.ari-order-summary h2,
.ari-guest-form h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}

.ari-order-summary h2 {
  color: #fff;
}

.ari-guest-form h2 {
  color: var(--hs-navy);
}

.ari-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #cfd4de;
  padding: 10px 0;
}

.ari-summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 8px;
  padding-top: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hs-gold);
}

.ari-summary-total span {
  color: var(--hs-gold);
}


/* =========================
   Guest Information Form
   ========================= */

.ari-guest-form {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
}

.ari-form-group {
  margin-bottom: 18px;
}

.ari-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 6px;
}

.ari-form-group label span {
  font-weight: 400;
  color: #9a9a9a;
}

.ari-form-group input,
.ari-form-group textarea {
  width: 100%;
  border: 1px solid #dcd8cf;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--hs-navy);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.ari-form-group input:focus,
.ari-form-group textarea:focus {
  border-color: var(--hs-gold);
}


/* =========================
   Checkout Button
   ========================= */

.ari-checkout-btn {
    display: block;
    width: min(320px, 100%);
    margin: 0;
    max-width: 100%;   /* Controls the button width */

    box-sizing: border-box;

    padding: 15px;
    border: none;
    border-radius: 999px;

    background: var(--hs-gold);
    color: var(--hs-navy);

    text-align: center;
    text-decoration: none;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
}

.ari-checkout-btn:hover {
  background: #dab661;
  transform: translateY(-1px);
}

@media (max-width:768px){

    .ari-cart-empty-wrap{
        padding:80px 0px;
    }

    .ari-cart-empty{
        max-width:400px;
        margin:0 auto;
        text-align:center;
    }

    .ari-checkout-btn{
        display:block;
        width:80%;
        box-sizing:border-box;
        margin-top:20px;
    }

}
/* =========================
   Cart Layout - Tablet
   ========================= */

@media (max-width: 900px) {

    .ari-cart-layout{
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }

    .ari-cart-sidebar{
        position: static;
    }

    .ari-cart-item{
        flex-wrap: wrap;
    }

    .ari-cart-item-total{
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}


/* =========================
   Reservation - Mobile
   ========================= */

@media (max-width: 700px) {
  .ari-reserve {
    background-attachment: scroll;
    min-height: auto;
    padding: 60px 20px;
  }

  .ari-reserve-card {
    padding: 40px 28px;
  }

  .ari-reserve-card h2 {
    font-size: 28px;
  }

  .ari-reserve-row {
    flex-direction: column;
  }

  .ari-reserve-row-single input {
    max-width: 100%;
  }
}


/* =========================
   Page Hero - Mobile
   ========================= */

@media (max-width: 700px) {
  .page-hero {
    min-height: 75vh;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}


/* =========================
   Rooms Page - Tablet
   ========================= */

@media (max-width: 900px) {
  .ari-rooms-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }

  .ari-rooms-hero {
    padding: 130px 24px 30px;
  }
}


/* =========================
   Authentication - Mobile
   ========================= */

@media (max-width: 560px) {
  .auth-content {
    padding: 36px 26px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}


/* =========================
   Register Panel
   ========================= */

#register-panel {
  display: none;
}

/* =========================
   Meetings & Events
   ========================= */

.ari-meetings {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.ari-meetings-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.12);
}

.ari-meetings-image {
  flex: 0 0 45%;
}

.ari-meetings-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 460px;
}

.ari-meetings-content {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ari-meetings-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--hs-navy);
  margin-bottom: 20px;
}

.ari-meetings-content p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.ari-meetings-btn {
  align-self: flex-start;
  display: inline-block;
  background: var(--hs-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ari-meetings-btn:hover {
  background: #13315c;
  transform: translateY(-1px);
}


/* =========================
   Meetings & Events - Mobile
   ========================= */

@media (max-width: 800px) {
  .ari-meetings {
    margin: 40px auto 60px;
    padding: 0 20px;
  }

  .ari-meetings-card {
    flex-direction: column;
  }

  .ari-meetings-image img {
    min-height: 260px;
  }

  .ari-meetings-content {
    padding: 36px 28px;
  }

  .ari-meetings-content h2 {
    font-size: 26px;
  }

  .ari-meetings-btn {
    align-self: stretch;
    text-align: center;
  }
}


/* =========================
   Responsive Design
   ========================= */


/* Tablet */

@media (max-width: 1024px) {
  :root {
    --navbar-height: 90px;
    --searchbox-top: 120px;
    --searchbox-height: 260px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: #0B2545;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .signin {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .explore {
    padding: 60px 24px 20px;
  }

  .offer-card {
    flex-basis: calc((100% - 20px) / 1.15);
  }

  .offers {
    padding: 40px 24px 60px;
  }

  .offers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .partners {
    padding: 40px 24px 60px;
  }

  .partners-grid {
    gap: 36px;
  }

  .partner-logo {
    width: 110px;
    height: 56px;
  }

  .promo-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .promo-card {
    flex-direction: column;
  }

  .promo-content {
    padding: 40px 30px 20px 30px;
    text-align: center;
  }

  .promo-content h2 br,
  .promo-content p br {
    display: none;
  }

  .promo-features {
    padding: 20px 30px 40px 30px;
  }

  .site-footer {
    padding: 60px 24px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* =========================
   Hero - Smaller Screens
   ========================= */

@media (max-width: 768px) {
  .hero {
    height: 85vh;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-overlay {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 20px;
    max-width: 95%;
  }

  .hero-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}


/* =========================
   Info Cards - Mobile
   ========================= */

@media (max-width: 700px) {
  .info-rows {
    padding: 20px 24px 60px;
  }

  .info-card {
    flex-wrap: wrap;
  }

  .info-card-image {
    flex: 1 0 100%;
    height: 160px;
  }

  .info-card-text {
    padding: 20px 20px 0;
  }

  .info-card-arrow {
    margin: 16px 20px 20px auto;
  }
}


/* =========================
   Search Box - Mobile
   ========================= */

@media (max-width: 600px) {
  :root {
    --searchbox-height: 280px;
  }

  .search-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    width: 92%;
  }

  .input-group {
    height: 52px;
  }

  .search-box button {
    height: 52px;
    font-size: 16px;
    padding: 0 20px;
  }
}


/* =========================
   Smallest Phones
   Must come last so it overrides
   the broader responsive rules
   ========================= */

@media (max-width: 480px) {
  :root {
    --navbar-height: 80px;
    --searchbox-top: 110px;
  }

  .navbar {
    padding: 0 16px;
  }

  .logo {
    width: 100px;
  }

  .nav-links {
    top: var(--navbar-height);
  }
}

.hidden{
    display: none !important;
}

/* Chrome Autofill Fix */

.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus,
.auth-form input:-webkit-autofill:active{

    -webkit-box-shadow:0 0 0 1000px rgba(91,88,88,0.5) inset !important;

    -webkit-text-fill-color:#fff !important;

    border:1px solid rgba(255,255,255,.25);

    transition:background-color 9999s ease-in-out 0s;
}