/* Main styles for deepnudes.wiki */
:root {
  --primary: #00C9FF;
  --secondary: #92FE9D;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --dark: #1D2B3A;
  --light: #FFFFFF;
  --gray: #F0F5F9;
  --text: #2D3748;
  --text-light: #718096;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: #FCFDFF;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

section {
  padding: 80px 5%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 10px;
}

h1 {
  font-size: 1.8rem;
  color: var(--text);
}

h1 span {
  color: var(--primary);
  font-weight: 500;
}

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 5% 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 201, 255, 0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(146, 254, 157, 0.15), transparent 50%);
  z-index: 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  color: var(--light);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-graphic {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-graphic {
  width: 100%;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: var(--light);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 201, 255, 0.3);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 201, 255, 0.4);
  color: var(--light);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 201, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 201, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 201, 255, 0);
  }
}

/* Features Section */
.features {
  background-color: var(--light);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, #f6f9fc, #edf2f7);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

/* Testimonials Section */
.testimonials {
  background-color: var(--light);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #f6f9fc, #edf2f7);
  padding-bottom: 60px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Final CTA Section */
.final-cta {
  background: var(--dark);
  color: var(--light);
  text-align: center;
}

.final-cta h2 {
  color: var(--light);
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #111827;
  color: var(--light);
  padding: 60px 5% 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo span {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
}

.footer-links a {
  color: var(--light);
  opacity: 0.7;
  margin-left: 2rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.disclaimer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero h2 {
    text-align: center;
    font-size: 3rem;
  }
  
  .ai-graphic {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.3rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    display: block;
    padding: 1rem 2rem;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links a {
    margin: 0.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
}
