/*
* AIPornVideoGenerator.site - Main Stylesheet
* Modern, responsive design with orange/amber color scheme
*/

:root {
  /* Primary color palette - orange/amber theme */
  --primary: #FF8C00;
  --primary-dark: #FF500F;
  --primary-light: #FFA640;
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #777777;
  --background: #FFFFFF;
  --background-alt: #F7F7F7;
  --background-dark: #1A1A1A;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

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

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

p {
  margin-bottom: 1rem;
}

/* Layout & Structure */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  padding: 5rem 0;
  overflow: hidden;
}

.header-inner,
.hero-inner,
.tech-inner,
.footer-inner,
.cta-inner,
.section-header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.site-header {
  background: var(--background);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.logo-svg {
  margin-right: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-medium);
  font-weight: 500;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--primary);
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 100;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  position: absolute;
  transition: var(--transition);
}

.menu-btn span:nth-child(1) {
  top: 0;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(160deg, #FFF 50%, #FFF8F0 100%);
  padding: 7rem 0 6rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-visual {
  flex: 1;
  max-width: 500px;
}

.hero h1 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

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

.secondary-btn {
  display: inline-block;
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

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

/* Features Section */
.features {
  background-color: var(--background);
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.feature-card {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.feature-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 70px;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-medium);
}

/* How It Works Section */
.how-it-works {
  background-color: var(--background-alt);
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.step {
  flex: 1;
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.step h3 {
  margin-bottom: 1rem;
}

.step-arrow {
  margin: 0 -10px;
}

/* Technology Section */
.technology {
  background: linear-gradient(160deg, #FFF 50%, #FFF8F0 100%);
  padding: 6rem 0;
}

.tech-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.tech-content {
  flex: 1;
}

.tech-content h2 {
  margin-bottom: 1.5rem;
}

.tech-content p {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tech-list li span {
  color: var(--text-medium);
}

.tech-visual {
  flex: 1;
  max-width: 400px;
}

.tech-svg {
  width: 100%;
  height: auto;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  padding: 5rem 0;
}

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

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.cta .cta-button {
  background: white;
  color: var(--primary) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta .cta-button:hover {
  background: #f9f9f9;
}

/* Footer */
.site-footer {
  background: var(--background-dark);
  color: white;
  padding: 4rem 0 1.5rem;
}

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

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

.footer-logo span {
  color: white;
  font-weight: 600;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

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

.footer-column a {
  color: #AAA;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 15px 0;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-visual {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .tech-inner {
    flex-direction: column-reverse;
  }
  
  .tech-content {
    text-align: center;
  }
  
  .tech-list li {
    justify-content: center;
  }
  
  .tech-visual {
    margin-bottom: 2.5rem;
  }
  
  .steps {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 0;
  }
  
  .nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button, .secondary-btn {
    width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  section {
    padding: 3.5rem 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
