/* ============================================
   LIT MANN'S LITMONADE — Brand Stylesheet
   Pulled from the logo: red, yellow, cream,
   strawberry pink. Loud, bold, alive.
   ============================================ */

:root {
  --red: #C8102E;
  --red-deep: #8B0A1F;
  --yellow: #FFD700;
  --yellow-deep: #F5A623;
  --cream: #FFF8E7;
  --pink: #FF6B9D;
  --strawberry: #E8334B;
  --ink: #1A0A0A;
  --shadow: rgba(139, 10, 31, 0.3);

  --font-display: 'Bowlby One', 'Bungee', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  border-bottom: 4px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  object-fit: cover;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 1.75rem;
  cursor: pointer;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top, #FFE066 0%, transparent 60%),
    radial-gradient(ellipse at bottom, #FF8B8B 0%, transparent 70%),
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 3rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-splash {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, var(--yellow) 2px, transparent 3px),
    radial-gradient(circle at 85% 30%, var(--pink) 3px, transparent 4px),
    radial-gradient(circle at 25% 80%, var(--yellow) 2px, transparent 3px),
    radial-gradient(circle at 75% 75%, var(--pink) 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--yellow) 1px, transparent 2px);
  background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 100px 100px;
  opacity: 0.4;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
  animation: heroIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(0.85) rotate(-3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--yellow);
  margin-top: 1rem;
  letter-spacing: 0.02em;
  text-shadow:
    3px 3px 0 var(--red-deep),
    6px 6px 0 rgba(0,0,0,0.3);
  animation: heroIn 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-sub {
  margin-top: 1rem;
  color: var(--cream);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: heroIn 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ============== ANNOUNCEMENT ============== */
.announce {
  background: var(--yellow);
  border-top: 6px solid var(--red);
  border-bottom: 6px solid var(--red);
  padding: 2rem 1.5rem;
  position: relative;
}

.announce::before,
.announce::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--red) 0 10px,
    var(--yellow-deep) 10px 20px
  );
}
.announce::before { top: -6px; }
.announce::after { bottom: -6px; }

.announce-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.announce-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.announce-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red-deep);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.announce-body p {
  color: var(--ink);
  font-weight: 500;
  font-size: 1.05rem;
}

/* ============== SECTIONS ============== */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--red);
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 0 var(--yellow);
  display: inline-block;
}

.section-head p {
  margin-top: 0.75rem;
  color: var(--red-deep);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ============== FEATURED SPOTLIGHT ============== */
.spotlight {
  background: linear-gradient(135deg, var(--ink) 0%, #2a0f0f 100%);
  padding: 3rem 1.5rem;
  border-bottom: 6px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--red) 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, var(--yellow) 1px, transparent 2px);
  background-size: 60px 60px, 80px 80px;
  opacity: 0.15;
  pointer-events: none;
}

.spotlight-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.spotlight-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  box-shadow: 3px 3px 0 var(--red);
}

#spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--yellow);
  letter-spacing: 0.02em;
  text-shadow: 3px 3px 0 var(--red-deep);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.spotlight-media {
  margin: 1.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: 6px 6px 0 var(--red);
}

.spotlight-media:empty {
  display: none;
}

#spotlight-text {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* ============== UNIVERSAL EMBED WRAPPERS ============== */
.embed-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* 16:9 for landscape (YouTube, Vimeo, FB videos) */
.embed-yt,
.embed-vm,
.embed-fb {
  aspect-ratio: 16 / 9;
}

.embed-yt iframe,
.embed-vm iframe,
.embed-sc iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* TikTok and IG are vertical, give them more height */
.embed-tt,
.embed-ig {
  background: transparent;
  min-height: 600px;
  display: flex;
  justify-content: center;
}

.embed-tt blockquote,
.embed-ig blockquote {
  margin: 0 auto !important;
  max-width: 100% !important;
}

/* SoundCloud is short */
.embed-sc {
  aspect-ratio: auto;
  height: 180px;
}

/* Facebook video uses iframe via SDK, give it room */
.embed-fb {
  background: transparent;
  aspect-ratio: auto;
  min-height: 280px;
}

.embed-fb .fb-video,
.embed-fb .fb-post {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

/* Direct video file */
.embed-video {
  aspect-ratio: 16 / 9;
}

.embed-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image */
.embed-image {
  aspect-ratio: auto;
  background: transparent;
}

.embed-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fallback link */
.embed-link {
  aspect-ratio: auto;
  padding: 1.5rem;
  background: var(--cream);
  text-align: center;
}

.embed-link a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

/* ============== THE STAND (featured) ============== */
.stand-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.stand-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  border: 6px solid var(--red);
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 12px 12px 0 var(--red-deep);
  overflow: hidden;
}

.stand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, var(--pink) 3px, transparent 4px),
    radial-gradient(circle at 90% 80%, var(--strawberry) 2px, transparent 3px),
    radial-gradient(circle at 50% 10%, var(--red) 2px, transparent 3px);
  background-size: 100px 100px, 80px 80px, 120px 120px;
  opacity: 0.3;
  pointer-events: none;
}

.stand-card > * {
  position: relative;
  z-index: 2;
}

.stand-badge {
  display: inline-block;
  background: var(--red);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 3px 3px 0 var(--red-deep);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stand-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  animation: wiggle 3s ease-in-out infinite;
}

.stand-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--red-deep);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.stand-addr {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.stand-phone {
  display: inline-block;
  background: var(--red);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  border: 4px solid var(--cream);
  box-shadow: 6px 6px 0 var(--red-deep);
  transition: all 0.2s;
}

.stand-phone:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--red-deep);
}

.stand-note {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--red-deep);
  font-size: 1.1rem;
}

.stand-actions {
  margin-top: 1.5rem;
}

.btn-yellow-sm {
  display: inline-block;
  background: var(--red-deep);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 3px solid var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s;
}

.btn-yellow-sm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* ============== LOCATIONS ============== */
.locations-section {
  background:
    radial-gradient(ellipse at center, var(--cream) 0%, #FFE9C7 100%);
  max-width: none;
  margin: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.locations-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: white;
  border: 4px solid var(--red);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0 var(--red-deep);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--ink);
  display: block;
}

.location-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--red-deep);
}

.location-card.coming-soon {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  border-color: var(--red-deep);
}

.loc-pin {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.location-card .addr {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.loc-link {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.location-card:hover .loc-link {
  color: var(--red-deep);
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.badge.open24 {
  background: #1ea54b;
  color: white;
  position: absolute;
  top: -10px;
  right: -10px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--red-deep);
  border: 2px solid white;
}

/* ============== MENU ============== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-card {
  background: white;
  border: 5px solid var(--yellow);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.menu-card.featured {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: var(--yellow);
  transform: scale(1.05);
}

.menu-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.menu-card .price {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}

.menu-card.featured .price { color: var(--yellow); }

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: var(--red-deep);
  letter-spacing: 0.05em;
}

.menu-card.featured h3 { color: var(--yellow); }

.menu-card p {
  color: var(--ink);
  font-weight: 500;
}

.menu-card.featured p { color: var(--cream); }

/* ============== INVESTORS ============== */
.investors-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--cream);
  text-align: center;
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.investors-section::before {
  content: '🍋';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 8rem;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.investors-section::after {
  content: '🍋';
  position: absolute;
  bottom: -20px;
  right: 5%;
  font-size: 10rem;
  opacity: 0.1;
  transform: rotate(20deg);
}

.investors-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.investors-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--yellow);
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 0 var(--red-deep);
  margin-bottom: 1.5rem;
}

.investors-section .big {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.investors-section .small {
  font-size: 1rem;
  opacity: 0.9;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 1.5rem 2rem;
  border-top: 6px solid var(--yellow);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  margin-bottom: 1rem;
}

.footer-tag {
  font-weight: 600;
  line-height: 1.5;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.socials {
  list-style: none;
}

.socials li { margin-bottom: 0.6rem; }

.socials a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.socials a:hover {
  color: var(--yellow);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 248, 231, 0.15);
  text-align: center;
}

.footer-message {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.footer-from {
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-faith {
  color: var(--yellow);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--red);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 4px solid var(--yellow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .announce-inner {
    flex-direction: column;
    text-align: center;
  }
  .menu-card.featured { transform: none; }
  .menu-card.featured:hover { transform: translateY(-8px); }
  .section { padding: 3.5rem 1rem; }
}
