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

/* General Body Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: black;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* Headings */
h1,
h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.highlight {
  color: gold;
  font-weight: bold;
}

/* Tagline */
.landing-tagline {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #ddd;
}

/* Buttons */
.next-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  font-size: 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 20px;
}

.next-button:hover {
  background-color: gold;
  color: black;
}

/* Audio Toggle */
.audio-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  background-color: gold;
  color: black;
  border: none;
  padding: 10px 14px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
..crown-anim {
  position: absolute;
  left: 62%;        /* Move to the right for an offset look */
  top: 10px;        /* Sits just above the logo */
  width: 88px;
  height: auto;
  transform: translateX(-50%) rotate(-22deg); /* Tilt the crown */
  opacity: 1;
  z-index: 4;
  filter: drop-shadow(0 0 15px gold);
  animation: dropCrown 2.2s 2.2s cubic-bezier(0.37, 1.6, 0.43, 0.99) forwards, crownGlow 4s infinite alternate;
}
@@keyframes dropCrown {
  0% { top: -90px; opacity: 0; }
  70% { top: 10px; opacity: 1; }
  80% { top: 0px; }
  90% { top: 18px; }
  100% { top: 10px; }
}

@keyframes crownGlow {
  0% { filter: drop-shadow(0 0 18px gold) drop-shadow(0 0 10px #fff); }
  25% { filter: drop-shadow(0 0 28px #ff00cc) drop-shadow(0 0 12px #fff); }
  50% { filter: drop-shadow(0 0 30px #0fffcf) drop-shadow(0 0 15px #ff0); }
  75% { filter: drop-shadow(0 0 25px #ffd700) drop-shadow(0 0 8px #fff); }
  100% { filter: drop-shadow(0 0 20px gold) drop-shadow(0 0 10px #fff); }
}
/* Logo Image (if used on homepage) */
.logo {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Content Container */ĺ
.content-container {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Business Cards */
.business-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.business-card:hover {
  transform: scale(1.02);
}

.business-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
}

.business-name {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: gold;
}

.business-link {
  display: inline-block;
  margin-top: 10px;
  color: #00eaff;
  font-weight: bold;
  text-decoration: none;
}

.business-link:hover {
  text-decoration: underline;
}
#cursor {
  display: inline-block;
  font-weight: bold;
  animation: blink 0.7s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

#cursor.hidden {
  display: none !important;
  animation: none !important;
}
/* Glowing Navigation Bar */
nav.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: black;
  padding: 0.75rem;
  gap: 12px;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.2);
}

nav.main-nav a {
  color: #ff33cc;
  font-weight: 800;
  font-size: 0.9rem; /* Smaller text */
  letter-spacing: 0.5px;
  text-decoration: none;
  text-shadow:
    0 0 2px #ff33cc,
    0 0 5px #ff33cc;
  transition: all 0.2s ease-in-out;
}

nav.main-nav a:hover {
  transform: scale(1.05);
  text-shadow:
    0 0 4px #ff66e6,
    0 0 8px #ff66e6,
    0 0 14px #ff66e6;
}

/* Clear other nav styling */
nav a {
  text-shadow: none !important;
}
}