/* 
 * Main Stylesheet for aipornsex.pw
 * Modern design with green/teal color scheme
 */

:root {
  --primary: #00c9a7;
  --secondary: #128760;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light);
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

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

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

/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo span {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 201, 167, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(18, 135, 96, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-text {
  flex: 1;
  z-index: 1;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 500px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.3);
  color: white;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #f8f8f8;
}

.features h2 {
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
}

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

.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-icon {
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.5rem;
}

.card p {
  color: #555;
}

/* Tech Section */
.tech-section {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: white;
}

.tech-content {
  flex: 1;
}

.tech-content h2 {
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.tech-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient);
}

.tech-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tech-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.point-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.point-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.point-content p {
  color: #555;
}

.tech-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Explore Section */
.explore-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--gradient);
  color: white;
}

.explore-section h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.explore-section p {
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
}

.explore-section .cta-button {
  background-color: white;
  color: var(--primary);
}

.explore-section .cta-button:hover {
  color: var(--secondary);
}

/* Footer */
footer {
  padding: 5rem 2rem 2rem;
  background-color: var(--dark);
  color: #bbb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo h3 {
  color: white;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.link-group h4 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.link-group h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.link-group a {
  color: #bbb;
  transition: color 0.3s ease, padding 0.3s ease;
}

.link-group a:hover {
  color: white;
  padding-left: 5px;
}

.link-group span {
  color: #999;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1rem;
  }
  
  .hero-text {
    padding: 0;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .tech-section {
    flex-direction: column;
  }
  
  .tech-content h2 {
    text-align: center;
    display: block;
  }
  
  .tech-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .burger-menu {
    display: flex;
    z-index: 1001;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    gap: 3rem;
  }
  
  nav.active {
    right: 0;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .link-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .tech-points {
    gap: 2rem;
  }
  
  .tech-point {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
