/*
 * undressaius.love - Main Stylesheet
 * Modern dark-themed design for adult content website
 */

:root {
  --primary: #6a11cb;
  --primary-light: #8c52ff;
  --primary-dark: #5900b3;
  --secondary: #2575fc;
  --accent: #fd297b;
  --dark: #0a0a1a;
  --dark-medium: #1a1a2e;
  --dark-light: #2b2b3d;
  --light: #ffffff;
  --gray: #a0a0a0;
  --gray-light: #e0e0e0;
  --text: #ffffff;
  --text-dark: #e0e0e0;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.4);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background-color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.5px;
}

h1 span {
  display: block;
  color: var(--secondary);
  font-weight: 800;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--light);
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
  color: var(--light);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: rgba(37, 117, 252, 0.1);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient-accent);
  color: var(--light);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* Top Bar */
.top-bar {
  background: var(--dark-light);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

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

.top-message {
  color: var(--gray-light);
}

.top-message span {
  margin-right: 1rem;
}

.age-notice {
  color: var(--accent);
  font-weight: 600;
}

/* Header */
.main-header {
  background-color: var(--dark-medium);
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-svg {
  overflow: visible;
}

.logo-text {
  fill: var(--light);
  font-size: 28px;
  font-weight: 700;
}

.logo-text-us {
  fill: var(--secondary);
  font-size: 28px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--light);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.main-nav a {
  color: var(--light);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--secondary);
}

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

/* Hero Section */
.hero {
  background-color: var(--dark);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(106, 17, 203, 0.3), transparent 50%);
  z-index: 1;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.check-icon {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-weight: bold;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-graphic {
  flex: 1;
  max-width: 500px;
  margin-left: 2rem;
}

.hero-svg {
  width: 100%;
  height: auto;
}

.wave-divider {
  position: relative;
  height: 150px;
  width: 100%;
  margin-top: -70px;
  z-index: 3;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: var(--dark-medium);
}

/* Features Section */
.features {
  background-color: var(--dark-medium);
  padding: 5rem 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.icon-bg {
  fill: rgba(106, 17, 203, 0.2);
}

.icon-path {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--dark);
  padding: 5rem 0;
  position: relative;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 4rem 0;
}

.step-card {
  flex: 1;
  background-color: var(--dark-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.step-connector {
  height: 3px;
  background: var(--gradient);
  align-self: center;
  flex: 0.5;
  max-width: 100px;
  position: relative;
}

.step-connector::before,
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  transform: translateY(-50%);
}

.step-connector::before {
  left: 0;
}

.step-connector::after {
  right: 0;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--dark-medium);
  padding: 5rem 0;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  flex: 1;
  min-width: 280px;
  background-color: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-rating {
  margin-bottom: 1rem;
  display: flex;
}

.star {
  fill: #ffdd00;
  margin-right: 0.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-author {
  color: var(--secondary);
  font-weight: 600;
  text-align: right;
}

/* FAQ Section */
.faq {
  background-color: var(--dark);
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  background-color: var(--dark-medium);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-icon span {
  position: absolute;
  background-color: var(--secondary);
  width: 18px;
  height: 2px;
  top: 50%;
  left: 50%;
  transition: var(--transition);
}

.faq-icon span:first-child {
  transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon span:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--dark-medium);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 2;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--gray);
}

.footer-logo-text, .footer-logo-text-us {
  fill: var(--light);
  font-size: 24px;
  font-weight: 700;
}

.footer-logo-text-us {
  fill: var(--secondary);
}

.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--gray);
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
}

.disclaimer {
  color: var(--gray);
  font-size: 0.8rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Age Verification */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.age-verification-modal {
  background-color: var(--dark-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.age-verification-modal h2 {
  margin-bottom: 1.5rem;
}

.age-verification-modal p {
  margin-bottom: 1.5rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
  
  .hero-split {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-graphic {
    margin-left: 0;
  }
  
  .steps {
    flex-direction: column;
    gap: 3rem;
  }
  
  .step-connector {
    width: 3px;
    height: 50px;
    margin: 0 auto;
  }
  
  .step-connector::before,
  .step-connector::after {
    left: 50%;
    transform: translate(-50%, 0);
  }
  
  .step-connector::before {
    top: 0;
  }
  
  .step-connector::after {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .nav-toggle {
    display: block;
    z-index: 200;
  }
  
  .nav-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    background-color: var(--dark);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-strong);
    z-index: 100;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    margin: 0 0 2rem 0;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    gap: 2rem;
  }
}
