/* Base styles for deepnudecc.wiki */
:root {
  --primary: #FF7964;
  --secondary: #FFCC8A;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --dark: #2D2D2D;
  --light: #FFFFFF;
  --gray: #F5F5F5;
  --text: #333333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
}

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

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

ul {
  list-style: none;
}

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

.section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

/* Buttons */
.primary-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 121, 100, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 121, 100, 0.4);
}

.secondary-button {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 11px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 121, 100, 0.1);
}

.pulse {
  animation: pulse 2s infinite;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.highlight {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
}

nav {
  margin-right: 20px;
}

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

.menu a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

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

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* Hero Section */
#hero {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

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

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 25px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: #777;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-sphere {
  position: relative;
  width: 250px;
  height: 250px;
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--gray);
}

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

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

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

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

.feature-card h3 {
  margin-bottom: 15px;
}

/* How It Works Section */
#how-it-works {
  padding: 80px 0;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.step {
  flex: 1;
  min-width: 230px;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

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

.step-arrow {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Examples Section */
#examples {
  padding: 80px 0;
  background-color: var(--gray);
}

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

.example-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.example-visual {
  height: 200px;
  background: linear-gradient(45deg, rgba(255,121,100,0.1) 0%, rgba(255,204,138,0.3) 100%);
  position: relative;
}

.example-info {
  padding: 20px;
}

.example-info h3 {
  margin-bottom: 10px;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
}

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

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

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

.faq-icon:before {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.faq-icon:after {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

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

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

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

/* CTA Section */
#cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

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

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

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

.footer-menu {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-menu-column h4 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-menu-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-menu-column ul li a:hover {
  color: var(--primary);
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.5;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats {
    justify-content: center;
  }
  
  .hero-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .menu.active {
    max-height: 300px;
    padding: 20px;
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .step {
    width: 100%;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* Animations for the AI sphere */
.sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 121, 100, 0.5);
}

.sphere-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 121, 100, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.orbit-1 {
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
}

.orbit-2 {
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 15s;
}

.orbit-3 {
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
}

.sphere-particle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
}

.p1 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  animation: moveParticle1 10s linear infinite;
}

.p2 {
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: moveParticle2 15s linear infinite;
}

.p3 {
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: moveParticle3 20s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes moveParticle1 {
  0% { left: 0; top: 50%; }
  25% { left: 50%; top: 0; }
  50% { left: 100%; top: 50%; }
  75% { left: 50%; top: 100%; }
  100% { left: 0; top: 50%; }
}

@keyframes moveParticle2 {
  0% { left: 50%; top: 0; }
  25% { left: 100%; top: 50%; }
  50% { left: 50%; top: 100%; }
  75% { left: 0; top: 50%; }
  100% { left: 50%; top: 0; }
}

@keyframes moveParticle3 {
  0% { left: 50%; top: 100%; }
  25% { left: 0; top: 50%; }
  50% { left: 50%; top: 0; }
  75% { left: 100%; top: 50%; }
  100% { left: 50%; top: 100%; }
}
