:root {
  --primary: #ff00d4;
  /* Neon Pink */
  --secondary: #00f3ff;
  /* Neon Cyan */
  --accent-green: #00ff88;
  /* Neon Green */
  --accent-yellow: #fff200;
  /* Neon Yellow */
  --bg-dark: #050505;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --glow-pink: 0 0 10px rgba(255, 0, 212, 0.7), 0 0 20px rgba(255, 0, 212, 0.4);
  --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.7), 0 0 20px rgba(0, 243, 255, 0.4);
  --accent-orange: #ff8800;
  --accent-purple: #9d00ff;
  --accent-red: #ff3333;
  --font-brand: 'Fredoka', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  background-image: url('home-page/bg.png');
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

h1 {
  font-family: var(--font-brand);
  text-transform: none;
  letter-spacing: normal;
}

/* Outline style for colored heading spans */
h1 .sign-pink   { color: #ff00d4; -webkit-text-stroke: 2px #ff00d4; text-shadow: 0 0 8px rgba(255,0,212,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }
h1 .sign-cyan   { color: #00f3ff; -webkit-text-stroke: 2px #00f3ff; text-shadow: 0 0 8px rgba(0,243,255,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }
h1 .sign-green  { color: #00ff88; -webkit-text-stroke: 2px #00ff88; text-shadow: 0 0 8px rgba(0,255,136,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }
h1 .sign-yellow { color: #fff200; -webkit-text-stroke: 2px #fff200; text-shadow: 0 0 8px rgba(255,242,0,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }
h1 .sign-orange { color: #ff8800; -webkit-text-stroke: 2px #ff8800; text-shadow: 0 0 8px rgba(255,136,0,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }
h1 .sign-purple { color: #9d00ff; -webkit-text-stroke: 2px #9d00ff; text-shadow: 0 0 8px rgba(157,0,255,0.6), 2px 2px 0 #000, -1px -1px 0 #000; paint-order: stroke fill; }

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

/* Neon utilities */
.neon-pink {
  color: var(--primary);
  text-shadow: var(--glow-pink);
}

.neon-cyan {
  color: var(--secondary);
  text-shadow: var(--glow-cyan);
}

.neon-green {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.7);
}

.neon-yellow {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 242, 0, 0.7);
}

.neon-orange {
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(255, 136, 0, 0.7);
}

.neon-border-pink {
  border: 2px solid var(--primary);
  box-shadow: var(--glow-pink);
}

.neon-border-cyan {
  border: 2px solid var(--secondary);
  box-shadow: var(--glow-cyan);
}

/* Phone Bar */
.phone-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.97);
  padding: 6px 10px;
  z-index: 1002;
  border-bottom: 1px solid var(--accent-yellow);
}
.phone-bar a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 242, 0, 0.7);
  transition: text-shadow 0.3s;
}
.phone-bar a:hover {
  text-shadow: 0 0 18px rgba(255, 242, 0, 1);
}

/* Redesign Header based on screenshots */
.top-header {
  position: fixed;
  top: 32px; /* offset below phone bar */
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--secondary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-logo-left img, .nav-logo-right img {
  display: block;
}

.nav-row {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-row a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-row a:hover {
  color: var(--primary);
  text-shadow: var(--glow-pink);
}

.nav-row .divider {
  color: #666; /* Or variable if preferred */
  font-weight: 900;
  margin: 0 5px;
}

.nav-subtitle {
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 900;
  margin-top: 1rem;
  text-transform: uppercase;
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 242, 0, 0.7);
}

@media (max-width: 900px) {
  .nav-row {
    flex-direction: column;
    gap: 10px;
  }
  .nav-row .divider {
    display: none;
  }
}

/* Animations */
@keyframes neon-flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--secondary);
  }

  20%,
  22%,
  24%,
  55% {
    opacity: 0.4;
    box-shadow: none;
  }
}

.neon-flashing {
  animation: neon-flicker 4s infinite alternate;
}

/* Infinite Logo Carousel */
.carousel-wrapper {
  overflow: hidden;
  padding: 40px 0;
  background: #000;
  position: relative;
}

.logo-carousel {
  display: flex;
  width: calc(250px * 40);
  /* Adjusted for duplicate logos */
  animation: scroll 40s linear infinite;
}

.logo-carousel img:nth-child(6n+1) { --logo-glow: var(--secondary); }
.logo-carousel img:nth-child(6n+2) { --logo-glow: var(--primary); }
.logo-carousel img:nth-child(6n+3) { --logo-glow: var(--accent-green); }
.logo-carousel img:nth-child(6n+4) { --logo-glow: var(--accent-yellow); }
.logo-carousel img:nth-child(6n+5) { --logo-glow: var(--accent-orange); }
.logo-carousel img:nth-child(6n+6) { --logo-glow: var(--accent-purple); }

.logo-carousel img {
  height: 60px;
  margin: 0 40px;
  filter: drop-shadow(0 0 10px var(--logo-glow));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.7;
}

.logo-carousel img:hover {
  filter: drop-shadow(0 0 20px var(--logo-glow)) drop-shadow(0 0 40px var(--logo-glow));
  opacity: 1;
  transform: scale(1.15) rotate(2deg);
}

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

  100% {
    transform: translateX(calc(-250px * 20));
  }
}

/* Neon Sign Colors */
.sign-pink  { color: var(--primary);       text-shadow: 0 0 10px #ff00d4, 0 0 30px #ff00d4, 0 0 60px #ff00d4; }
.sign-cyan  { color: var(--secondary);     text-shadow: 0 0 10px #00f3ff, 0 0 30px #00f3ff, 0 0 60px #00f3ff; }
.sign-green { color: var(--accent-green);  text-shadow: 0 0 10px #00ff88, 0 0 30px #00ff88, 0 0 60px #00ff88; }
.sign-yellow{ color: var(--accent-yellow); text-shadow: 0 0 10px #fff200, 0 0 30px #fff200, 0 0 60px #fff200; }
.sign-orange{ color: var(--accent-orange); text-shadow: 0 0 10px #ff8800, 0 0 30px #ff8800, 0 0 60px #ff8800; }
.sign-purple{ color: var(--accent-purple); text-shadow: 0 0 10px #9d00ff, 0 0 30px #9d00ff, 0 0 60px #9d00ff; }

.neon-sign-box {
  border: 2px solid var(--accent-yellow) !important;
  box-shadow: 0 0 30px rgba(255,242,0,0.3), inset 0 0 30px rgba(0,0,0,0.5) !important;
}
.neon-sign-title {
  font-size: 3.8rem;
  font-family: var(--font-brand);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}
@media (max-width: 768px) {
  .neon-sign-title { font-size: 2rem; letter-spacing: 0; }
  .neon-sign-box h2 { font-size: 1.1rem !important; }
}

/* Light Blue Book Button */
.btn-book-blue {
  background: #00cfff !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.7) !important;
}
.btn-book-blue:hover {
  background: #fff !important;
  box-shadow: 0 0 40px rgba(0, 207, 255, 1) !important;
}

/* Hero Titles and Area */
.hero-titles {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  box-shadow: var(--glow-cyan);
}

.hero-titles h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-titles h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-image-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px 80px 10px;
}

.featured-image-container {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  padding: 15px;
  background: #000;
  border: 4px solid #333;
  border-radius: 25px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.featured-image-container img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.btn-book {
  margin-top: -40px;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  box-shadow: var(--glow-pink);
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-book:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary);
  background: #fff;
}

/* Signatures */
.signatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  padding: 40px 0 10px 0;
}

.sig-card {
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.sig-card:hover {
  transform: translateY(-10px);
}

.sig-card h3 {
  margin: 1rem 0;
  font-size: 1.8rem;
}

/* Calendar Widget */
.calendar-widget {
  max-width: 600px;
  margin: 50px auto;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.85);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
}

.day.active {
  background: var(--secondary);
  color: #000;
  box-shadow: var(--glow-cyan);
}

/* Beige Signatures styling */
.signatures-title {
  font-size: 5.5rem;
  color: #000;
  text-transform: none;
  font-family: inherit;
  font-weight: 900;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1;
}

.signatures-grid-beige {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.beige-card {
  background-color: #e2dcce;
  padding: 1rem;
  color: #6d6148;
  text-align: left;
  border: 1px solid #d4cdb4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  width: calc(33.333% - 20px);
  min-width: 300px;
}

.beige-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.beige-card h3 {
  font-size: 1.2rem;
  color: #928362;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.beige-card p {
  font-size: 0.9rem;
  color: #928362;
  font-weight: 700;
}

/* More Signatures Section */
.more-signatures {
  background-color: #e2dcce;
  max-width: 900px;
  margin: 20px auto 100px auto;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.more-signatures h2 {
  text-align: center;
  color: #a39578;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.more-sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.more-sig-item h4 {
  color: #796e57;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.more-sig-item p {
  color: #9c8e70;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .more-sig-grid {
    grid-template-columns: 1fr;
  }
  .sig-card {
    padding: 1.2rem;
  }
  .sig-card h3 {
    font-size: 1.4rem;
  }
}

/* --- Mobile Navigation Restructuring --- */
.mobile-menu-btn {
  display: none;
  font-size: 2.5rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0 10px;
}
.mobile-menu-btn:focus {
  outline: none;
}

@media (max-width: 900px) {
  .nav-logo-right {
    display: none !important;
  }
  /* No hamburger — always show links */
  .mobile-menu-btn {
    display: none !important;
  }
  .top-header {
    background: rgba(0,0,0,0.97) !important;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2%;
    gap: 0;
  }
  .nav-logo-left img {
    height: 44px !important;
  }
  .top-header nav.container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 6px 0 4px 0;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    margin-bottom: 4px;
  }
  .nav-row a {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    padding: 3px 0;
    white-space: nowrap;
  }
  .nav-row .divider {
    display: none !important;
  }
  .nav-subtitle {
    font-size: 0.7rem !important;
    padding: 3px 6px 5px 6px;
    text-align: center;
  }
}

/* Offset main content below phone bar + taller mobile header */
@media (max-width: 900px) {
  main[style*="padding-top"] {
    padding-top: 280px !important;
  }
}

body, html {
  overflow-x: hidden;
}

/* CTA Button Row */
.cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 3rem 0;
}
.btn-cta {
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}
.btn-call {
  background: #00cfff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.7);
}
.btn-book-now {
  background: var(--primary);
  color: #000;
  box-shadow: var(--glow-pink);
}
.btn-call:hover, .btn-book-now:hover {
  transform: scale(1.05);
  background: #fff;
}
