/* 
 * Deepnude Generator Website Styles
 * Unique purple and gold color scheme
 */

:root {
  --primary: #8a2be2;
  --secondary: #ffd700;
  --accent: #9932cc;
  --dark: #2c003e;
  --light: #f9f9fb;
  --gray: #656565;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light);
}

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

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

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

h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h1 span, h2 span {
  color: var(--primary);
  position: relative;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin: 0 auto 3rem;
  max-width: 600px;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.btn.primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(138, 43, 226, 0.4);
}

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

.btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  z-index: 1000;
}

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

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

.logo-icon {
  margin-right: 8px;
  transition: var(--transition);
}

.logo span {
  margin-left: 8px;
}

.logo:hover .logo-icon {
  transform: rotate(10deg);
}

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

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

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

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

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px auto;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, rgba(138, 43, 226, 0.05), rgba(255, 215, 0, 0.05));
}

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

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave-svg {
  width: 100%;
  max-width: 450px;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Features Section */
.features {
  background: white;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

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

/* Process Section */
.process {
  background: linear-gradient(145deg, rgba(138, 43, 226, 0.05), rgba(255, 215, 0, 0.05));
  padding: 6rem 0;
}

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

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid var(--secondary);
}

.step-card:hover {
  transform: translateY(-8px);
}

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

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

/* FAQ Section */
.faq {
  background: white;
}

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

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

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.link-group h4 {
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.link-group ul {
  list-style: none;
}

.link-group ul li {
  margin-bottom: 0.8rem;
}

.link-group ul li a {
  color: rgba(255,255,255,0.7);
}

.link-group ul li a:hover {
  color: var(--secondary);
}

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

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 2rem 0;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    margin: 0 auto;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media screen and (max-width: 576px) {
  .buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}
