/* ODG Music Label — Site Styles */
/* Dark Premium Aesthetic */

:root {
  --bg-primary: #0D0D10;
  --bg-secondary: #161620;
  --bg-card: #1c1c26;
  --accent-red: #c02020;
  --accent-red-bright: #e03030;
  --accent-gold: #b8b0b0;
  --accent-gold-bright: #d0c8c8;
  --text-primary: #E8E8E8;
  --text-secondary: #a0a0a8;
  --text-muted: #6a6a74;
  --border: #2a2a3a;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 6, 4, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--accent-red);
  color: var(--text-primary) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-red-bright);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Sections */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(192, 32, 32, 0.12) 0%, transparent 60%);
  z-index: 0;
}

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

.hero-logo {
  max-width: 400px;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-princess-logo {
  max-width: 300px;
  width: 100%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(184, 176, 176, 0.25));
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent-red);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 32, 32, 0.3);
}

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

.btn-gold:hover {
  background: var(--accent-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 176, 176, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-dark .section-dark-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.section-link {
  display: inline-block;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: var(--accent-gold-bright);
}

/* Featured Artist Section */
.featured-artist {
  text-align: center;
}

.featured-artist-logo {
  max-width: 280px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 20px rgba(184, 176, 176, 0.15));
}

/* Album Display */
.album-display {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.album-cover {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(192, 32, 32, 0.3), 0 0 40px rgba(184, 176, 176, 0.08);
}

.album-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.album-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.album-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.tracklist {
  list-style: none;
  margin: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.tracklist li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
}

.tracklist li span {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Credits */
.credits {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.credits h3 {
  margin-bottom: 1.5rem;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.credit-item {
  margin-bottom: 0;
}

.credit-item label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.credit-item strong {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.team-member h4 {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

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

.contact-info {
  text-align: center;
  margin: 3rem 0;
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 1.1rem;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 2rem 0;
}

.coming-soon h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.coming-soon p {
  color: var(--text-secondary);
}

/* Video Section */
.video-section {
  text-align: center;
}

.video-placeholder {
  max-width: 700px;
  margin: 2rem auto;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.video-play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--accent-red-bright);
}

.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--text-primary);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-social a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent-gold);
}

.footer-tagline {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .album-display {
    flex-direction: column;
  }

  .album-cover {
    max-width: 300px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 5rem 1.5rem 2rem;
  }
}

/* Smooth fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
