/* ═══════════════════════════════════════════
   AUSTIN SNOW: styles.css
   Brand: #FD3053 #E02898 #09FAFC #96DA15
          #24314E #5398DB #63B2BF #B13491
   ═══════════════════════════════════════════ */

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

:root {
  --pink:    #FD3053;
  --magenta: #E02898;
  --cyan:    #09FAFC;
  --lime:    #96DA15;
  --navy:    #24314E;
  --blue:    #5398DB;
  --ice:     #63B2BF;
  --purple:  #B13491;
  --white:   #FFFFFF;
  --off-white: #F8F8F6;

  /* Dark background (site-wide): deep plum, warmer than navy so the brights pop */
  --ink:     #1C0C2B;
  --ink-hi:  #2E1540;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 44px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-primary { background: var(--pink); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--pink);
  border: 3px solid var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.88); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-large { padding: 18px 44px; font-size: 1rem; }

/* ─── SECTION COMMON ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  margin-top: 12px;
  opacity: 0.75;
}
.section-header.light h2,
.section-header.light .section-sub { color: var(--white); }

/* ─── SECTION DRIP DIVIDER ─── */
.section-drip {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
}
.section-drip img {
  width: auto;
  height: 90px;
  display: block;
}

/* ─── SPLAT ACCENTS ─── */
.splat {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* ─── VISUALLY HIDDEN (screen readers / SEO) ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-height);
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-links a.nav-cta {
  background: var(--pink, #FD3053);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 4px;
}
.nav-links a.nav-cta:hover {
  background: var(--cyan);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.25s;
}

.header-drip {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 110px;
  margin-bottom: -110px;
  pointer-events: none;
  background-image: url('../assets/opt/header_drip_continuous_clean.png?v=2');
  background-repeat: repeat-x;
  background-size: auto 110px;
  background-position: top left;
}
.header-drip img { display: none; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, var(--ink-hi) 0%, var(--ink) 70%);
}

.hero-bg { display: none; }
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-logo {
  width: min(520px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.4));
}

.hero-tagline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.splat-hero-1 {
  width: 600px;
  bottom: 2%;
  left: -80px;
  opacity: 0.85;
  transform: rotate(-15deg);
}
.splat-hero-2 {
  width: 520px;
  top: 4%;
  right: -80px;
  opacity: 0.8;
  transform: rotate(20deg);
}

/* ═══════════════════════════════════════════
   SLIDESHOW
   ═══════════════════════════════════════════ */
.slideshow-section {
  background: var(--ink);
  padding: 80px 0;
}

.slideshow-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.slide {
  display: none;
  position: relative;
}
.slide.active { display: block; }

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 48px 40px;
  background: linear-gradient(transparent, rgba(36,49,78,0.88));
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.slide-flavor {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-btn:hover { background: rgba(255,255,255,0.3); }
.slide-btn.prev { left: 20px; }
.slide-btn.next { right: 20px; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════
   FLAVORS GRID
   ═══════════════════════════════════════════ */
.flavors-section {
  position: relative;
  background: var(--off-white);
  padding: 100px 40px;
  overflow: hidden;
}

.flavors-statement {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.flavors-statement h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.flavors-statement p {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.5;
  font-weight: 700;
  color: var(--navy);
}

.card-drip-top {
  position: absolute;
  top: -52px;
  right: -4px;
  width: 110px;
  height: auto;
}

.splat-flavors-1 {
  width: 560px;
  top: 0px;
  right: -100px;
  opacity: 0.35;
  transform: rotate(25deg);
}
.splat-flavors-2 {
  width: 500px;
  bottom: 20px;
  left: -100px;
  opacity: 0.3;
  transform: rotate(-10deg);
}

/* ═══════════════════════════════════════════
   EVENT PACKAGES
   ═══════════════════════════════════════════ */
.packages-section {
  position: relative;
  background: var(--ink);
  padding: 100px 40px;
  overflow: hidden;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.package-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.package-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px var(--cyan);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.package-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

.package-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
}

.package-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.package-perks {
  list-style: none;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.package-perks li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.package-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.packages-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}
.packages-note a {
  color: var(--cyan);
  text-decoration: underline;
}

.splat-packages {
  width: 580px;
  bottom: -100px;
  right: -100px;
  opacity: 0.18;
  transform: rotate(-20deg);
  z-index: 1;
}

/* ═══════════════════════════════════════════
   CATERING
   ═══════════════════════════════════════════ */
.catering-section {
  position: relative;
  background: var(--white);
  padding: 100px 40px;
  overflow: hidden;
}

.catering-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.catering-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.catering-text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.catering-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(36,49,78,0.75);
  margin-bottom: 28px;
}

.catering-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 36px;
  text-align: left;
}
.catering-perks li {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 400;
}

.catering-visual {
  position: relative;
}
.catering-visual img:first-child {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.splat-catering {
  position: absolute;
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  opacity: 0.1;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   QUOTE FORM
   ═══════════════════════════════════════════ */
.quote-section {
  position: relative;
  background: var(--off-white);
  padding: 100px 40px;
  overflow: hidden;
}

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

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group textarea { resize: vertical; }

.form-group select { cursor: pointer; }

.quote-form .btn {
  align-self: flex-start;
}

.splat-quote {
  position: absolute;
  width: 420px;
  bottom: -80px;
  right: -80px;
  opacity: 0.18;
  transform: rotate(15deg);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--ink);
  padding: 80px 40px 0;
  overflow: hidden;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}
.footer-logo p {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links h4,
.footer-hours h4,
.footer-social h4 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-hours p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer-hours em { font-style: normal; color: rgba(255,255,255,0.4); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.social-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.social-links a:hover { color: var(--cyan); }
.footer-email {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-email a { color: rgba(255,255,255,0.65); }
.footer-email a:hover { color: var(--cyan); }
.footer-hours a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-hours a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer-drip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: top;
  opacity: 0.22;
  transform: scaleY(-1) rotate(180deg);
  pointer-events: none;
}

/* ─── ENTRANCE ANIMATIONS ─── */
.observe {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.observe.in-view {
  opacity: 1;
  transform: translateY(0);
}
.package-card:nth-child(2).observe { transition-delay: 0.1s; }
.package-card:nth-child(3).observe { transition-delay: 0.2s; }
.package-card:nth-child(4).observe { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 52px; }

  .nav-inner { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .slide img { height: 360px; }
  .slide-caption { padding: 32px 24px 24px; }

  .flavors-section,
  .packages-section,
  .catering-section { padding: 70px 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
}
