/* The Show Curator - Cinematic Monochrome Design System */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --black: #000000;
  --white: #FFFFFF;
  --grey-950: #0A0A0A;
  --grey-900: #111111;
  --grey-800: #1C1C1C;
  --grey-700: #2E2E2E;
  --grey-500: #666666;
  --grey-300: #AAAAAA;
  --grey-100: #EEEEEE;
  --accent: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --border: #2E2E2E;
  --border-hover: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Courier Prime', monospace;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  cursor: none;
}

/* Custom Cursor Elements */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-500);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.08s ease-out, border-color 0.2s;
}

/* Cursor hover states */
.cursor-hover .custom-cursor {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--white);
}
.cursor-hover .custom-cursor-outline {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: var(--white);
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
}

/* Structure & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Numbering and Headers */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
}

/* Navigation bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: var(--transition-smooth);
}

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

.logo-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo-subtext {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey-500);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav-menu {
  display: none !important;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--grey-300);
  position: relative;
  padding: 5px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  width: 100%;
}

/* Hamburger menu button */
.hamburger {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: none;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

/* Dropdown navigation menu */
.mobile-nav-overlay {
  position: fixed;
  top: 86px;
  right: 24px;
  width: 280px;
  height: auto;
  max-height: calc(100vh - 100px);
  background-color: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 30px 20px;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mobile-nav-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--grey-300);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--white);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.text-editorial-italic {
  font-family: var(--font-display);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  border-radius: 4px;
  text-transform: uppercase;
  border: 1px solid var(--white);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
  transform: scale(1.03);
}

.btn-inverted {
  background-color: var(--white);
  color: var(--black);
}

.btn-inverted:hover {
  background-color: transparent;
  color: var(--white);
  transform: scale(1.03);
}

/* Cards System */
.card-grid {
  display: grid;
  gap: 30px;
}

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

.card {
  background-color: var(--grey-900);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-500);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
}

.card-description {
  font-size: 0.95rem;
  color: var(--grey-300);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.card-fee {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.card-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1.5px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.card:hover .card-link {
  border-bottom-color: var(--white);
}

/* Minimalist Search Page overrides (Pivot Specific) */
.search-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px;
}

.search-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 40px;
  font-weight: 400;
}

.search-form-wrapper {
  width: 100%;
  max-width: 700px;
  position: relative;
  margin-bottom: 30px;
}

.search-input-giant {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  color: var(--white);
  padding: 16px 20px 16px 50px;
  font-size: 1.8rem;
  outline: none;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.search-input-giant:focus {
  border-bottom-color: var(--white);
}

.search-icon-inside {
  position: absolute;
  left: 10px;
  top: 52%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--grey-500);
  pointer-events: none;
}

.search-examples-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 650px;
  margin-top: 20px;
}

.search-example-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-300);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.search-example-pill:hover {
  border-color: var(--white);
  color: var(--white);
  transform: scale(1.05);
}

/* Tabbed Results System */
.tab-container {
  margin-top: 40px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--grey-500);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  padding: 5px 10px;
  position: relative;
  transition: var(--transition-smooth);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.tab-btn.active {
  color: var(--white);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Profile Detail Layouts */
.profile-hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  margin-top: 40px;
}

.profile-avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar-mock {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background-color: var(--grey-950);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.profile-avatar-mock::after {
  content: "THE SHOW CURATOR";
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--grey-700);
  position: absolute;
  bottom: 20px;
}

.profile-avatar-icon {
  width: 80px;
  height: 80px;
  stroke: var(--grey-500);
}

/* Video embed container (16:9 ratio) */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--grey-950);
  margin-top: 30px;
  border-radius: 4px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Accordion FAQs */
.accordion {
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-align: left;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--grey-500);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-body-content {
  padding-bottom: 20px;
}

/* Modal Booking Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--black);
  border: 1px solid var(--white);
  width: 100%;
  max-width: 600px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--grey-500);
  font-size: 2rem;
  line-height: 0.5;
  cursor: none;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--white);
}

/* Detail Specs List details */
.detail-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.detail-tag-item {
  padding: 6px 14px;
  border: 1px solid var(--border);
  background-color: var(--grey-900);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-300);
  border-radius: 4px;
}

/* Form Styles Override */
.form-group {
  margin-bottom: 30px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 10px 0;
  font-size: 1.05rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-bottom-color: var(--white);
}

/* Footer & Other Standard Elements */
.footer {
  background-color: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.footer-link {
  color: var(--grey-500);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--white);
}

.footer-text {
  color: var(--grey-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-500);
}

.flash-messages {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  pointer-events: none;
}

.flash-banner {
  background-color: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

.fade-up {
  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness overrides */
@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .tab-nav {
    gap: 15px;
  }
  .tab-btn {
    font-size: 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col:last-child {
    grid-column: span 1;
  }
  body {
    cursor: default;
  }
  .custom-cursor, .custom-cursor-outline {
    display: none;
  }
}

@media (max-width: 576px) {
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
}

.search-example-pill.active {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

/* Light Theme Variables */
[data-theme="light"] {
  --black: #FFFFFF;
  --white: #000000;
  --grey-950: #F5F5F5;
  --grey-900: #EEEEEE;
  --grey-800: #E0E0E0;
  --grey-700: #CCCCCC;
  --grey-500: #888888;
  --grey-300: #555555;
  --grey-100: #111111;
  --accent: #000000;
  --text-primary: #000000;
  --text-secondary: #555555;
  --border: #E0E0E0;
  --border-hover: #000000;
}

[data-theme="light"] .navbar {
  background-color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .noise-overlay {
  opacity: 0.03;
}

/* Theme Switch Toggle */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}
.theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 1px solid var(--white);
  transition: .4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: .4s;
  z-index: 2;
}
input:checked + .slider {
  background-color: transparent;
  border-color: var(--white);
}
input:checked + .slider:before {
  transform: translateX(30px);
  background-color: var(--white);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.sun-icon, .moon-icon {
  width: 14px;
  height: 14px;
  color: var(--white);
  z-index: 1;
}
