/* 
   Best Free AI Porn Generator - Main Stylesheet
   Modern, minimal design with gradient accents
*/

:root {
  /* Color Scheme - Teal/Green gradient based */
  --primary: #00C9FF;
  --primary-light: #92FE9D;
  --primary-dark: #0099CC;
  --accent: #FF6B6B;
  --background: #F8FBFF;
  --card-bg: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

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

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Header Styles */
header {
  background-color: var(--card-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

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

.logo-svg {
  width: 40px;
  height: 40px;
}

.site-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 20px;
  min-height: calc(100vh - 80px);
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.highlight {
  position: relative;
  color: var(--primary);
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, var(--primary), var(--primary-light));
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.button.primary {
  background-image: linear-gradient(to right, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 201, 255, 0.4);
  color: white;
}

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

.button.secondary:hover {
  background-color: rgba(0, 201, 255, 0.1);
  transform: translateY(-3px);
}

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

/* Stats Card */
.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 2rem 0;
}

.stats-card {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 0 auto;
  transform: translateY(-30px);
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-text {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
  padding: 4rem 20px;
}

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

.benefit-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

/* Generator Section */
.generator-section {
  padding: 4rem 20px;
}

.generator-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Examples Section */
.examples {
  padding: 4rem 20px;
  background-color: var(--background);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.example-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

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

.example-svg {
  width: 100%;
  height: auto;
  display: block;
}

.example-card h3 {
  padding: 1rem;
}

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

/* FAQ Section */
.faq {
  padding: 4rem 20px;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.arrow {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
  padding: 4rem 20px;
  text-align: center;
  background-image: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: var(--border-radius);
  color: white;
  margin: 2rem 0;
}

.cta-section h2 {
  color: white;
}

.cta-section .button {
  margin-top: 1rem;
  background-color: white;
  color: var(--primary);
}

.cta-section .button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 4rem 20px 2rem;
  margin-top: 4rem;
}

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

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

.footer-title {
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.footer-tagline {
  color: var(--text-light);
  font-size: 0.9rem;
}

.link-group h4 {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.link-group h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-image: linear-gradient(to right, var(--primary), var(--primary-light));
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 1rem;
}

.legal {
  display: flex;
  gap: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .cta {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .link-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .link-group ul {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--card-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .stats-card {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .cta {
    flex-direction: column;
  }
}
