/* Modern CSS for deepnudeimages.best - Red/Orange Theme */
:root {
  --primary: #FF6B6B;
  --secondary: #FFB344;
  --dark: #2A0E61;
  --dark-alt: #3B185F;
  --light: #FFFFFF;
  --text-light: #F1F1F1;
  --text-dark: #333333;
  --accent: #FF9551;
  --bg-gradient: linear-gradient(to right, var(--dark), var(--dark-alt));
  --primary-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --radius: 12px;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

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

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light);
  background: var(--bg-gradient);
  overflow-x: hidden;
}

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

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

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

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

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

/* Layout */
.section {
  padding: 80px 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(42, 14, 97, 0.9);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 24px;
  cursor: pointer;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-gradient);
  color: var(--light);
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Process Steps */
.process {
  background-color: rgba(42, 14, 97, 0.7);
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 50px 0;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  width: calc(100% - 120px);
  height: 2px;
  background: var(--primary-gradient);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-text {
  text-align: center;
  max-width: 200px;
}

/* Testimonials */
.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0 auto;
  max-width: 800px;
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

/* CTA Section */
.cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 60px;
  margin: 0 auto;
  max-width: 800px;
}

/* Footer */
footer {
  background-color: rgba(42, 14, 97, 0.8);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

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

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

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

.copyright {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-image {
    order: -1;
  }
  
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .steps::before {
    width: 2px;
    height: calc(100% - 120px);
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    align-items: center;
    background: var(--dark);
    padding: 50px 0;
    transition: left 0.3s ease;
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
