/* 
 * pornxai.pw Stylesheet
 * Modern, responsive design with SEO optimizations
 */

/* Base styles and resets */
:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

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

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

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

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

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

/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
}

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

.logo-svg {
  max-height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

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

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

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

/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 4rem 0;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: var(--light-text);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform: translateY(0);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.3);
  color: var(--light-text);
}

/* Features Section */
#features {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

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

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

/* How It Works Section */
#how-it-works {
  padding: 5rem 0;
  background-color: #f5f7fa;
}

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

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

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

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

/* Testimonials Section */
#testimonials {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.testimonial {
  background: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.user {
  font-weight: 600;
  margin-top: 1rem;
  text-align: right;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: #f5f7fa;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* CTA Section */
#cta {
  padding: 5rem 0;
  background: var(--gradient);
  color: var(--light-text);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--light-text);
}

.cta-content .cta-button {
  background: var(--light-text);
  color: var(--primary-color);
  margin-top: 2rem;
}

.cta-content .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 280px;
  margin-bottom: 2rem;
}

.footer-logo p {
  margin-top: 1rem;
  opacity: 0.7;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  margin-bottom: 2rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
  color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  #hero {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .features-grid,
  .testimonials-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    text-align: center;
    flex: 0 0 100%;
  }
  
  .footer-links {
    justify-content: space-around;
  }
}

/* Mobile menu functionality - will be controlled by JS */
.menu-open nav ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  width: 100%;
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 100;
  border-radius: var(--border-radius);
}

.menu-open nav ul li {
  margin: 1rem 0;
  text-align: center;
}

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

.feature, .step, .testimonial, .faq-item {
  animation: fadeIn 0.6s ease-out forwards;
}
