/* Modern and responsive CSS for freeaipornvideogenerator.site */
:root {
  --primary-color: #6C2BD9;
  --secondary-color: #FF4D8B;
  --accent-color: #36B3FF;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --white: #ffffff;
  --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.hero {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  max-width: 800px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(255, 77, 139, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(108, 43, 217, 0.4);
}

.features {
  background-color: var(--white);
  padding: 5rem 0;
}

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

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.how-it-works {
  background-color: var(--light-bg);
  padding: 5rem 0;
  text-align: center;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.faq {
  background-color: var(--white);
  padding: 5rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--light-bg);
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-answer {
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--light-bg);
}

.cta {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 2rem;
}

footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: var(--white);
  margin: 0 1rem;
  text-decoration: none;
}

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

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

section {
  padding: 3rem 0;
}

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

section p {
  margin-bottom: 1rem;
}

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

.mt-3 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}
