/* 
 * aigeneratedporn.love Website Styles
 * A unique design with teal and indigo color scheme
 */

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

:root {
  /* Color palette - teal/indigo theme */
  --color-primary: #06b6d4;
  --color-primary-dark: #0891b2;
  --color-secondary: #6366f1;
  --color-accent: #f59e0b;
  --color-dark: #0f172a;
  --color-light: #f8fafc;
  --color-mid: #94a3b8;
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  
  /* Container width */
  --container-width: 1140px;
}

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

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--color-dark);
}

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

h3 {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--color-mid);
  font-size: 1.1rem;
}

/* Button styles */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.button.primary {
  background: var(--gradient-primary);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.button.large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.button.primary:hover {
  color: white;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
}

.button.secondary:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Header styles */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
}

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

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

.logo-icon {
  width: 160px;
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: var(--space-md);
}

.nav-menu li a {
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
}

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

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

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

/* Hero section */
.hero {
  padding: calc(4rem + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(to right, #f0fdfa, #e0f2fe);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.hero-content {
  flex: 1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-mid);
  max-width: 550px;
}

.hero-visual {
  flex: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* Features section */
.features {
  background-color: white;
}

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

.feature-card {
  background-color: #f8fafc;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-sm);
}

/* How it works section */
.how-it-works {
  background-color: #f0fdfa;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
}

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

.step-arrow {
  width: 60px;
}

/* Examples section */
.examples {
  background-color: white;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.example-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.example-image {
  width: 100%;
  height: 200px;
  background-color: var(--color-primary);
}

.example-image svg {
  width: 100%;
  height: 100%;
}

.example-card h3 {
  padding: var(--space-sm) var(--space-sm) 0;
  font-size: 1.25rem;
}

.example-card p {
  padding: 0 var(--space-sm) var(--space-sm);
  color: var(--color-mid);
}

.example-cta {
  text-align: center;
  margin-top: var(--space-md);
}

/* Pricing section */
.pricing {
  background-color: #f0fdfa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: 0 auto;
  max-width: 1000px;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--color-primary);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-bottom-left-radius: var(--border-radius-md);
}

.pricing-header {
  text-align: center;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-mid);
}

.pricing-features {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.pricing-features li {
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.pricing-card .button {
  display: block;
  margin: 0 var(--space-md) var(--space-md);
}

/* Testimonials section */
.testimonials {
  background-color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background-color: #f8fafc;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: right;
}

/* FAQ section */
.faq {
  background-color: #f0fdfa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--space-md);
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  cursor: pointer;
}

/* CTA section */
.cta {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta h2::after {
  background: white;
}

.cta p {
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-about p {
  color: var(--color-mid);
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-icon {
  width: 160px;
  height: 40px;
}

.footer-links h4,
.footer-legal h4 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-legal a {
  color: var(--color-mid);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-mid);
  font-size: 0.875rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-about p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: var(--space-sm) 0;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: var(--space-sm) 0;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .pricing-grid {
    gap: var(--space-lg);
  }
}
