/* 
 * Main stylesheet for aigenerated-porn.pw
 * Completely different design from previous sites
 */

:root {
  --primary: #9c27b0;
  --primary-light: #d05ce3;
  --primary-dark: #6a0080;
  --secondary: #00bcd4;
  --dark: #212121;
  --light: #f5f5f5;
  --gray: #757575;
  --white: #ffffff;
  --accent: #ff4081;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --shadow: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1.5rem;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

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

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 30px;
}

.nav-cta:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

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

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark);
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background-image: radial-gradient(circle at top right, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta-button:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.feature-item {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  color: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Tech Section */
.tech-section {
  padding: 5rem 0;
  background-color: #f0f2f5;
}

.tech-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tech-list li {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
  color: var(--primary);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--gradient);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--primary);
  margin-top: 1.5rem;
}

.cta-section .cta-button:hover {
  background: var(--light);
  color: var(--primary-dark);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links h3 {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bbb;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-info {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #bbb;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .header-container {
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .main-nav.active {
    height: auto;
    padding: 1rem 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .main-nav a {
    display: block;
    padding: 0.7rem 0;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .feature-grid {
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
}
