/* mainprod-styles.css - Extracted from mainprod.html for better maintainability */

/* TAN-NIMBUS Font Face - Custom Display Font */
@font-face {
  font-family: 'TAN-NIMBUS';
  src: url('/fonts/TAN-NIMBUS.woff2') format('woff2'),
       url('/fonts/TAN-NIMBUS.woff') format('woff'),
       url('/fonts/TAN-NIMBUS.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Epilogue Font Face - Body Text Font */
@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Epilogue';
  src: url('/fonts/Epilogue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Soul Palette Text Shadow System */
:root {
  --text-shadow-xl: 0 3px 12px rgba(255, 158, 66, 0.4);      /* Hero headings */
  --text-shadow-lg: 0 2px 8px rgba(255, 158, 66, 0.3);       /* Section titles */
  --text-shadow-md: 0 1px 6px rgba(255, 158, 66, 0.25);      /* Card headings */
  --text-shadow-sm: 0 1px 4px rgba(255, 158, 66, 0.2);       /* Small labels */
  --text-shadow-gold: 0 2px 12px rgba(255, 211, 101, 0.5);   /* Gold text extra glow */
}

/* Global Heading Text Shadows */
h1, .name-first, .name-last {
  text-shadow: var(--text-shadow-xl);
}

h2, .experiences-title {
  text-shadow: var(--text-shadow-lg);
}

h3, .track-title {
  text-shadow: var(--text-shadow-md);
}

h4, h5, h6 {
  text-shadow: var(--text-shadow-sm);
}

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

body {
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  color: #fff;
}

.app {
  min-height: 100vh;
  background: #000;
  position: relative;
  padding-top: 80px;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.nav-brand {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #FFD365;
}

/* Homepage */
.homepage {
  background: #000;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.homepage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 211, 101, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 50%, rgba(255, 158, 66, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 158, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.genre-tag {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(255, 211, 101, 0.4);
  animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 211, 101, 0.4); }
  50% { box-shadow: 0 0 50px rgba(255, 211, 101, 0.6); }
}

.title {
  font-family: 'TAN-NIMBUS', sans-serif;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.name-first {
  font-size: 4rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  line-height: 1;
  animation: fadeInUp 1s ease-out;
}

.name-last {
  font-size: 3rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  line-height: 1;
  animation: fadeInUp 1.2s ease-out;
}

.logo-container {
  margin: 3rem 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.logo-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255, 211, 101, 0.4));
  transition: filter 0.5s;
}

.logo-image:hover {
  filter: drop-shadow(0 0 60px rgba(255, 211, 101, 0.8));
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1.4s ease-out;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #FFD365;
  font-style: italic;
  margin-bottom: 2rem;
  animation: fadeInUp 1.6s ease-out;
}

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

/* Featured Section */
.featured-section {
  padding: 80px 2rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 211, 101, 0.05) 50%, transparent 100%);
}

/* Music Player Styles */
.featured-player {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 211, 101, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.featured-player:hover {
  border-color: #FFD365;
  box-shadow: 0 20px 60px rgba(255, 211, 101, 0.3);
  transform: translateY(-5px);
}

.player-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.vinyl-disc {
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle at center, #1a1a1a 25%, #000 25%, #000 35%, #1a1a1a 35%, #1a1a1a 40%, #000 40%),
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%),
    linear-gradient(-45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%);
  background-size: 100% 100%, 20px 20px, 20px 20px;
  border-radius: 50%;
  border: 3px solid #FFD365;
  box-shadow: 0 0 30px rgba(255, 211, 101, 0.4);
  position: relative;
  flex-shrink: 0;
}

.vinyl-disc.spinning {
  animation: vinylSpin 3s linear infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vinyl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track-title {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.8rem;
  color: #FFD365;
  margin: 0 0 8px 0;
}

.track-artist {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  background: rgba(255, 211, 101, 0.2);
  border: 2px solid #FFD365;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.control-btn:hover {
  background: rgba(255, 211, 101, 0.4);
  transform: scale(1.1);
}

.play-pause {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  border: none;
}

.progress-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.time-display {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', monospace;
  min-width: 45px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD365 0%, #FF9E42 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}

.volume-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #FFD365;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #FFD365;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.player-cta {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 211, 101, 0.2);
}

.cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 15px 0;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #FFD365 0%, #FFD365 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 211, 101, 0.4);
  font-size: 0.95rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 211, 101, 0.6);
}

.hidden {
  display: none;
}

/* Experiences Section */
.experiences-section {
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}

.experiences-title {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 211, 101, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.experience-card:hover {
  transform: translateY(-10px);
  border-color: #FFD365;
  box-shadow: 0 20px 60px rgba(255, 211, 101, 0.4);
}

.card-icon {
  font-size: 5rem;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
}

.card-icon-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

/* GSR Card specific styles */
.gsr-card {
  overflow: visible !important;
}

.gsr-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: -30px auto 10px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  clip-path: inset(30px 0 0 0);
  transform: translateY(-30px);
}

.experience-card h3 {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #FFD365;
}

.card-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  min-height: 60px;
  text-align: left;
}

.card-arrow {
  font-size: 2.5rem;
  color: #FFD365;
  opacity: 0.6;
  transition: all 0.3s;
}

.experience-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(10px);
}

.flagship-badge-small {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: flagshipPulse 2s infinite;
}

@keyframes flagshipPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
  }
}

.card-token-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 211, 101, 0.2);
  border: 1px solid #FFD365;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.card-token-badge span {
  font-size: 1.1rem;
  color: #FFD365;
  font-weight: 800;
}

.streaming-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.streaming-icons a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
}

.streaming-icons a:hover {
  transform: scale(1.2);
  background: rgba(255, 211, 101, 0.2);
  border-color: #FFD365;
}

.streaming-icons .icon-spotify,
.streaming-icons .icon-apple-music {
  width: 36px;
  height: 36px;
}

/* Footer */
.homepage-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 211, 101, 0.2);
  padding: 4rem 2rem 2rem;
  margin-top: 120px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand h3 {
  font-family: 'TAN-NIMBUS', sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFD365 0%, #FF9E42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-tagline {
  font-style: italic;
  color: #FFD365;
}

/* Responsive */
@media (max-width: 768px) {
  .player-content {
    flex-direction: column;
    gap: 30px;
  }

  .vinyl-disc {
    width: 140px;
    height: 140px;
  }

  .track-title {
    font-size: 1.4rem;
    text-align: center;
  }

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

  .player-controls {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .progress-section {
    width: 100%;
  }

  .volume-section {
    width: 100%;
    justify-content: center;
  }

  .name-first {
    font-size: 3rem;
  }

  .name-last {
    font-size: 2rem;
  }

  .logo-image {
    width: 200px;
    height: 200px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experiences-title {
    font-size: 2rem;
  }

  .card-icon {
    font-size: 4rem;
    margin: 0 auto 20px;
  }

  .card-icon-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
  }

  .experience-card h3 {
    font-size: 1.5rem;
  }

  .footer-social {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .name-first {
    font-size: 2.5rem;
  }

  .name-last {
    font-size: 1.5rem;
  }

  .featured-player {
    padding: 25px;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}
