/* Austin Events Calendar - Main Stylesheet */
/* Warm & Friendly Design with Bright Colors */

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

:root {
  /* Warm, bright color palette */
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: #fbbf24;
  --secondary: #ea580c;
  --accent: #fef3c7;

  /* Text colors */
  --text: #292524;
  --text-muted: #78716c;
  --text-light: #ffffff;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-warm: #fffbeb;
  --bg-dark: #292524;

  /* Utilities */
  --border: #e7e5e4;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #44403c;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo span {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav a {
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  text-align: center;
}

.hero > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.hero-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 20px;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section h2,
.section h3,
.section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section.text-center > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 12px;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* ========== CALENDAR SPREAD ========== */
.spread-section {
  padding: 0 24px 60px;
}

.spread-section img {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ========== CAROUSEL ========== */
.carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 20px;
  color: var(--text);
}

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

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-weight: 700;
  font-size: 15px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ========== MONTHS GRID ========== */
.months-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.month-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
}

.month-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.month-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}

.month-item:hover img {
  transform: scale(1.05);
}

.month-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .months-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .months-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ========== CHARITY ========== */
.charity-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.charity-content img {
  max-width: 300px;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-source {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========== EVENT GUIDES ========== */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.guide-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.guide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}

.guide-info h3 {
  margin-bottom: 4px;
}

.guide-info p {
  font-size: 14px;
  opacity: 0.85;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ========== BUY PAGE ========== */
.buy-hero {
  padding: 60px 24px;
  background: var(--bg-warm);
}

.buy-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}

.buy-hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.buy-hero-text h1 {
  margin-bottom: 12px;
}

.buy-tagline {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.buy-features {
  list-style: none;
  margin-bottom: 28px;
}

.buy-features li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.buy-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.buy-price {
  margin-bottom: 24px;
}

.buy-price .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary);
}

.buy-price .note {
  font-size: 14px;
  color: var(--text-muted);
}

.buy-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Store Locations */
.locations-section {
  padding: 60px 24px;
}

.locations-inner {
  max-width: 900px;
  margin: 0 auto;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

/* ========== BULK PAGE ========== */
.bulk-hero {
  padding: 60px 24px;
  background: var(--bg-warm);
}

.bulk-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 50px;
  align-items: center;
}

.bulk-hero-text h1 {
  margin-bottom: 12px;
}

.bulk-tagline {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.bulk-hero-text > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bulk-pricing-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.bulk-price {
  font-size: 20px;
}

.bulk-price strong {
  font-size: 40px;
  color: var(--secondary);
}

.bulk-badge {
  background: var(--primary);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.bulk-hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Pricing Tiers */
.pricing-section {
  padding: 60px 24px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  max-width: 220px;
  padding: 32px 24px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--accent);
  position: relative;
}

.pricing-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-qty {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-per {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-savings {
  margin-top: 12px;
  color: var(--secondary);
  font-weight: 700;
}

/* Use Cases */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.use-item {
  text-align: center;
  padding: 24px 16px;
}

.use-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.use-item h3 {
  margin-bottom: 8px;
}

.use-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Bulk Page Styles */

/* Green Hero */
.bulk-hero-green {
  background: linear-gradient(135deg, #65a30d 0%, #84cc16 100%);
  padding: 60px 24px;
}

.bulk-hero-green .bulk-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}

.bulk-hero-green .bulk-hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bulk-hero-green .bulk-hero-text {
  color: white;
}

.bulk-hero-green .bulk-hero-text p,
.bulk-hero-green .bulk-hero-text strong {
  color: white;
}

.bulk-hero-green h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.bulk-hero-green .bulk-supplies {
  color: #fef08a;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.bulk-hero-green p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Feature Badge */
.feature-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.thanks-austin,
.ready-now {
  color: var(--primary);
  margin-top: 20px;
}

.bulk-clients-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.bulk-clients-row-4 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bulk-feature-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.bulk-feature-row.reverse {
  grid-template-columns: 300px 1fr;
}

.bulk-feature-row.reverse .bulk-feature-image {
  order: -1;
}

.bulk-feature-text h2 {
  margin-bottom: 20px;
}

.bulk-feature-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.bulk-feature-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bulk-feature-images-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bulk-feature-images-stacked img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bulk-gallery-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.bulk-gallery-4 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Bulk Pricing Section */
.bulk-pricing-section {
  padding: 80px 24px;
  background: var(--bg);
}

.bulk-pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bulk-price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
  transition: all var(--transition);
}

.bulk-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bulk-price-card.featured {
  border-color: #65a30d;
  background: linear-gradient(180deg, #f0fdf4 0%, white 100%);
  position: relative;
  transform: scale(1.05);
}

.bulk-price-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.bulk-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #65a30d;
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.bulk-price-qty {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}

.bulk-price-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bulk-price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #65a30d;
  line-height: 1;
  margin-bottom: 8px;
}

.bulk-price-amount span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.bulk-price-savings {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 700;
}

.bulk-shipping-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--text-muted);
}

/* Bulk Contact Section */
.bulk-contact-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #65a30d 0%, #84cc16 100%);
  text-align: center;
}

.bulk-contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.bulk-contact-section h2 {
  color: white;
  margin-bottom: 16px;
}

.bulk-contact-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.bulk-email {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  transition: all var(--transition);
}

.bulk-email:hover {
  border-color: white;
}

.bulk-or {
  margin: 20px 0 8px;
  font-size: 14px;
}

.bulk-phone {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-decoration: none;
}

.bulk-price-guarantee {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.bulk-order-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.bulk-order-method {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.bulk-order-method h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
}

.bulk-order-method .bulk-email {
  font-size: 20px;
}

.bulk-order-method .bulk-phone {
  font-size: 24px;
}

.order-note {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.bulk-order-divider {
  color: white;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.7;
}

/* Bulk Order CTA Section */
.bulk-order-cta {
  padding: 40px 24px;
  text-align: center;
  background: white;
}

.bulk-order-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.order-instruction {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text);
}

.btn-order-email {
  display: inline-block;
  padding: 16px 48px;
  background: #dc2626;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition);
  margin-bottom: 16px;
}

.btn-order-email:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.order-or {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

.order-phone-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.order-phone-link:hover {
  color: var(--primary);
}

/* Bulk months grid */
.bulk-months {
  grid-template-columns: repeat(4, 1fr);
}

.bulk-months img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .bulk-hero-green .bulk-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bulk-hero-green .bulk-hero-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .bulk-clients-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bulk-feature-row,
  .bulk-feature-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bulk-feature-row.reverse .bulk-feature-image {
    order: 0;
  }

  .bulk-feature-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .bulk-gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bulk-months {
    grid-template-columns: repeat(3, 1fr);
  }

  .bulk-pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .bulk-price-card {
    max-width: 280px;
    width: 100%;
  }

  .bulk-price-card.featured {
    transform: none;
  }

  .bulk-price-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 500px) {
  
  .bulk-months {
    grid-template-columns: repeat(2, 1fr);
  }

  .bulk-email {
    font-size: 18px;
  }

  .bulk-phone {
    font-size: 22px;
  }
}

/* Contact Form */
.contact-section {
  padding: 60px 24px;
  background: var(--bg-warm);
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== EVENT GUIDES PAGE ========== */
.guides-hero {
  padding: 60px 24px;
  background: var(--bg-warm);
  text-align: center;
}

.guides-hero h1 {
  margin-bottom: 12px;
}

.guides-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.guides-list {
  padding: 60px 24px;
}

.guide-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.guide-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.guide-row.reverse {
  grid-template-columns: 1fr 300px;
}

.guide-row.reverse .guide-row-image {
  order: 2;
}

.guide-row-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-row-content h2 {
  margin-bottom: 12px;
}

.guide-row-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ========== EVENTS LIST ========== */
.events-list {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.events-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 3;
  column-gap: 40px;
}

.events-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  break-inside: avoid;
}

.events-list li:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .events-list ul {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .events-list ul {
    column-count: 1;
  }
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.events-column {
  list-style: none;
}

.events-column li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.events-column li:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .events-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .events-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PAGE HEADER ========== */
.page-header {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-warm);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ========== ABOUT PAGE ========== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ========== FAQ PAGE ========== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 12px;
  color: var(--brand-primary);
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========== WEIRD AUSTIN PAGE ========== */
.weird-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.weird-item {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border);
}

.weird-item:last-child {
  border-bottom: none;
}

.weird-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.weird-item h3 a {
  color: var(--primary);
  text-decoration: underline;
}

.weird-item h3 a:hover {
  color: var(--primary-hover);
}

.weird-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== UTILITY CLASSES ========== */
.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ========== INDEX PAGE SECTIONS ========== */

/* Calendar Showcase */
.calendar-showcase {
  padding: 40px 24px;
  text-align: center;
}

.calendar-showcase img {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Month Gallery */
.month-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.month-item {
  text-align: center;
}

.month-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.month-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* Divider */
.divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 60px auto;
  max-width: 1200px;
}

/* Reviews Section */
.reviews-section {
  padding: 60px 24px;
  background: var(--bg-warm);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-stars {
  color: var(--primary);
  font-size: 18px;
}

.review-item strong {
  font-size: 16px;
  color: var(--text);
}

.review-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.reviews-cta img {
  max-width: 250px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Event Guide Sections */
.event-guide {
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.event-guide.reverse {
  grid-template-columns: 1fr 300px;
}

.event-guide.reverse .event-guide-image {
  order: 2;
}

.event-guide-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-guide-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.event-guide-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reviews-content {
    grid-template-columns: 1fr;
  }

  .event-guide,
  .event-guide.reverse {
    grid-template-columns: 1fr;
  }

  .event-guide.reverse .event-guide-image {
    order: 0;
  }

  .month-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 50px 24px;
  text-align: center;
}

.footer-phone {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-copy {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: flex-start;
    padding: 16px 60px 16px 16px;
  }

  .logo {
    gap: 10px;
    max-width: calc(100% - 50px);
  }

  .logo img {
    height: 36px;
    flex-shrink: 0;
  }

  .logo span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    z-index: 999;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 24px;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid var(--border);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 14px 0;
  }

  nav a::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    max-width: 350px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .carousel-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .carousel-btn {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .buy-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .buy-hero-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .buy-features li {
    text-align: left;
  }

  .buy-buttons {
    justify-content: center;
  }

  .bulk-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bulk-hero-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .bulk-pricing-highlight {
    justify-content: center;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 280px;
    width: 100%;
  }

  .guide-row,
  .guide-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guide-row.reverse .guide-row-image {
    order: 0;
  }

  .guide-row-image {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .spread-section {
    padding: 0 20px 40px;
  }

  .spread-section img {
    max-width: 100%;
    width: 100%;
  }

  .reviews-grid {
    padding: 0;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

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

  .uses-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .charity-content {
    flex-direction: column;
  }
}
