/*
* aipornxxx.site - Main Stylesheet
* Modern, responsive design with purple gradient theme
*/

/* Base Styles */
:root {
  --primary: #9C27B0;
  --secondary: #673AB7;
  --accent: #3F51B5;
  --text: #333;
  --text-light: #777;
  --bg: #fff;
  --bg-alt: #f5f5f5;
  --gradient: linear-gradient(120deg, var(--primary), var(--accent));
  --shadow: 0 5px 20px rgba(156, 39, 176, 0.15);
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

h1, h2, h3 {font-family: 'Raleway', sans-serif;}
h2 {margin-bottom: 1.5rem;}
section {padding: 4rem 0;}
a {text-decoration: none;}
ul {list-style: none;}

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

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

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo h1 {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-links a:hover::after {width: 100%;}
#menu-toggle, .menu-icon {display: none;}

.btn-nav {
  background: var(--gradient);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  padding-top: 9rem;
  background: linear-gradient(170deg, #f9f4fc 0%, #f5f7ff 100%);
}

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

.hero-content {flex: 1;}
.hero-visual {flex: 1;}

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-primary:hover {transform: translateY(-3px);}
.btn-outline:hover {background: rgba(156, 39, 176, 0.1);}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.05);}
  100% {transform: scale(1);}
}

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {box-shadow: 0 0 10px var(--primary);}
  to {box-shadow: 0 0 20px var(--primary), 0 0 30px var(--accent);}
}

/* Features Section */
.features {background: var(--bg);}

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

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.feature:hover {transform: translateY(-10px);}
.feature h3 {margin: 1rem 0;}
.feature p {color: var(--text-light);}

/* How It Works */
.how-it-works {background: var(--bg-alt);}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;
}

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

/* Gallery */
.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.gallery-item:hover {transform: translateY(-5px);}
.gallery-action {text-align: center; margin-top: 2rem;}

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

.cta h2 {color: white; margin-bottom: 1rem;}
.cta p {margin-bottom: 2rem; opacity: 0.9;}

.btn-cta {
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Footer */
footer {
  background: #222;
  color: #bbb;
  padding: 4rem 0 1rem;
}

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

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

.footer-title {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-desc {font-size: 0.9rem;}
.footer-links {display: flex; gap: 4rem;}
.footer-col h3 {color: white; margin-bottom: 1.5rem;}
.footer-col ul li {margin-bottom: 0.8rem;}
.footer-col ul li a {color: #bbb; transition: 0.3s;}
.footer-col ul li a:hover {color: white; padding-left: 5px;}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container, .footer-top {flex-direction: column;}
  .hero-content h2 {font-size: 2.5rem;}
  .steps {flex-wrap: wrap;}
  .step {flex: 0 0 45%;}
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    z-index: 101;
  }
  
  .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--primary);
    transition: 0.3s;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: white;
    flex-direction: column;
    padding-top: 100px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  
  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }
  
  .step {flex: 0 0 100%;}
  .footer-links {flex-direction: column; gap: 2rem;}
}

@media (max-width: 576px) {
  .hero-buttons {flex-direction: column; align-items: center;}
  .btn {width: 100%; text-align: center; margin-bottom: 1rem;}
  .feature {padding: 1.5rem;}
}
