/* ============================================
   How-Bout, Here? — Clean Modern Styles
   Easy to change colors via the CSS variables below
   ============================================ */

:root {
  /* Main colors — change these to match holidays or brand updates */
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --text: #1a1a1a;
  --text-muted: #555555;
  --accent: #2563eb;          /* Clean modern blue */
  --accent-hover: #1d4ed8;
  --border: #e5e5e5;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Holiday / theme quick change examples (uncomment one and comment the :root above):
   Christmas:
   --accent: #c41e3a;
   --bg-alt: #f8f1f1;

   Halloween:
   --accent: #ff6b00;
   --bg: #1a1a1a;
   --text: #f5f5f5;
   --bg-alt: #2a2a2a;
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* ========== HERO ========== */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.jingle-player {
  margin: 2rem auto;
  max-width: 320px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  padding: 0.9rem 1.6rem;
}

.jingle-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
  text-decoration: none;
}

.full-width {
  width: 100%;
}

/* ========== SECTIONS ========== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.content-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}

.content-card p + p {
  margin-top: 1rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-card .price {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== EVENTS ========== */
.events-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.event-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}

.event-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.event-info .location,
.event-info .time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-info .desc {
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.calendar-note {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.calendar-note h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.calendar-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== CONTACT ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.contact-info .small {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text);
  color: #f0f0f0;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 0.3rem;
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.6rem 0;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    width: auto;
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
  }
}

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

  .btn {
    text-align: center;
  }
}
