/* Main stylesheet for deepnudeimages.wiki */
:root {
  --primary: #FF0844;
  --secondary: #FFB199;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --dark: #222831;
  --dark-light: #393E46;
  --light: #FFFFFF;
  --light-gray: #EEEEEE;
  --mid-gray: #AAAAAA;
  --text: #333333;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

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

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  margin-right: 10px;
  position: relative;
}

.logo-icon:before,
.logo-icon:after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.logo-icon:before {
  width: 8px;
  height: 8px;
  top: 12px;
  left: 10px;
}

.logo-icon:after {
  width: 8px;
  height: 8px;
  top: 12px;
  right: 10px;
}

h1 {
  font-size: 1.7rem;
  font-weight: 700;
}

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

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

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

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

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

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: #FFF;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 8, 68, 0.1), transparent 50%),
              radial-gradient(circle at top left, rgba(255, 177, 153, 0.1), transparent 50%);
  z-index: 0;
}

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

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--dark-light);
}

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

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

.pulse {
  animation: pulse 2s infinite;
}

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

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

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

.feature-item {
  background: var(--light);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

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

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--dark-light);
}

/* Process Section */
.process {
  background-color: var(--light);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.process-step {
  flex: 0 0 calc(33.33% - 40px);
  text-align: center;
  padding: 30px;
  background: #f8f8f8;
  border-radius: var(--radius);
  position: relative;
  min-width: 250px;
}

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

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

.cta-container {
  text-align: center;
  margin-top: 20px;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-question.active:after {
  content: '−';
}

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

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

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

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

.final-cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

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

.footer-icon {
  margin-right: 10px;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
}

.footer-links a {
  color: var(--light);
  margin-left: 30px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  h2 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hero h2 {
    font-size: 2.3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .process-step {
    flex: 0 0 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-links {
    width: 100%;
    justify-content: center;
  }
  
  .footer-links a {
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 30px 20px;
  }
}
