/*
Theme Name: Nomad Mediahouse
Theme URI: https://nomadmediahouse.nl
Author: Nomad Mediahouse
Author URI: https://nomadmediahouse.nl
Description: A dark, elegant WordPress theme for Nomad Mediahouse podcast platform. Features gold accents, glassmorphism effects, and responsive design.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nomad-mediahouse
Tags: dark, podcast, responsive, custom-menu, custom-logo, featured-images
*/

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;800&family=Manrope:wght@300;400;600&family=Playfair+Display:wght@400;600;800&display=swap');

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #050505;
  color: #EAE5D5;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.font-subheading {
  font-family: 'Barlow Condensed', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #C6A355;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D4B366;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   GOLDEN GLOW EFFECT
   ============================================ */
.golden-glow {
  box-shadow: 0 0 20px rgba(198, 163, 85, 0.3);
}

.golden-glow:hover {
  box-shadow: 0 0 30px rgba(198, 163, 85, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

/* ============================================
   FLEXBOX UTILITIES
   ============================================ */
.flex {
  display: flex;
}

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

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

.items-start {
  align-items: flex-start;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid {
  display: grid;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* ============================================
   SPACING UTILITIES
   ============================================ */
.pt-20 {
  padding-top: 5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-5xl {
    font-size: 3rem;
  }
  
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  
  .lg\:text-8xl {
    font-size: 6rem;
  }
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-widest {
  letter-spacing: 0.3em;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

.uppercase {
  text-transform: uppercase;
}

.whitespace-pre-line {
  white-space: pre-line;
}

/* ============================================
   COLORS
   ============================================ */
.bg-\[#050505\] {
  background-color: #050505;
}

.bg-\[#0A0A0A\] {
  background-color: #0A0A0A;
}

.bg-\[#0F0F0F\] {
  background-color: #0F0F0F;
}

.bg-\[#1A1A1A\] {
  background-color: #1A1A1A;
}

.bg-\[#2A2A2A\] {
  background-color: #2A2A2A;
}

.bg-\[#C6A355\] {
  background-color: #C6A355;
}

.bg-\[#C6A355\]\/10 {
  background-color: rgba(198, 163, 85, 0.1);
}

.bg-\[#800020\]\/20 {
  background-color: rgba(128, 0, 32, 0.2);
}

.bg-\[#800020\]\/80 {
  background-color: rgba(128, 0, 32, 0.8);
}

.bg-\[#004D40\]\/20 {
  background-color: rgba(0, 77, 64, 0.2);
}

.bg-\[#004D40\]\/80 {
  background-color: rgba(0, 77, 64, 0.8);
}

.bg-\[#1DB954\] {
  background-color: #1DB954;
}

.bg-\[#FF0000\] {
  background-color: #FF0000;
}

.bg-\[#004D40\]\/50 {
  background-color: rgba(0, 77, 64, 0.5);
}

.text-\[#EAE5D5\] {
  color: #EAE5D5;
}

.text-\[#9CA3AF\] {
  color: #9CA3AF;
}

.text-\[#C6A355\] {
  color: #C6A355;
}

.text-\[#800020\] {
  color: #800020;
}

.text-\[#004D40\] {
  color: #004D40;
}

.text-black {
  color: #000000;
}

.text-white {
  color: #FFFFFF;
}

.text-red-500 {
  color: #EF4444;
}

/* ============================================
   BORDERS
   ============================================ */
.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-\[#C6A355\]\/30 {
  border-color: rgba(198, 163, 85, 0.3);
}

.border-\[#800020\]\/30 {
  border-color: rgba(128, 0, 32, 0.3);
}

.border-\[#004D40\]\/30 {
  border-color: rgba(0, 77, 64, 0.3);
}

.border-\[#800020\]\/50 {
  border-color: rgba(128, 0, 32, 0.5);
}

.border-\[#004D40\]\/50 {
  border-color: rgba(0, 77, 64, 0.5);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* ============================================
   WIDTH & HEIGHT
   ============================================ */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-6 {
  width: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-96 {
  width: 24rem;
}

.h-full {
  height: 100%;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-44 {
  height: 11rem;
}

.h-56 {
  height: 14rem;
}

.h-64 {
  height: 16rem;
}

.h-96 {
  height: 24rem;
}

.h-\[40vh\] {
  height: 40vh;
}

.h-\[50vh\] {
  height: 50vh;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-md {
  max-width: 28rem;
}

/* ============================================
   OBJECT FIT
   ============================================ */
.object-cover {
  object-fit: cover;
}

/* ============================================
   GRADIENTS
   ============================================ */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-black\/80 {
  --tw-gradient-from: rgba(0, 0, 0, 0.8);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black\/60 {
  --tw-gradient-to: rgba(0, 0, 0, 0.6);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-\[#050505\] {
  --tw-gradient-to: #050505;
}

.from-black {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black\/50 {
  --tw-gradient-to: rgba(0, 0, 0, 0.5);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* ============================================
   OPACITY & FILTERS
   ============================================ */
.opacity-5 {
  opacity: 0.05;
}

.opacity-80 {
  opacity: 0.8;
}

.grayscale-\[20\%\] {
  filter: grayscale(20%);
}

.grayscale-\[30\%\] {
  filter: grayscale(30%);
}

.blur-\[128px\] {
  filter: blur(128px);
}

.pointer-events-none {
  pointer-events: none;
}

/* ============================================
   TRANSITIONS
   ============================================ */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:gap-4 {
  gap: 1rem;
}

/* ============================================
   LINE CLAMP
   ============================================ */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   RESIZE
   ============================================ */
.resize-none {
  resize: none;
}

/* ============================================
   DISABLED
   ============================================ */
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EAE5D5;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #C6A355;
}

/* Mobile menu */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #C6A355;
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0 30px rgba(198, 163, 85, 0.5);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(198, 163, 85, 0.3);
  color: #C6A355;
}

.btn-outline:hover {
  background-color: rgba(198, 163, 85, 0.1);
  transform: translateY(-0.25rem);
}

.btn-spotify {
  background-color: #1DB954;
  color: #FFFFFF;
}

.btn-spotify:hover {
  transform: translateY(-0.25rem);
}

.btn-youtube {
  background-color: #FF0000;
  color: #FFFFFF;
}

.btn-youtube:hover {
  transform: translateY(-0.25rem);
}

.btn-social {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 0.625rem 1.25rem;
}

.btn-social:hover {
  background-color: #2A2A2A;
  transform: translateY(-0.25rem);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #EAE5D5;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #EAE5D5;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(198, 163, 85, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6B7280;
}

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

/* Message type buttons */
.message-type-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #1A1A1A;
  color: #9CA3AF;
  border: none;
  cursor: pointer;
}

.message-type-btn:hover {
  background-color: #2A2A2A;
}

.message-type-btn.active {
  background-color: #C6A355;
  color: #000000;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.card:hover {
  border-color: rgba(198, 163, 85, 0.3);
}

.podcast-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}

.podcast-card:hover {
  border-color: rgba(128, 0, 32, 0.5);
}

.podcast-card-grinta:hover {
  border-color: rgba(0, 77, 64, 0.5);
}

.podcast-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.podcast-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.7s ease;
}

.podcast-card:hover .podcast-card-image img {
  transform: scale(1.05);
}

.podcast-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.5), transparent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.badge-moral {
  background-color: rgba(128, 0, 32, 0.8);
  color: #FFFFFF;
}

.badge-grinta {
  background-color: rgba(0, 77, 64, 0.8);
  color: #FFFFFF;
}

/* ============================================
   VALUE CARDS
   ============================================ */
.value-card {
  background-color: #0F0F0F;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.5s ease;
}

.value-card:hover {
  border-color: rgba(198, 163, 85, 0.3);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: rgba(198, 163, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A355;
  margin-bottom: 1rem;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAE5D5;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #C6A355;
  background-color: #2A2A2A;
}

.social-icon-large {
  width: 3rem;
  height: 3rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), #050505);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}

.hero-logo {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.hero-logo svg {
  height: 11rem;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(198, 163, 85, 0.5));
}

@media (min-width: 768px) {
  .hero-logo svg {
    height: 14rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo svg {
    height: 16rem;
  }
}

.hero-logo-text {
  margin-top: 1.5rem;
  text-align: center;
}

.hero-logo-nomad {
  color: #C6A355;
  font-size: 1.875rem;
  letter-spacing: 0.5em;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 30px rgba(198, 163, 85, 0.4);
}

@media (min-width: 768px) {
  .hero-logo-nomad {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo-nomad {
    font-size: 3rem;
  }
}

.hero-logo-mediahouse {
  color: #C6A355;
  font-size: 0.875rem;
  letter-spacing: 0.6em;
  margin-top: 0.5rem;
  font-family: 'Manrope', sans-serif;
  text-shadow: 0 0 20px rgba(198, 163, 85, 0.3);
}

@media (min-width: 768px) {
  .hero-logo-mediahouse {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo-mediahouse {
    font-size: 1.125rem;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #EAE5D5;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title span {
  color: #C6A355;
}

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.125rem;
  color: #9CA3AF;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-description {
  color: #EAE5D5;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(198, 163, 85, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: #C6A355;
  border-radius: 9999px;
}

/* ============================================
   PAGE HERO (for subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: 5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  height: 40vh;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  height: 40vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), #050505);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

@media (min-width: 768px) {
  .page-hero-content {
    padding: 5rem 3rem 3rem;
  }
}

.page-hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-hero-label-line {
  width: 3rem;
  height: 0.25rem;
  background-color: #C6A355;
}

.page-hero-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6A355;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #EAE5D5;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 4.5rem;
  }
}

.page-hero-description {
  color: #9CA3AF;
  font-size: 1.125rem;
  max-width: 42rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .page-hero-description {
    font-size: 1.25rem;
  }
}

/* ============================================
   PODCAST SHOWCASE
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6A355;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #EAE5D5;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.cta-bg-pattern::before,
.cta-bg-pattern::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: #C6A355;
  border-radius: 50%;
  filter: blur(128px);
}

.cta-bg-pattern::before {
  top: 0;
  left: 0;
}

.cta-bg-pattern::after {
  bottom: 0;
  right: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}

.footer-watermark svg {
  height: 24rem;
  width: auto;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 5rem 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand svg {
  height: 4rem;
  width: 4rem;
}

.footer-brand-text-nomad {
  color: #C6A355;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  font-family: 'Playfair Display', serif;
}

.footer-brand-text-mediahouse {
  color: #C6A355;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  opacity: 0.8;
}

.footer-description {
  color: #9CA3AF;
  max-width: 28rem;
  line-height: 1.625;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-column-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6A355;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9CA3AF;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-text {
  color: #9CA3AF;
  font-size: 0.875rem;
}

/* ============================================
   PODCAST PAGE
   ============================================ */
.podcast-hero {
  position: relative;
  padding-top: 5rem;
  min-height: 100vh;
}

.podcast-hero-bg {
  position: absolute;
  inset: 0;
}

.podcast-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.podcast-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), #050505);
}

.podcast-hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

@media (min-width: 768px) {
  .podcast-hero-content {
    padding: 5rem 3rem 3rem;
  }
}

.podcast-logo {
  margin-bottom: 2rem;
}

.podcast-logo img {
  height: 14rem;
  width: auto;
}

@media (min-width: 768px) {
  .podcast-logo img {
    height: 18rem;
  }
}

@media (min-width: 1024px) {
  .podcast-logo img {
    height: 24rem;
  }
}

.podcast-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .podcast-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .podcast-title {
    font-size: 4.5rem;
  }
}

.podcast-description {
  color: #9CA3AF;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .podcast-description {
    font-size: 1.25rem;
  }
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.podcast-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.podcast-about {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .podcast-about {
    padding: 5rem 3rem;
  }
}

.podcast-about-card {
  background-color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .podcast-about-card {
    padding: 3rem;
  }
}

.podcast-about-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #EAE5D5;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .podcast-about-title {
    font-size: 1.875rem;
  }
}

.podcast-about-text {
  color: #9CA3AF;
  line-height: 1.625;
  white-space: pre-line;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading-container {
  min-height: 100vh;
  background-color: #050505;
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-text {
  color: #C6A355;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message {
  background-color: rgba(0, 77, 64, 0.2);
  border: 1px solid rgba(0, 77, 64, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.success-icon {
  color: #004D40;
  margin: 0 auto 1rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #EAE5D5;
  margin-bottom: 0.5rem;
}

.success-text {
  color: #9CA3AF;
}

.success-reset {
  margin-top: 1.5rem;
  color: #C6A355;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(198, 163, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: #C6A355;
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #EAE5D5;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: #9CA3AF;
}

.contact-info-text a {
  color: #9CA3AF;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #C6A355;
}

.guest-info {
  background-color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 3rem;
}

.guest-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #EAE5D5;
  margin-bottom: 1rem;
}

.guest-info-text {
  color: #9CA3AF;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.guest-info-list {
  list-style: none;
  color: #9CA3AF;
  font-size: 0.875rem;
}

.guest-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.guest-info-list li::before {
  content: '•';
  color: #C6A355;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav-fixed,
  .scroll-indicator,
  .footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
