/* ═══════════════════════════════════════════════════════════
   YACHTZEE — Styles
   Jimmy Buffett Beach Vibes × Tropical Fun
   Bright sky blue, golden yellow, sandy white, coral accents
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Pacifico&display=swap');

/* ── Custom Properties ── */
:root {
  /* ── Tropical Beach Palette ── */
  --beach-sky:       #0EA5E9;   /* bright sky blue — headers, primary sections */
  --beach-ocean:     #0C4A6E;   /* deep ocean blue — footer, dark accents */
  --beach-aqua:      #22D3EE;   /* turquoise — highlights, hover glow */
  --beach-gold:      #F5A623;   /* vibrant golden yellow — from logo, CTAs */
  --beach-orange:    #E8722A;   /* warm sunset orange — secondary accent */
  --beach-coral:     #FF6B6B;   /* coral pink — fun accent pops */
  --beach-sand:      #FFF8F0;   /* warm sandy white — main background */
  --beach-tan:       #F0E6D3;   /* soft tan — alternate section bg */
  --beach-palm:      #4ADE80;   /* palm tree green — small fun accents */
  /* Utility */
  --text-dark:       #0C2D48;   /* deep blue-black for body text */
  --text-light:      #FFFFFF;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(12,74,110,.08);
  --shadow-md: 0 4px 20px rgba(12,74,110,.12);
  --shadow-lg: 0 8px 40px rgba(12,74,110,.18);
  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  /* Fonts */
  --font-display: 'Pacifico', cursive;
  --font-body:    'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--beach-sand);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--beach-ocean);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-dark);
  opacity: .65;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-padding { padding: 5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--beach-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}
.btn-primary:hover {
  background: #e09500;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: #fff;
}
.btn-navy {
  background: var(--beach-sky);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(14,165,233,.3);
}
.btn-navy:hover {
  background: #0284C7;
  transform: translateY(-2px);
}
.btn-coral {
  background: var(--beach-coral);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(255,107,107,.3);
}
.btn-coral:hover {
  background: #e55555;
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--beach-orange);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(232,114,42,.3);
}
.btn-orange:hover {
  background: #d4651f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,114,42,.45);
}

/* ═══════════════════════════════════════
   HEADER / NAV — Tropical Blue
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(14,165,233,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: .6rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-light);
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: color .3s;
}
.logo span { color: var(--beach-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--beach-gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: .6rem 1.4rem; font-size: .9rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1010;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -4px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: rgba(12, 74, 110, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    z-index: 1000;
  }
  .nav-links.open {
    max-height: 100vh;
    padding: 15px .5rem 1rem;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: .9rem;
    padding: 0.65rem .5rem;
    width: 100%;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.06);
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-links a:nth-child(3n) {
    border-right: none;
  }
  .nav-links a:nth-child(n+4) {
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a:last-child {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links a:hover, .nav-links a:active {
    background: rgba(255,255,255,.08);
  }
}

/* ═══════════════════════════════════════
   HERO — Bright Sky & Ocean
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--beach-sky);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,165,233,.75) 0%,
    rgba(34,211,238,.3) 40%,
    rgba(245,166,35,.2) 80%,
    rgba(232,114,42,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 6rem 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.5);
  padding: .4rem 1rem;
  border-radius: 50px;
  color: var(--beach-gold);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero h1 .accent { color: var(--beach-gold); }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  background: linear-gradient(to right, var(--beach-ocean) 0%, #D4891C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 620px;
  padding: 0 8px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 7px; }

/* Hero logo — large, centered */
.hero-logo {
  max-width: 1000px;
  width: 90%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.25));
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-logo { width: 95%; max-width: 500px; }
}

/* Floating shapes — hidden */
.hero-shapes, .hero-shapes .shape { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ═══════════════════════════════════════
   UPCOMING SHOWS — Sandy Tan BG
   ═══════════════════════════════════════ */
.shows-section {
  background: var(--beach-tan);
  text-align: center;
}
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.show-card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-align: left;
  border-top: 4px solid var(--beach-sky);
}
.show-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.show-date {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--beach-gold);
  margin-bottom: .25rem;
}
.show-day {
  font-size: .85rem;
  font-weight: 500;
  color: var(--beach-sky);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.show-venue {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--beach-ocean);
  margin-bottom: .25rem;
}
.show-location {
  font-size: .9rem;
  color: var(--text-dark);
  opacity: .7;
  margin-bottom: .25rem;
}
.show-time {
  font-size: .9rem;
  color: var(--text-dark);
  opacity: .6;
}
.show-card .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  padding: .7rem 1rem;
  font-size: .9rem;
}

/* ═══════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════ */
.about-section { background: var(--beach-sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--beach-sky), var(--beach-aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-light);
  opacity: .8;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-text p.highlight {
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(34,211,238,.05));
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border-left: 4px solid var(--beach-gold);
  font-weight: 500;
  margin-top: .5rem;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SET LIST — Light Tropical Gradient
   ═══════════════════════════════════════ */
.setlist-section {
  background: linear-gradient(170deg, var(--beach-tan) 0%, var(--beach-sand) 100%);
  text-align: center;
  position: relative;
}
.setlist-section::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 80px;
  background: var(--beach-sand);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}
.setlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
}
.setlist-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  transition: transform .2s, background .2s;
}
.setlist-item:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.95);
}
.setlist-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--beach-sky), var(--beach-aqua));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.setlist-artist {
  font-weight: 600;
  color: var(--beach-ocean);
  font-size: .95rem;
}
.setlist-songs {
  font-size: .85rem;
  color: var(--text-dark);
  opacity: .7;
  margin-top: 2px;
}
.spotify-link {
  color: #1DB954;
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s;
}
.spotify-link:hover {
  opacity: .75;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .setlist-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MEDIA PREVIEW
   ═══════════════════════════════════════ */
.media-section { background: var(--beach-sand); text-align: center; }
.media-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.media-video {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beach-ocean);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.photo-tile {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-tile:hover { transform: scale(1.04); }
@media (max-width: 768px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

/* ═══════════════════════════════════════
   PERFECT FOR — Tropical Sky Strip
   ═══════════════════════════════════════ */
.perfect-section {
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(34,211,238,.06));
  text-align: center;
}
.pills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.pill {
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  cursor: default;
}
.pill-solid {
  background: var(--beach-sky);
  color: var(--text-light);
}
.pill-solid:hover {
  background: var(--beach-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pill-outline {
  background: transparent;
  color: var(--beach-ocean);
  border: 2px solid var(--beach-sky);
}
.pill-outline:hover {
  background: var(--beach-sky);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   BOOKING CTA — Deep Ocean Blue
   ═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--beach-ocean) 0%, var(--beach-sky) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: var(--text-light); }
.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.2) 0%, transparent 70%);
  top: -200px; right: -100px;
}

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-section { background: var(--beach-sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.contact-detail .icon {
  width: 40px; height: 40px;
  background: rgba(14,165,233,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--beach-gold);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--beach-ocean);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid rgba(12,74,110,.1);
  border-radius: 12px;
  background: var(--beach-sand);
  transition: border-color .3s;
  font-size: .95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--beach-sky);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .btn { width: 100%; justify-content: center; margin-top: .5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  color: var(--beach-sky);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.form-success p { color: var(--text-dark); opacity: .7; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER — Deep Ocean
   ═══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(135deg, var(--beach-ocean) 0%, #071E32 100%);
  color: rgba(255,255,255,.9);
  padding: 3rem 0 1.5rem;
  padding-top: 5.5rem;
  text-align: center;
  position: relative;
}
.footer-logo-img {
  width: 200px;
  height: auto;
  margin: 0 auto 0.75rem;
  position: relative;
  top: -1rem;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
  animation: float 6s ease-in-out infinite;
  margin-top: -7rem;
}
.footer-logo span { color: var(--beach-gold); }
.footer-tagline {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: .9rem;
  opacity: .7;
  transition: opacity .3s;
}
.footer-nav a:hover { opacity: 1; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .3s, transform .3s;
}
.footer-social a:hover {
  background: var(--beach-gold);
  transform: translateY(-2px);
}
.footer-note {
  font-size: .8rem;
  opacity: .45;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   WAVE DIVIDER
   ═══════════════════════════════════════ */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
