/*
  Coach Tonya - Portfolio & Brand Site
  Clean white theme with gold accents
*/

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-tertiary: #eeeeee;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --accent-gold: #c9a227;
  --accent-gold-light: #e6c84a;
  --accent-copper: #b87333;
  --border-subtle: #e0e0e0;
  --border-gold: #d4b050;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold-light);
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-links a.active {
  color: var(--accent-gold);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(232, 115, 10, 0.5);
  color: var(--accent-gold);
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  position: relative;
  background: var(--bg-primary);
}


.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero .tagline {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.cta-button:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.cta-button.primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.cta-button.primary:hover {
  background: var(--accent-gold-light);
}

/* Sections */
section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--accent-gold);
  opacity: 0.3;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  filter: grayscale(30%);
  transition: filter 0.5s ease;
}

.about-image img:hover {
  filter: grayscale(0%);
}

.about-content h3 {
  margin-top: 2rem;
}

.about-content h3:first-of-type {
  margin-top: 0;
}

.about-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(232, 115, 10, 0.5);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: rgba(232, 115, 10, 0.72);
  box-shadow: 0 0 0 1px rgba(232, 115, 10, 0.35);
  color: var(--accent-gold);
}

/* Achievements Section */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(232, 115, 10, 0.5);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(232, 115, 10, 0.75);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  border-color: rgba(232, 115, 10, 0.72);
  box-shadow: 0 0 0 1px rgba(232, 115, 10, 0.35), 0 6px 20px rgba(232, 115, 10, 0.08);
  transform: translateY(-5px);
}

.achievement-card:hover::before {
  transform: scaleY(1);
}

.achievement-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.achievement-card .date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

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

.achievement-card .link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(232, 115, 10, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(232, 115, 10, 0.75);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.project-card:hover {
  border-color: rgba(232, 115, 10, 0.72);
  box-shadow: 0 0 0 1px rgba(232, 115, 10, 0.35), 0 6px 20px rgba(232, 115, 10, 0.08);
  transform: translateY(-5px);
}

.project-card:hover::before {
  transform: scaleY(1);
}

.project-content {
  padding: 2rem;
}

.project-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.project-card .source {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Marketplace Section */
.marketplace-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
}

.marketplace-hero h2 {
  margin-bottom: 1rem;
}

.marketplace-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-item {
  display: flex;
}

.product-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(232, 115, 10, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-card:hover {
  border-color: rgba(232, 115, 10, 0.72);
  box-shadow: 0 0 0 1px rgba(232, 115, 10, 0.35), 0 6px 20px rgba(232, 115, 10, 0.08);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-no-image {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 1rem;
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-info .description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-info .description.expanded {
  display: block;
  overflow: visible;
}

.desc-toggle-btn {
  background: transparent;
  border: none;
  color: var(--accent-gold);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  margin-bottom: 1rem;
  text-align: left;
}

.product-info .price {
  margin-top: auto;
}

.word-count-display {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.25rem;
}

.word-count-display.over-limit {
  color: #e74c3c;
  font-weight: bold;
}

.product-info .price {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.buy-button {
  width: 100%;
  padding: 1rem;
  background: var(--accent-gold);
  border: none;
  color: var(--bg-primary);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: var(--accent-gold-light);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.contact-details strong {
  color: var(--text-primary);
}

.contact-form {
  background: var(--bg-secondary);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

#contactForm .form-group label::after,
#bookingForm .form-group label::after {
  content: ' *';
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(220, 100, 20, 0.25);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8730a;
  box-shadow: 0 0 0 3px rgba(232, 115, 10, 0.15);
}

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

.submit-button {
  padding: 1rem 2rem;
  background: var(--accent-gold);
  border: none;
  color: var(--bg-primary);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--accent-gold-light);
}

/* Footer — kept dark intentionally, do not change to use theme variables */
footer {
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  padding: 3rem;
  text-align: center;
}

footer p {
  color: #6b6860;
  font-size: 0.85rem;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .social-links a {
  color: #a8a5a0;
  font-size: 0.9rem;
}

footer .social-links a:hover {
  color: #c9a227;
}

/* Success Page */
.success-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-container h1 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.success-container p {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  nav {
    padding: 0.4rem 1.5rem;
  }

  /* Show hamburger, hide it expanding */
  .nav-toggle {
    display: flex;
  }

  /* Nav links hidden until menu is opened */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0.5rem;
  }

  /* Allow nav to wrap only when open */
  nav.nav-open {
    flex-wrap: wrap;
  }

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

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 5rem;
    justify-content: center;
  }

  section {
    padding: 4rem 1.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 250px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .projects-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

.achievement-card,
.project-card,
.product-card {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }

/* Resources Page */
.resources-status {
  max-width: 700px;
  margin: 0 auto;
}

.status-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  text-align: center;
}

.status-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.drive-folder-link {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  text-decoration: none;
  padding: 0.35rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.drive-folder-link:hover {
  transform: scale(1.15);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(232, 115, 10, 0.2);
  cursor: pointer;
}

.status-note {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
}

.coming-soon-label {
  color: var(--accent-gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* On Air & Upcoming Page */
.calendar-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Calendar Widget */
.calendar-widget {
  background: var(--bg-secondary);
  border: 1px solid rgba(232, 115, 10, 0.5);
  max-width: 100%;
  margin: 0 auto;
  padding: 1.75rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin: 0;
  font-family: 'Georgia', serif;
}

.cal-nav {
  background: transparent;
  border: 1px solid rgba(232, 115, 10, 0.4);
  color: var(--accent-gold);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cal-nav:hover {
  border-color: rgba(232, 115, 10, 0.8);
  background: rgba(232, 115, 10, 0.08);
  box-shadow: 0 0 0 1px rgba(232, 115, 10, 0.25);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-primary);
  cursor: default;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.cal-day.other-month {
  color: var(--text-muted);
  opacity: 0.35;
}

.cal-day.today {
  background: rgba(232, 115, 10, 0.12);
  border-color: rgba(232, 115, 10, 0.6);
  color: #e8730a;
  font-weight: bold;
}

.cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 5px;
  height: 5px;
  background: rgba(232, 115, 10, 0.85);
  border-radius: 50%;
}

.cal-day.has-event {
  cursor: pointer;
}

.cal-day.has-event:hover {
  background: rgba(232, 115, 10, 0.08);
  border-color: rgba(232, 115, 10, 0.4);
}

/* Hover tooltip */
.cal-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  border: 1px solid rgba(232, 115, 10, 0.65);
  padding: 0.7rem 0.9rem;
  min-width: 200px;
  max-width: 280px;
  z-index: 400;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  white-space: nowrap;
}

.cal-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(232, 115, 10, 0.65);
}

.cal-day.has-event:hover .cal-tooltip {
  display: block;
}

.cal-tooltip-event {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cal-tooltip-event:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cal-tooltip-title {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--text-primary);
  white-space: normal;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.cal-tooltip-time {
  font-size: 0.78rem;
  color: #e8730a;
  margin-bottom: 0.15rem;
}

.cal-tooltip-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: normal;
}

.cal-events-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.cal-events-list h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cal-event-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.cal-event-date {
  min-width: 46px;
  text-align: center;
  background: rgba(232, 115, 10, 0.08);
  border: 1px solid rgba(232, 115, 10, 0.3);
  padding: 0.35rem 0.4rem;
  flex-shrink: 0;
}

.cal-event-date .ev-day {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  color: #e8730a;
  line-height: 1;
}

.cal-event-date .ev-month {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 2px;
}

.cal-event-info h5 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.cal-event-info .ev-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cal-no-events {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.75rem 0 0;
  font-style: italic;
}

.cal-book-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.cal-book-cta .cta-button {
  padding: 1.1rem 3.5rem;
  font-size: 1rem;
}

/* CAPTCHA row */
.captcha-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 1rem;
  background: var(--bg-secondary);
  flex: 1;
  min-width: 210px;
}

.captcha-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

.captcha-question {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.captcha-input {
  width: 58px;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border-subtle);
  border-bottom: 2px solid var(--accent-gold);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  text-align: center;
  font-family: 'Georgia', serif;
  outline: none;
  transition: border-color 0.2s;
}

.captcha-input:focus {
  border-bottom-color: var(--accent-gold-light);
}

.stream-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.stream-embed-container {
  width: 100%;
}

.stream-embed-placeholder {
  background: #1a1a1a;
  border: 1px solid #333333;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-offline-message {
  text-align: center;
  padding: 2rem;
}

.stream-offline-message p {
  color: #a8a5a0;
}

.offline-indicator {
  display: block;
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.podcast-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.podcast-actions {
  margin: 2rem 0 1.5rem;
}

.podcast-platform-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.podcast-platforms {
  margin-top: 1.5rem;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.platform-badge {
  padding: 0.35rem 0.8rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.qr-code-container {
  text-align: center;
}

.qr-placeholder-box {
  width: 180px;
  height: 180px;
  border: 2px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--bg-secondary);
}

.qr-inner p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.qr-caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stream-section,
  .podcast-section {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   MARKETPLACE FILTER & TAGS
   =========================== */

.filter-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.6rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
}

.product-item {
  /* wrapper used by filter JS */
}

.product-category-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
}

/* ── History Timeline ─────────────────────────────────────────────────── */
.history-timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  position: relative;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 2.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-marker {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-primary);
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.timeline-year {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.6rem;
}

.timeline-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  max-width: 500px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 52px;
    max-width: 280px;
  }

  .history-timeline::before {
    left: 1.5rem;
  }
}

