/*
* bestaianimepornvideogenerator.love - Main Stylesheet
* Unique anime-inspired design with orange-purple color scheme
*/

:root {
  --primary: #9C27B0;
  --secondary: #FF5722;
  --accent: #673AB7;
  --text-dark: #212121;
  --text-light: #FFFFFF;
  --text-gray: #757575;
  --bg-light: #FFFFFF;
  --bg-dark: #212121;
  --gradient: linear-gradient(135deg, var(--secondary), var(--primary));
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  font-weight: 600;
}

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

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

ul {
  list-style: none;
}

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

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

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

/* Header Styles */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

@media (max-width: 768px) {
  .site-title {
    max-width: 150px;
  }
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

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

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

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

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.03), rgba(255, 87, 34, 0.03));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 87, 34, 0.03);
  border-radius: 50%;
  z-index: -1;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.cta-button {
  background: var(--gradient);
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
  color: var(--text-light);
}

.secondary-button {
  background-color: transparent;
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.secondary-button:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #FAFAFA;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

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

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

.feature-card {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

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

.feature-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

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

/* Generator Section */
.generator-section {
  padding: 100px 0;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
}

.generator-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(255, 87, 34, 0.05));
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.step p {
  color: var(--text-gray);
  margin-bottom: 25px;
}

/* Examples Section */
.examples-section {
  padding: 80px 0;
  background-color: #FAFAFA;
}

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

.example-card {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 25px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.example-preview {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.example-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.example-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::before {
  top: -100px;
  right: -50px;
}

.cta-section::after {
  bottom: -100px;
  left: -50px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-section .cta-button {
  background-color: var(--text-light);
  color: var(--primary);
}

.cta-section .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-gray);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  gap: 20px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

.footer-nav h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 15px;
}

.footer-nav h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .hero-section .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-light);
    padding: 80px 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    margin-bottom: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button, .secondary-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
    width: 100%;
  }
  
  .hero-section {
    padding: 60px 0 80px;
  }
  
  .features-section,
  .generator-section,
  .examples-section,
  .cta-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .feature-card,
  .example-card {
    padding: 20px;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Mobile menu open style for body */
body.menu-open {
  overflow: hidden;
}
