/* 
 * Kling AI Porn - Main Stylesheet
 * Website: klingaiporn.love
 */

:root {
  --primary: #6A0DAD;
  --primary-light: #9370DB;
  --primary-dark: #4B0082;
  --accent: #BA55D3;
  --text: #333;
  --text-light: #777;
  --white: #fff;
  --black: #000;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --shadow: 0 5px 15px rgba(106, 13, 173, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 13, 173, 0.3);
  color: var(--white);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img, .logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-btn {
  margin-left: 20px;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(rgba(75, 0, 130, 0.03), rgba(106, 13, 173, 0.05));
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-dark);
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  text-align: center;
}

.hero-image svg {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 10px 15px rgba(106, 13, 173, 0.2));
}
/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

.feature-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: -150px;
  left: -150px;
  border-radius: 50%;
}

.gallery::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(186, 85, 211, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  background: var(--gradient);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.gallery-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.step:nth-child(even) {
  direction: rtl;
}

.step-content {
  direction: ltr;
}

.step-number {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-number span {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  margin-right: 15px;
}

.step-number h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.step-description {
  color: var(--text-light);
  margin-bottom: 20px;
}

.step-image {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
}

.step-image svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 5px 10px rgba(106, 13, 173, 0.15));
}
/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(rgba(75, 0, 130, 0.03), rgba(106, 13, 173, 0.05));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote {
  font-size: 50px;
  position: absolute;
  top: 10px;
  left: 20px;
  color: rgba(106, 13, 173, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  margin-bottom: 20px;
  font-style: italic;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient);
  color: var(--white);
}

.cta-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
}

/* Footer */
.footer {
  background: #2a1a33;
  color: var(--gray);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg, .footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-about {
  margin-bottom: 20px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 30px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.social-link:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--primary-light);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 50px;
  }
  
  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step:nth-child(even) {
    direction: ltr;
  }
  
  .step-number {
    justify-content: center;
  }
  
  .step-image {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    position: relative;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 20px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
  }
  
  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .header-btn {
    margin: 15px 0 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}
