/* Base styles for deepnudeapp.wiki */
:root {
  --primary: #6C63FF;
  --primary-dark: #5046e5;
  --secondary: #4D8BF9;
  --dark: #1a1a2e;
  --light: #ffffff;
  --gray: #f0f2f5;
  --text: #333333;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

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

.secondary:hover {
  background: rgba(108, 99, 255, 0.1);
}

.large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(108, 99, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 99, 255, 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 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

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

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

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

h1 {
  font-size: 1.5rem;
  color: var(--dark);
}

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

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

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

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

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

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

.nav-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 8px 20px;
  border-radius: 30px;
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
#hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(77, 139, 249, 0.1));
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(108, 99, 255, 0.3);
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 50px;
    transform: none;
  }
  
  #hero {
    padding: 150px 0 80px;
  }
}

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

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Sections basic styling */
section {
  padding: 100px 0;
}

section:nth-child(even) {
  background-color: var(--gray);
}

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

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

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

.footer-logo span {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

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

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

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

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

.footer-links-group ul li a:hover {
  color: var(--light);
}

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

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