/* Streamlined CSS for aipornmaker.pw - Optimized for quick loading */
:root {
  /* Color scheme - different from previous sites */
  --primary: #e91e63;
  --primary-light: #f48fb1;
  --primary-dark: #c2185b;
  --accent: #00bcd4;
  --dark: #212121;
  --light: #f5f5f5;
  --gray: #757575;
  --bg: #fafafa;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

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

h2:after {
  content: '';
  height: 4px;
  width: 60px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

section {
  padding: 5rem 0;
}

/* Header styles */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

.logo-icon:after {
  content: 'AI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
}

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

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

/* Hero section */
.hero {
  background: linear-gradient(135deg, #e91e63 0%, #2196f3 100%);
  color: white;
  padding: 6rem 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ai-illustration {
  width: 100%;
  height: 300px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  position: relative;
}

.ai-illustration:after {
  content: 'AI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,188,212,0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00acc1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,188,212,0.4);
}

/* Features section */
.features {
  background: var(--bg);
}

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

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

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

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

/* How it works section */
.how-it-works {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.steps {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
}

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

.cta-container {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
}

.testimonial {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

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

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

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.logo-icon-footer {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  margin-bottom: 1rem;
  position: relative;
}

.logo-icon-footer:after {
  content: 'AI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 20px;
}

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

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #bdbdbd;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

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

/* Responsive styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    padding: 2rem;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
