/* MyBabes AI - Glamour Rose Gold Theme */

:root {
  --primary: #E8B4B8;
  --primary-light: #F5D5C8;
  --accent: #D4A5A5;
  --gold: #D4AF37;
  --rose-gold: #B76E79;
  --bg: #1A0F0F;
  --bg-card: #241414;
  --bg-alt: #1C1212;
  --text-primary: #FFFFFF;
  --text-secondary: #C9B8B8;
  --text-muted: #8B7373;
  --border: rgba(232, 180, 184, 0.2);
  --gradient-1: linear-gradient(135deg, #E8B4B8 0%, #B76E79 50%, #D4AF37 100%);
  --shadow-glow: 0 0 40px rgba(232, 180, 184, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Effects */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(232, 180, 184, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(183, 110, 121, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -2;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* ================= ANIMATIONS ================= */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 180, 184, 0.3); }
  50% { box-shadow: 0 0 40px rgba(232, 180, 184, 0.6), 0 0 60px rgba(212, 175, 55, 0.3); }
}

/* Shimmer Text Animation */
@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Rotate Animation */
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Slide In Stagger */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Float Animation */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(0.5deg); }
  75% { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Delay Classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Scroll Animation State */
.scroll-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(26, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-light);
}

.cta-nav {
  padding: 0.6rem 1.5rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  padding: 1rem 2rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(232, 180, 184, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 180, 184, 0.6);
}

.btn-primary.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 20px rgba(232, 180, 184, 0.4); }
  to { box-shadow: 0 4px 40px rgba(232, 180, 184, 0.7); }
}

.trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.trust-badges span {
  transition: all 0.3s ease;
  cursor: default;
}

.trust-badges span:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-visual:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(232, 180, 184, 0.3);
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

.alt-bg {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(232, 180, 184, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.section-tag:hover {
  background: rgba(232, 180, 184, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(232, 180, 184, 0.2);
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(232, 180, 184, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.video-card-link:hover {
  transform: translateY(-5px);
}

.video-card-link:hover .video-card {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px) scale(1.02);
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(232, 180, 184, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.video-card-link:hover .video-card::before {
  opacity: 1;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  max-height: 400px;
  display: flex;
  flex-direction: column;
}

.character-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.video-card-link:hover .character-name {
  color: var(--primary-light);
  text-shadow: 0 0 20px rgba(232, 180, 184, 0.5);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.video-info {
  padding: 1rem;
  background: var(--bg-card);
}

.video-info .bio {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.video-info .tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(232, 180, 184, 0.2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary-light);
}

.companions-info {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.info-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Features */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(232, 180, 184, 0.2);
}

.feature-card:hover .feature-icon {
  animation: bounce 0.6s ease;
  transform: scale(1.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Gallery */
.gallery-preview {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.gallery-preview:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(232, 180, 184, 0.2);
}

.gallery-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-preview:hover img {
  transform: scale(1.05);
}

/* Pricing */
.pricing-section {
  background: var(--bg-alt);
}

.pricing-preview {
  max-width: 600px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pricing image - separate from cards */
.pricing-image {
  max-width: 700px;
  margin: 0 auto 5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-image a {
  display: block;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 184, 0.1), transparent);
  transition: left 0.6s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(232, 180, 184, 0.15);
}

.pricing-card.popular {
  animation: pulseGlow 3s ease-in-out infinite;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.popular-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--gradient-1);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.pricing-cta:hover::before {
  left: 100%;
}

.pricing-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.5);
}

/* CTA */
.final-cta {
  text-align: center;
  padding: 6rem 2rem;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.final-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.final-cta .btn-primary {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-origin: center;
}

.faq-item:hover {
  border-color: var(--primary);
  transform: scale(1.01);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.15);
  transform: scale(1.02);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(232, 180, 184, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: white;
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: rotate(360deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card.popular {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}
