:root {
  --bg-color: #f0f0f0;
  /* Light gray background */
  --header-bg: #111111;
  --text-primary: #333333;
  --text-light: #cccccc;
  --accent-blue: #0099ff;
  /* Approximate blue for icons/links */
  --logo-bg: #ffffff;
  --logo-text: #000000;
  --font-main: "Roboto", sans-serif;
  --max-width: 1200px;
  /* Constrain content width */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
}

/* HEADER */
.main-header {
  background-color: var(--header-bg);
  color: white;
  height: 70px;
  display: flex;
  align-items: center;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden; /* ADD THIS */
}

.header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  gap: 12px; /* Increased gap for better balance */
  min-width: 0; /* ADD THIS */
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 160px; /* ADD THIS */
  object-fit: contain; /* ADD THIS */
  min-width: 0; /* ADD THIS */
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-blue);
}

.main-nav i {
  font-size: 14px;
}

.main-header img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.header-container,
.logo-nav,
.logo {
  overflow: hidden;
}
.logo {
  flex-shrink: 1;
}

/* Auth nav styles removed */

/* HERO SECTION */
.hero-section {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-banner-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  /* background-color: #000; Removed for clean alignment */
  position: relative;
  padding: 0 20px;
  display: grid;
  grid-template-areas: "hero";
}

.hero-banner-image {
  grid-area: hero;
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-banner-image.active {
  opacity: 1;
  z-index: 1;
}

/* Filter Bar */
.filter-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 0;
  background: white;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.filter-option i {
  color: var(--accent-blue);
}

.location-filter select {
  border: none;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  outline: none;
}

.location-filter select:hover {
  color: var(--accent-blue);
}

.hidden-card {
  display: none !important;
}

.hidden-section {
  display: none !important;
}

/* MAIN CONTENT */
.main-content {
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 0 20px;
}

.content-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-count {
  font-size: 14px;
  color: #888;
  font-weight: 300;
}

/* Card Grids */
.cards-grid {
  display: grid;
  gap: 20px;
  position: relative;
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* For wider cards like Sitcoms/Late Shows */
.cols-2-wide {
  grid-template-columns: repeat(2, 1fr);
}

/* For 5 items like NY Daytime */
.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Generic Fallback */
.cards-grid:not([class*="cols-"]) {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.show-card {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

/* Standard ratio */
.show-card {
  aspect-ratio: 16/9;
}

/* Wide ratio override */
.wide-card {
  aspect-ratio: 21/7;
  /* Wider aspect ratio for banners */
}

/* Portrait ratio for guests */
.guest-card {
  aspect-ratio: 3/4;
}

/* Round images for guests? No, they are rects in screenshot. */
/* Guest name overlay */
.guest-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.show-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.2s;
}

.show-card:hover img {
  opacity: 1;
}

.location-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 3px 6px;
  font-size: 10px;
  line-height: 1;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Footer Styles */
.main-footer {
  background-color: #111;
  color: #888;
  padding: 60px 20px 40px;
  font-size: 12px;
  margin-top: 60px;
  border-top: 1px solid #222;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Align top for better stacking */
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 24px;
  font-size: 18px;
  color: #ccc;
}

.social-icons i {
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
}

.social-icons i:hover {
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  /* Slight alignment adjustment */
}

.copyright {
  color: #555;
  font-size: 11px;
}

/* Styled Accessibility Badge */
.a-plus-badge {
  border: 1px solid #444;
  padding: 3px 6px;
  font-size: 10px;
  color: #777;
  border-radius: 2px;
  font-weight: 700;
  cursor: help;
  transition: all 0.2s;
}

.a-plus-badge:hover {
  border-color: #666;
  color: #aaa;
}

/* CELEBS PAGE STYLES */
.celebs-page {
  padding-top: 20px;
}

.celebs-header {
  margin-bottom: 30px;
}

.page-title {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.celebs-grid-section {
  margin-bottom: 40px;
}

.celebs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.celeb-card {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  aspect-ratio: 1/1;
}

.celeb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.celeb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.2s;
}

.celeb-card:hover img {
  opacity: 1;
}

.celeb-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 8px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.7) 60%,
    transparent
  );
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* SHOW DETAIL PAGE STYLES */
.show-detail-page {
  background-color: #1a1a1a;
}

.show-detail-page .main-content {
  background-color: white;
  margin: 0;
  max-width: 100%;
  padding: 0;
}

/* Hero Banner */
.show-hero {
  background-color: transparent;
  position: relative;
}

.show-hero-image {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.show-hero-image img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure full image is visible */
  opacity: 1;
}

.star-search-hero img {
  opacity: 1;
}

.star-search-hero {
  max-width: 100%;
  padding: 0;
  min-height: auto;
}

.star-search-hero img {
  position: relative;
  /* Overriding absolute to allow aspect-ratio to work or just use height */
  opacity: 1;
  display: block;
}

.show-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 40px 20px;
}

.show-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #d4af77;
}

.show-credits {
  font-size: 14px;
  line-height: 1.6;
}

.credits-label {
  color: #d4af77;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
}

.credits-names {
  color: white;
  font-weight: 400;
  margin-bottom: 3px;
}

.hero-arrow-right {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 3;
}

.hero-arrow-right:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Tab Navigation */
.show-tabs {
  background-color: #d4af77;
}

.show-tabs-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
}

.tab-button {
  background: transparent;
  border: none;
  color: #333;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-main);
}

.tab-button.active {
  background: rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Show Content */
.show-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 20px;
  background: white;
}

/* Calendar Section */
.calendar-section {
  margin-bottom: 40px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-title {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-actions {
  display: flex;
  gap: 15px;
}

.action-icon {
  background: transparent;
  border: none;
  color: var(--accent-blue);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.action-icon:hover {
  color: #0077cc;
}

/* Date Selector */
.date-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.date-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px 20px;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
}

.date-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.date-card.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
}

.date-month {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 5px;
  color: inherit;
}

.date-day {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: inherit;
}

.date-weekday {
  font-size: 11px;
  font-weight: 400;
  color: inherit;
}

/* Show Listing */
.show-listing {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.listing-left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.listing-image {
  width: 100%;
  max-width: 180px; /* Cap width but allow shrinking */
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.listing-info {
  flex: 1;
}

.listing-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.listing-type {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.listing-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.listing-details p {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.listing-details i {
  color: #888;
  width: 16px;
}

.listing-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.age-notice {
  font-size: 12px;
  color: #666;
  max-width: 250px;
  line-height: 1.5;
}

.request-tickets-btn {
  background: #d4af77;
  border: none;
  color: #333;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.request-tickets-btn:hover {
  background: #c49d65;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 119, 0.3);
}

/* About Section */
.about-section {
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.about-title {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.about-content {
  max-width: 800px;
  line-height: 1.6;
}

.about-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE DESIGN */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .cols-6,
  .cols-5 {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .celebs-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* .show-hero-image min-height removed to allow responsive scaling */

  .show-title {
    font-size: 36px;
  }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
    gap: 10px;
  }

  .main-header {
    height: auto;
    position: relative;
    /* Unstick on mobile if content is tall */
  }

  .logo-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    /* Space for scrollbar */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .auth-nav {
    width: 100%;
    justify-content: flex-end;
    padding-top: 5px;
    border-top: 1px solid #333;
  }

  .hero-banner {
    height: 200px;
  }

  .exclusive-text {
    font-size: 18px;
  }

  .experiences-text {
    font-size: 28px;
  }

  /* Grids */
  .cols-6,
  .cols-5,
  .cols-4,
  .cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Wide cards can sit 1 per row or 2 small ones? Let's go 1 per row for wide cards to maintain text readability if any */
  .cols-2-wide {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: 20px;
    font-size: 12px;
  }

  .footer-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .celebs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Star Search Specific Responsive */
  /* .show-hero-image min-height removed */

  .show-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .show-listing {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: left;
  }

  .listing-right {
    text-align: left;
    align-items: flex-start;
  }

  .request-tickets-btn {
    width: 100%;
  }

  .age-notice {
    max-width: 100%;
    margin-bottom: 5px;
  }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
  .cols-6,
  .cols-5,
  .cols-4,
  .cols-3,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Keep guests as 2 columns on small mobile because they are vertical and narrow? 
       Actually 1 column is safer for "exact looking" quality, but 2 might look better for guests. 
       Let's stick to 1 column for consistency with standard behavior. */

  .hero-banner {
    height: 160px;
  }

  .ticket-graphic {
    padding: 15px 20px;
  }

  .experiences-text {
    font-size: 24px;
  }

  .filter-bar {
    justify-content: space-around;
    gap: 10px;
  }

  .listing-left {
    flex-direction: column;
    gap: 15px;
  }

  .listing-image {
    width: 100%;
    max-width: 200px;
  }

  .show-tabs-container {
    padding: 0 10px;
  }

  .tab-button {
    padding: 10px 15px;
    font-size: 11px;
  }
}


.submit-btn {
  width: 100%;
  background-color: var(--accent-blue);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.submit-btn:hover {
  background-color: #0077cc;
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Responsive adjustments for show listing button */
@media (max-width: 768px) {
  .show-listing {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .listing-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== CALENDAR PAGE STYLES ===== */

/* Calendar Hero */
.calendar-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.calendar-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-hero-content h1 i {
  color: var(--accent-blue);
}

.calendar-hero-content p {
  font-size: 18px;
  color: #ccc;
  font-weight: 300;
}

/* Calendar Filters */
.calendar-filters {
  background-color: white;
  padding: 25px 20px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 50px;
  z-index: 100;
}

.calendar-filters-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-group label i {
  color: var(--accent-blue);
}

.filter-group select {
  padding: 8px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-group select:hover {
  border-color: var(--accent-blue);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
}

/* Calendar Section */
.calendar-section {
  padding: 40px 20px;
  background-color: var(--bg-color);
}

.calendar-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* Calendar Card */
.calendar-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.calendar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.calendar-card-date {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0077cc 100%);
  color: white;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-month {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.date-day {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.date-weekday {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.calendar-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.calendar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calendar-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.calendar-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.calendar-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  flex: 1;
}

.calendar-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.calendar-detail i {
  color: var(--accent-blue);
  width: 16px;
}

.calendar-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--accent-blue);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.calendar-card-btn:hover {
  background-color: #0077cc;
  transform: translateY(-1px);
}

.calendar-card-btn:active {
  transform: translateY(0);
}

/* Responsive Calendar */
@media (max-width: 768px) {
  .calendar-hero-content h1 {
    font-size: 32px;
  }

  .calendar-filters-container {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-group select {
    width: 100%;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.services-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.services-hero-content h1 i {
  color: #ffd700;
}

.services-hero-content p {
  font-size: 18px;
  color: #ccc;
  font-weight: 300;
}

/* Services Info Section */
.other-show-input-container {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.other-show-input-container label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.other-show-input-container input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.other-show-input-container input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.15);
}

.other-checkbox-label {
  background: rgba(0, 153, 255, 0.1) !important;
  border-color: rgba(0, 153, 255, 0.3) !important;
}

.services-info {
  background-color: white;
  padding: 50px 20px;
}

.services-info-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.info-card {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 48px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Services Form Section */
.services-form-section {
  background-color: var(--bg-color);
  padding: 60px 20px;
}

.services-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 16px;
  color: #666;
}

.services-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent-blue);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.checkbox-label:hover {
  background-color: #e8f4ff;
  border-color: var(--accent-blue);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-blue);
}

.checkbox-label input[type="checkbox"]:checked + span {
  color: var(--accent-blue);
  font-weight: 600;
}

.checkbox-label:has(input:checked) {
  background-color: #e8f4ff;
  border-color: var(--accent-blue);
}

/* Error Message */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

/* Submit Button */
.services-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0077cc 100%);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.services-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 153, 255, 0.3);
}

.services-submit-btn:active {
  transform: translateY(0);
}

/* Step Styles */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Navigation Buttons */
.step-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.step-navigation button {
  flex: 1;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.next-btn {
  background: var(--accent-blue);
  color: white;
  border: none;
}

.next-btn:hover {
  background: #0077cc;
  transform: translateY(-2px);
}

.prev-btn {
  background: #f0f0f0;
  color: #555;
  border: 1px solid #ddd;
}

.prev-btn:hover {
  background: #e8e8e8;
  color: #333;
}

.services-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Form Messages */
.form-message {
  display: none;
  margin-top: 30px;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
}

.form-message.error {
  background-color: #f8d7da;
  border: 2px solid #dc3545;
  color: #721c24;
}

.form-message i {
  font-size: 48px;
  margin-bottom: 15px;
}

.form-message.success i {
  color: #28a745;
}

.form-message.error i {
  color: #dc3545;
}

.form-message h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-message p {
  font-size: 15px;
  line-height: 1.6;
}

.form-message a {
  color: inherit;
  text-decoration: underline;
}

/* Responsive Services */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 32px;
  }

  .services-form-container {
    padding: 0 10px;
  }

  .services-form {
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid #eee; /* Add subtle border for better definition */
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL RESPONSIVENESS */
@media screen and (max-width: 1024px) {
  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --max-width: 100%;
  }

  .main-header {
    height: auto;
    padding: 10px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .logo-nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .logo {
    font-size: 20px; /* Slightly larger on mobile */
    width: 100%;
    justify-content: center;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .hero-banner-wrapper {
    padding: 0; /* Edge-to-edge banners on mobile */
  }

  .hero-banner-image {
    max-height: none; /* Allow image to scale naturally */
    aspect-ratio: auto;
  }

  .filter-bar {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cols-3,
  .cols-4,
  .cols-5,
  .cols-6,
  .cols-2-wide {
    grid-template-columns: 1fr;
  }

  /* Prevent Other Show input overflow */
  .other-show-input-container input {
    width: 100%;
    box-sizing: border-box;
  }

  .show-listing {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .listing-left {
    flex-direction: column;
  }

  .listing-image {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
  }

  /* Celebs Grid */
  .celebs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .hero-banner-image {
    max-height: none;
  }

  .show-title {
    font-size: 32px;
  }

  .date-selector {
    gap: 10px;
  }

  .date-card {
    min-width: 60px;
    padding: 10px;
  }

  .date-day {
    font-size: 20px;
  }
}
