/* ===== Shout Karaoke - Custom Styles ===== */

/* Poppins-matched fallback to prevent layout shift during font load */
@font-face {
  font-family: 'Poppins Fallback';
  src: local('Arial');
  size-adjust: 130.45%;
  ascent-override: 80.49%;
  descent-override: 26.83%;
  line-gap-override: 7.67%;
}

/* Poppins Font (local) */
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Poppins-font/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Swell Display Font */
@font-face {
  font-family: 'Swell';
  src: url('../Swell-Display-Font/Fonts/Swell-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: optional;
}

/* Swell-matched fallback to prevent layout shift */
@font-face {
  font-family: 'Swell Fallback';
  src: local('Arial');
  ascent-override: 80%;
  descent-override: 20%;
  line-gap-override: 20%;
}

/* Prevent flash between page navigations */
html {
  background-color: #0a2636;
  overflow-x: hidden;
}

/* Disable all transitions during page load to prevent jerk */
.preload, .preload * {
  transition: none !important;
}

:root {
  --shout-navy: #0a3d5c;
  --shout-teal: #18a8a8;
  --shout-blue: #1890d8;
  --shout-ice: #e8f4f8;
  --shout-ocean: #006090;
  --shout-dark: #0a2636;
  --shout-frost: #f0f8fa;
  --shout-sky: #29b1eb;
}

body {
  font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
  color: #444;
  background-color: #0a2636;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(10,38,54,0.95) 0%, transparent 100%);
  z-index: 999;
  pointer-events: none;
}

/* ===== Swell Font for Headings ===== */
h1, h2, h3, .hero-slogan, .navbar-brand, .footer-brand,
.section-title {
  font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
}


.page-header h1 {
  font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
}

.navbar-brand {
  font-family: 'Swell', 'Swell Fallback', Arial, sans-serif;
}

.footer-brand {
  font-family: 'Swell', 'Swell Fallback', Arial, sans-serif;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
  padding-top: max(20px, env(safe-area-inset-top, 20px));
  transition: all 0.4s ease-in-out;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 38, 54, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.navbar-brand img {
  height: 60px !important;
  width: auto;
  max-height: 64px;
}

.navbar-brand span {
  color: var(--shout-teal);
}

.nav-link {
  font-weight: 600;
  color: #fff !important;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.nav-link:hover,
.nav-link.active {
  color: var(--shout-teal) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--shout-teal);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.btn-order {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 24px !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
}

.btn-order:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.btn-order::after,
.btn-order:hover::after {
  display: none !important;
}

.nav-social a {
  color: #fff;
  font-size: 1.15rem;
  padding: 0 6px;
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--shout-teal); }

/* Navbar toggler — white icon on dark background */
.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(24,168,168,0.4);
}

@media (max-width: 991px) {
  .nav-social {
    padding: 8px 0 20px;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  background: radial-gradient(circle at center, var(--shout-ocean) 0%, var(--shout-navy) 40%, var(--shout-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 0 60px;
}

/* Grainy aurora noise overlay */
.hero-grainy::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphism card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  color: var(--shout-frost);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.btn-teal {
  background: var(--shout-teal);
  color: var(--shout-frost);
  border: 1px solid rgba(24,168,168,0.5);
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px rgba(24,168,168,0.5);
  transition: all 0.3s;
}
.btn-teal:hover {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24,144,216,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section > .container,
.page-header > .container {
  position: relative;
  z-index: 20;
}
.page-header p {
  color: #fff;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(24,168,168,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 50%, rgba(24,144,216,0.2) 0%, transparent 55%);
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0;   }
  50%       { opacity: 1;  }
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(24,168,168,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-slogan {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-slogan span {
  color: var(--shout-teal);
  display: block;
}

.hero-text {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 70px;
  line-height: 1.8;
}

.hero-mascot {
  max-height: 520px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
}

.btn-shout {
  background: var(--shout-navy);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-shout:hover {
  background: var(--shout-navy);
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

.hero-section .btn-shout {
  background: var(--shout-teal);
  color: #fff;
  border: 2px solid var(--shout-teal);
  box-shadow: 0 4px 18px rgba(24,168,168,0.4);
}

.hero-section .btn-shout:hover {
  background: transparent !important;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.about-preview .btn-shout {
  background: var(--shout-teal);
  color: #fff;
  border: 2px solid var(--shout-teal);
  box-shadow: 0 4px 18px rgba(24,168,168,0.3);
}

.about-preview .btn-shout:hover {
  background: transparent;
  color: var(--shout-teal);
  border-color: var(--shout-teal);
  transform: translateY(-2px);
}

/* Ensure mascot doesn't block CTA on small screens */
.hero-mascot-img {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero-mascot-img {
    position: static;
    z-index: auto;
    pointer-events: none;
  }
  .hero-section .btn-shout {
    position: relative;
    z-index: 10;
    display: inline-flex !important;
  }
  .hero-section .d-flex {
    position: relative;
    z-index: 10;
  }
}

.btn-shout-outline {
  background: transparent;
  color: var(--shout-navy);
  border: 2px solid var(--shout-navy);
  border-radius: 30px;
  padding: 12px 34px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-shout-outline:hover {
  background: var(--shout-navy);
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* ===== About Preview ===== */
.about-preview {
  padding: 60px 0;
  background: var(--shout-dark);
}

.about-preview .section-title {
  color: var(--shout-teal);
}

.about-preview .section-text {
  color: #fff;
}

.about-preview .section-text strong {
  color: #fff;
}

.section-badge {
  display: inline-block;
  background: var(--shout-navy);
  color: var(--shout-teal);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.section-badge-culture {
  display: inline-block;
  background: var(--shout-navy);
  color: var(--shout-frost);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--shout-navy);
  margin-bottom: 20px;
  text-align: center;
}

.section-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--shout-teal);
  border-radius: 20px;
  z-index: -1;
}

.stat-card {
  text-align: center;
  padding: 25px 15px;
  border-radius: 16px;
  background: #ffffff;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--shout-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  margin-top: 5px;
}

/* ===== Menu Preview ===== */
.menu-section {
  padding: 60px 0;
  background: var(--shout-dark);
}

.menu-section .section-title {
  color: var(--shout-teal);
}

.menu-section .section-text {
  color: #fff;
}

.menu-card {
  background: var(--shout-navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.menu-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.menu-card-img.milk-tea { background: linear-gradient(135deg, #d8f0f0, #b8e0e8); }
.menu-card-img.fruit-tea { background: linear-gradient(135deg, #c8e8f8, #a8d4f0); }
.menu-card-img.slush { background: linear-gradient(135deg, #d0f0f0, #a8e8e8); }
.menu-card-img.special { background: linear-gradient(135deg, #e0f0f8, #c0e0f0); }

.menu-card-img .menu-icon {
  font-size: 5rem;
  opacity: 0.9;
}

.menu-card-body {
  padding: 25px;
  text-align: center;
}

.menu-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--shout-teal);
  margin-bottom: 8px;
}

.menu-card-text {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 15px;
}

.menu-card-link {
  color: var(--shout-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.menu-card-link:hover {
  gap: 10px;
  color: var(--shout-sky);
}

/* ===== App / Promo Section ===== */

.promo-img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}

/* ===== CTA Cards ===== */

.cta-card.menu-cta {
  background: linear-gradient(135deg, #d8f0f0, #b8e0e8);
}

/* ===== Footer ===== */
.footer {
  background: var(--shout-dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-brand {
  text-transform: uppercase;
  font-size: 2.0rem;
  color: #18a8a8;
  background: #0a2636;
  display: flex;
  align-items: center;
  border-radius: 6px;
  margin-bottom: 15px;
}

.footer-brand span {
  color: #18a8a8;
}

.footer-text {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--shout-teal);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--shout-teal);
  padding-left: 5px;
}

/* Ensure address, hours, and happy hour text in footer use 14.4px */
.footer .footer-links li,
.footer .footer-links li a,
.footer .footer-text {
  font-size: 14.4px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--shout-teal);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
}

/* ===== About Page ===== */
.page-header {
  background: #0a2636;
  padding: 110px 0 50px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.page-header::before {
  display: none;
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(10,38,54,0), var(--shout-dark));
  z-index: 5;
  pointer-events: none;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.page-header p {
  font-size: 1.15rem;
  color: #fff;
  max-width: 600px;
  margin: 15px auto 0;
}

.about-content {
  padding: 50px 0;
  text-align: center;
  background: var(--shout-dark);
}

.about-content .section-title {
  color: var(--shout-teal);
}

.about-story {
  font-size: 1.05rem;
  color: #fff;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.timeline-item {
  padding: 30px;
  border-left: 3px solid var(--shout-teal);
  margin-bottom: 30px;
  position: relative;
  background: transparent;
  border-radius: 0 12px 12px 0;
}

.timeline-item p {
  color: #fff;
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 35px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--shout-teal);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--shout-teal);
}

/* ===== Menu Page ===== */
.menu-content {
  padding: 50px 0;
  background: var(--shout-dark);
}

.menu-content .text-muted {
  color: var(--shout-ice) !important;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--shout-teal);
  width: fit-content;
  text-align: center;
}

/* ===== Locations Page ===== */
.locations-content {
  padding: 50px 0;
  background: var(--shout-dark);
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.location-card h5 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--shout-navy);
}

.location-card p {
  color: #444;
  font-size: 1.05rem;
}

.location-card a[href^="tel:"],
.location-card a[href^="mailto:"] {
  text-decoration: none;
  color: var(--shout-ocean);
  font-size: 1.05rem;
}
.location-card .btn-glass {
  background: var(--shout-dark) !important;
  border: 1px solid var(--shout-teal) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  padding: 10px 26px;
  font-size: 0.95rem;
}
.location-card .btn-glass:hover {
  background: var(--shout-ocean) !important;
  border-color: var(--shout-ocean) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(0,96,144,0.5);
  transform: translateY(-2px);
}

/* ===== Banner Section ===== */

/* ===== Promotions Cards ===== */
.promo-card {
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.promo-card .card-img-top {
  object-fit: contain;
  background: var(--shout-dark);
}

.promo-card .card-title {
  font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
  color: var(--shout-navy);
  font-size: 1.5rem;
}

.promo-card .card-text {
  color: #555;
}

/* ===== Hero Image ===== */
.hero-picture {
  display: block;
  line-height: 0;
  border: none;
  outline: none;
  background: transparent;
  margin: 0 auto;
}

.hero-mascot-img {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(24,168,168,0.3));
  display: block;
  border: none;
  outline: none;
  background: transparent;
  margin: 0 auto;
  transform: translateZ(0);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

/* ===== Menu Price Table ===== */
.price-table {
  background: var(--shout-navy);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  overflow: hidden;
  margin-bottom: 10px;
}

.price-table .table {
  margin-bottom: 0;
}

.price-table .table th {
  background: var(--shout-ocean);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 16px;
  border: none;
}

.price-table .table th:not(:first-child) {
  text-align: right;
  width: 120px;
}

.price-table .table td {
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #444;
  border-color: #f0f0f0;
  vertical-align: middle;
}

.price-table .table td:not(:first-child) {
  text-align: right;
  font-weight: 700;
  color: var(--shout-ocean);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  width: 120px;
}

.price-table .table tbody tr:hover {
  background: var(--shout-ice);
}

.price-table .table .price {
  font-weight: 700;
  color: var(--shout-ocean);
  white-space: nowrap;
}

/* ===== FAQ Page ===== */
.faq-content {
  padding: 50px 0;
  background: var(--shout-dark);
}

.faq-content .btn-shout,
.menu-section .btn-shout {
  background: var(--shout-teal);
  color: #fff;
  border: 2px solid var(--shout-teal);
}

.faq-content .btn-shout:hover,
.menu-section .btn-shout:hover {
  background: transparent;
  color: var(--shout-teal);
  border-color: var(--shout-teal);
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category .section-badge {
  margin-bottom: 24px;
  background: var(--shout-teal);
  color: #fff;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 30px;
  box-shadow: 0 0 22px rgba(24,168,168,0.45);
  letter-spacing: 1.5px;
}

.faq-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item .accordion-button {
  font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--shout-navy);
  background: #fff;
  padding: 18px 24px;
  border: none;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--shout-navy);
  background: var(--shout-ice);
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a3d5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  padding: 16px 24px 24px;
}

.faq-item .accordion-body a {
  color: var(--shout-teal);
  font-weight: 600;
  text-decoration: none;
}

.faq-item .accordion-body a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-slogan {
    font-size: 2.4rem;
  }
  .hero-section {
    padding: 110px 0 60px;
  }
  .hero-mascot {
    max-height: 350px;
    margin-top: 40px;
  }
  .hero-mascot-img {
    max-height: 350px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 100svh;
    padding: 115px 16px 80px;
    text-align: center;
    align-items: flex-start;
  }
  .hero-slogan {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .hero-text {
    font-size: 1rem;
    margin: 0 auto 50px;
  }
  .btn-glass,
  .btn-teal {
    padding: 13px 20px;
    font-size: 0.95rem;
  }
  .hero-section .d-flex {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px !important;
    justify-content: center;
  }
  .hero-mascot {
    max-height: 280px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .hero-picture {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-mascot-img {
    max-height: 180px;
    margin-top: 0;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section > .container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-section .row {
    flex-direction: column;
    flex: unset;
    justify-content: flex-start;
  }
  .hero-section .col-lg-6 {
    width: 100%;
  }

  /* Remove bottom teal glow on mobile — causes double fade line near buttons */
  .hero-glow {
    background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 50%, rgba(24,144,216,0.2) 0%, transparent 55%);
  }

  .hero-section::after {
    display: none;
  }

  .about-img-wrapper::after {
    display: none;
  }
  /* === Page Headers & Hero Text - always white === */
  .hero-slogan,
  .hero-text {
    color: #fff !important;
  }
  .hero-slogan span {
    color: var(--shout-teal) !important;
  }
  .page-header {
    padding: 85px 16px 30px;
    min-height: auto;
  }
  .page-header h1 {
    font-size: 2rem;
    line-height: 1.15;
    color: #fff !important;
  }
  .page-header p {
    font-size: 0.95rem;
    color: #fff !important;
  }

  /* === Section Titles & Text === */
  .section-title {
    font-size: 1.6rem;
  }
  .section-text {
    font-size: 0.95rem;
  }

  /* === Navbar === */
  .navbar-brand {
    font-size: 1.3rem;
  }

  /* === FAQ Accordion === */
  .faq-item .accordion-button {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  .faq-item .accordion-body {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
  .faq-category .section-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  /* === Promo Cards === */
  .promo-card .card-title {
    font-size: 1rem;
  }
  .promo-card .card-text {
    font-size: 0.9rem;
  }

  /* === Menu === */
  .menu-category-title {
    font-size: 1.1rem;
  }

  /* === Location Card === */
  .location-card h5 {
    font-size: 1.1rem;
  }
  .location-card p,
  .location-card a[href^="tel:"],
  .location-card a[href^="mailto:"] {
    font-size: 0.9rem;
  }
  .location-card .btn-glass {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

    /* === Hero bottom fade - reduce on mobile so buttons aren't covered === */
  .hero-bottom-fade {
    height: 60px;
  }

  /* === About Page === */
  .about-story {
    font-size: 0.9rem;
    line-height: 1.75;
  }
  .timeline-year {
    font-size: 1.2rem;
  }
  .timeline-item p {
    font-size: 0.9rem;
  }
  .about-content .section-title {
    font-size: 1.5rem;
  }

  /* === General body text === */
  p, li {
    font-size: 1rem;
  }

  /* === Section Spacing === */
  .about-preview,
  .menu-section {
    padding: 36px 0;
  }
  .about-content,
  .menu-content,
  .faq-content,
  .locations-content {
    padding: 30px 0;
  }
  .stats-section {
    padding: 30px 0;
  }
  .promo-section,
  .promo-content {
    padding: 30px 0;
  }
}

/* ===== Scroll Animations ===== */
.fade-up {
	/*
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  */
}

.fade-up.visible {
	/*
  opacity: 1;
  transform: translateY(0);
  */
}






