/* 
* aiporncreator.love - Main Stylesheet
* Modern, responsive design with SEO optimization
*/

/* Base styles and CSS reset */
:root {
  --primary-color: #8a2be2;
  --secondary-color: #ff6b6b;
  --accent-color: #4db6ac;
  --dark-color: #2c3e50;
  --light-color: #f5f5f5;
  --text-color: #333333;
  --light-text: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: var(--secondary-color);
  opacity: 0.2;
  z-index: -1;
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
}

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

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

.logo h1 {
  font-size: 2.2rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo-svg {
  width: 4rem;
  height: 4rem;
}

nav ul {
  display: flex;
  gap: 2.5rem;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 15rem 0 10rem;
  background: var(--gradient);
  color: var(--light-text);
  text-align: center;
}

.hero h2 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.hero .highlight {
  color: white;
}

.hero .highlight::after {
  background-color: white;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
}

/* Features Section */
.features {
  padding: 10rem 0;
  text-align: center;
  background-color: white;
}

.features h2 {
  margin-bottom: 6rem;
}

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

.feature-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 4rem 3rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.feature-icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgba(138, 43, 226, 0.1);
}

.feature-card h3 {
  margin-bottom: 1.5rem;
}

/* How it works */
.how-it-works {
  padding: 10rem 0;
  background-color: var(--light-color);
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 6rem;
}

.step {
  flex: 1;
  max-width: 300px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3rem;
  right: -2rem;
  width: 4rem;
  height: 2px;
  background-color: var(--primary-color);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}

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

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

/* FAQ Section */
.faq {
  padding: 10rem 0;
  background-color: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 6rem 0 0;
}

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

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

.footer-links {
  display: flex;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

/* Responsive design */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 400px;
    margin-bottom: 4rem;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  header {
    padding: 1rem 0;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 12rem 0 8rem;
  }
  
  .hero h2 {
    font-size: 3.6rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .hero h2 {
    font-size: 3.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 3rem 2rem;
  }
}
