/* 
* DeepNude Generator - Main Stylesheet 
* Website: deepnudegenerator.best
* Design: Wave-inspired Theme with Purple/Blue Gradient
*/

/* Base Styles & Reset */
:root {
  --primary: #6a11cb;
  --primary-light: #2575fc;
  --accent: #8e2de2; 
  --dark: #1A1A1A;
  --darker: #121212;
  --light: #f8f9fa;
  --gray: #6c757d;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 80px 0;
  position: relative;
}

.dark-section {
  background-color: var(--darker);
  color: var(--light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: white;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--gradient);
}

/* Wave Decorations */
.wave-divider {
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.wave {
  width: 100%;
  height: 100%;
}

.wave-top {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-text {
  margin-left: 10px;
}

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

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

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.nav-links a.btn {
  padding: 8px 16px;
  color: white;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 Q25,10 50,25 Q75,40 100,25' stroke='%232575fc' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M0,50 Q25,35 50,50 Q75,65 100,50' stroke='%236a11cb' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M0,75 Q25,60 50,75 Q75,90 100,75' stroke='%232575fc' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

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

.hero-content {
  width: 55%;
}

.hero-image {
  width: 40%;
  display: flex;
  justify-content: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--gray);
}

/* Features */
.features {
  position: relative;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.dark-section .feature-card {
  background: #222;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* How It Works */
.process {
  padding: 100px 0;
}

.steps-container {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.step-container {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}

.step-container:last-child {
  margin-bottom: 0;
}

.step-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: var(--gradient);
}

.step-container:last-child::before {
  height: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.step-content h3 {
  margin-bottom: 10px;
}

/* FAQ Accordion */
.faq {
  background-color: var(--light);
}

.accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 20px 25px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.accordion-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.accordion-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.accordion-content {
  padding: 0 25px 20px;
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 Q25,10 50,25 Q75,40 100,25' stroke='%23ffffff' stroke-width='2' fill='none' opacity='0.1'/%3E%3Cpath d='M0,50 Q25,35 50,50 Q75,65 100,50' stroke='%23ffffff' stroke-width='2' fill='none' opacity='0.1'/%3E%3Cpath d='M0,75 Q25,60 50,75 Q75,90 100,75' stroke='%23ffffff' stroke-width='2' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: white;
  margin-bottom: 30px;
}

.cta p {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
  background: white;
  color: var(--primary);
}

.cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--darker);
  color: var(--light);
  padding: 70px 0 30px;
}

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

.footer-brand {
  flex: 0 0 35%;
  max-width: 35%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links {
  flex: 0 0 20%;
  max-width: 20%;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content, 
  .hero-image {
    width: 100%;
  }
  
  .hero-image {
    margin-top: 40px;
    order: 2;
  }
  
  .footer-brand {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .footer-links {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    transition: right 0.3s ease-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .footer-links {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
