/* 
 * Modern, SEO-optimized CSS for pornmakingaifree.site
 * Green/teal color scheme - completely different from previous sites
 * Mobile-first responsive design approach
 */

:root {
  --primary: #00C853;
  --secondary: #00BCD4;
  --primary-gradient: linear-gradient(135deg, #00C853 0%, #00BCD4 100%);
  --text-color: #333333;
  --text-light: #666666;
  --background: #f7fdf9;
  --white: #ffffff;
  --section-alt: #f0f8f7;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --grid-gap: 20px;
  --container-padding: 1.5rem;
}

/* Base Styles */
* {
  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-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

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

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}

.primary-btn {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.primary-btn:hover, .primary-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
  color: var(--white);
}

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

.secondary-btn:hover, .secondary-btn:focus {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
}

.text-btn {
  background: transparent;
  color: var(--text-color);
  border: none;
  padding: 0.75rem 1rem;
  text-decoration: underline;
}

.text-btn:hover, .text-btn:focus {
  color: var(--primary);
}

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

/* Header */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

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

.main-nav ul {
  display: none;
}

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

#menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 7px;
  transition: var(--transition);
}

#menu-toggle span:last-child {
  margin-bottom: 0;
}

#menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

#nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

#nav-menu.active li {
  margin-bottom: 1rem;
}

#nav-menu.active li:last-child {
  margin-bottom: 0;
}

.nav-cta {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 3rem 0 4rem;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.05) 0%, rgba(0, 0, 0, 0) 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
  position: relative;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h2 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

.hero-image {
  width: 100%;
  max-width: 500px;
  margin-top: 1.5rem;
}

/* Generator Section */
.generator {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
}

.generator-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  margin-bottom: 3rem;
}

.feature-box {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.feature-box h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

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

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background-color: var(--section-alt);
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.check-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background-color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  counter-reset: step-counter;
}

.step {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

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

.step h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

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

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

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

.footer-info .footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

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

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

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* Media Queries */
@media (min-width: 576px) {
  .generator-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .hero .container {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-content {
    margin-bottom: 0;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .benefits-content {
    flex-direction: row;
    align-items: center;
  }
  
  .benefits-text {
    flex: 1;
  }
  
  .benefits-visual {
    flex: 1;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .generator-features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content, .feature-box, .step {
  animation: fadeInUp 0.8s ease-out forwards;
}
