/* Soulmate Official - Main Styles */

:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --accent: #c9a227;
  --accent-hover: #e0b830;
  --border-color: #333333;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.hero .logo-large {
  max-width: 400px;
  width: 80%;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

.hero .press-image {
  max-width: 600px;
  width: 90%;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Page Headers (Gallery, Cast, Reviews) */
.hero.page-header {
  min-height: auto;
  padding: 120px 20px 40px;
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--bg-section);
}

section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Creative Team */
.creative-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.creative-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.creative-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.creative-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.creative-card .instagram {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.creative-card .instagram:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-slide blockquote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-slide cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Performers */
.performers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.performer-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.performer-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
}

.performer-card .info {
  padding: 25px;
}

.performer-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.performer-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.performer-card .instagram {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
}

/* Producer Quotes */
.producer-quotes {
  max-width: 800px;
  margin: 0 auto;
}

.producer-quote {
  padding: 40px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.producer-quote blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.producer-quote cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* Press Logos */
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.press-logos img {
  height: 50px;
  width: auto;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.press-logos img:hover {
  filter: none;
  opacity: 1;
}

.press-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.press-logos a:hover {
  transform: scale(1.05);
}

.press-logos img.press-logo-large {
  height: 80px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Podcast Grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.podcast-embed {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
}

.podcast-embed iframe {
  display: block;
}

/* Poster Gallery */
.poster-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.poster-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-section .btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-section .btn:hover {
  background: var(--accent-hover);
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

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

footer .social-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* Produced By */
.produced-by {
  text-align: center;
  padding: 25px 0 50px;
}

.producer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 10px;
}

.producer-logos a {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.producer-logos a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.producer-logos img {
  max-width: 420px;
  height: auto;
  filter: invert(1);
}

.producer-social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.producer-social h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.producer-social .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.producer-social .social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.producer-social .social-links a:hover {
  color: var(--accent);
}

.producer-social .investment-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.producer-social .btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.producer-social .btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero .tagline {
    font-size: 1rem;
  }

  .creative-card {
    grid-template-columns: 1fr;
  }

  .creative-card img {
    max-width: 300px;
    margin: 0 auto;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .testimonials-grid,
  .performers-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img {
    height: 150px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .poster-gallery {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    flex-direction: column;
    gap: 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .testimonials-slider .slider-btn.prev,
  .testimonials-slider .slider-btn.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .testimonials-slider .slider-btn.prev {
    left: -10px;
  }

  .testimonials-slider .slider-btn.next {
    right: -10px;
  }

  .slider-track {
    padding: 0 40px;
  }

  .testimonial-slide {
    padding: 25px 15px;
  }

  .testimonial-slide blockquote {
    font-size: 0.95rem;
  }

  .producer-logos {
    gap: 40px;
  }

  .producer-logos img {
    max-width: 200px;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
