/* 
   PornGenai.site - Main Stylesheet
   Designed with a modern purple/indigo theme
*/

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

:root {
  --primary: #9C27B0;
  --secondary: #3F51B5;
  --accent: #FF4081;
  --dark: #121212;
  --light: #F5F5F5;
  --gray: #757575;
  --white: #FFFFFF;
  --gradient: linear-gradient(120deg, var(--primary), var(--secondary));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: 2rem;
  color: var(--white);
}

h1 span {
  color: var(--accent);
}

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

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

/* Layout */
header, section, footer {
  padding: 2rem 5%;
}

/* Header */
header {
  background-color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--accent);
}

.nav-cta {
  background-color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: var(--white);
}

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

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: var(--transition);
}

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

.menu-toggle span:nth-child(2) {
  top: 11px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 5%;
  background-color: var(--white);
}

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

.hero-content h2 {
  font-size: 3rem;
  text-align: left;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
  transition: var(--transition);
  max-width: fit-content;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
  color: var(--white);
}

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

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

/* Features Section */
.features {
  padding: 5rem 5%;
  background-color: var(--light);
}

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

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

.feature:hover {
  transform: translateY(-10px);
}

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

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

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

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

.step {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  text-align: center;
}

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

/* CTA Section */
.cta {
  background: var(--gradient);
  padding: 5rem 5%;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
}

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

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

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

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-name h3 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.footer-name p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: block;
}

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

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

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
  }
  
  .hero-content h2 {
    text-align: center;
  }
  
  .cta-button {
    margin: 0 auto;
  }
  
  .hero-visual {
    order: 0;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.75rem;
  }
  
  .feature-grid, .steps {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4 {
    margin-top: 1rem;
  }
}
