/* 
  aiincestporn.pw - Styles
  A unique design with green color scheme and side panel navigation
*/

:root {
  --primary: #008755;       /* Green */
  --primary-light: #00C853; /* Light Green */
  --secondary: #DAA520;     /* Gold */
  --dark: #112211;          /* Dark Green-Black */
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --shadow: 0 10px 30px rgba(0, 135, 85, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fcfcfc;
  overflow-x: hidden;
}

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

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

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-light);
}

section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

section:last-child {
  margin-bottom: 0;
}

/* Layout */
.wrapper {
  display: flex;
  min-height: 100vh;
}

.side-panel {
  width: 280px;
  background: var(--dark);
  color: var(--light);
  padding: 30px 0;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.3s ease;
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 0 30px 50px;
}

/* Side Panel Styles */
.logo {
  padding: 0 30px;
  margin-bottom: 40px;
}

.logo-svg {
  width: 100%;
  max-width: 200px;
}

.side-nav ul {
  list-style: none;
}

.side-nav li {
  margin-bottom: 5px;
}

.side-nav a {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: var(--transition);
}

.side-nav a:hover,
.side-nav a.active {
  color: var(--light);
  background: rgba(0, 135, 85, 0.2);
}

.nav-icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.cta-sidebar {
  margin-top: auto;
  padding: 0 30px 20px;
}

.btn-sidebar {
  width: 100%;
  text-align: center;
}

/* Mobile Header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 20px;
}

.mobile-logo {
  max-width: 150px;
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  margin-bottom: 5px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

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

.btn-secondary {
  background: rgba(0, 135, 85, 0.1);
  color: var(--primary) !important;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 135, 85, 0.25);
}

.btn-secondary:hover {
  background: rgba(0, 135, 85, 0.2);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.hero-content {
  flex: 1;
}

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

.hero-text {
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 30px;
}

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

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

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

/* Technology Section */
.tech-section {
  text-align: center;
  padding: 60px 40px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  padding: 30px 20px;
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

/* Examples Section */
.examples-section {
  text-align: center;
  padding: 60px 40px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.example-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.example-placeholder {
  width: 100%;
  height: 200px;
}

.example-card h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.example-card p {
  font-size: 0.9rem;
  padding: 0 15px 20px;
  margin-bottom: 0;
}

.examples-cta {
  margin-top: 40px;
}

/* Features Section */
.features-section {
  padding: 60px 40px;
}

.features-list {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  min-width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 20px;
}

.feature-content h3 {
  margin-bottom: 10px;
}

.feature-content p {
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  color: var(--light);
  text-align: center;
  padding: 60px 40px;
}

.cta-content h2 {
  color: var(--light);
  margin-bottom: 15px;
}

.cta-content h2:after {
  display: none;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: var(--light);
  color: var(--primary) !important;
}

.cta-section .btn-primary:hover {
  background: var(--light);
}

/* Privacy Section */
.privacy-section {
  padding: 60px 40px;
}

.privacy-content {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.privacy-icon {
  width: 120px;
  flex-shrink: 0;
}

.privacy-text p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 60px 40px;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.faq-item p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 30px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo p {
  margin-top: 15px;
  opacity: 0.7;
  max-width: 250px;
}

.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-favicon img {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-favicon img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.pulse {
  animation: pulse 2s infinite;
}

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

.node {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.node:nth-child(1) { animation-delay: 0.2s; }
.node:nth-child(2) { animation-delay: 0.4s; }
.node:nth-child(3) { animation-delay: 0.6s; }
.node:nth-child(4) { animation-delay: 0.8s; }
.node:nth-child(5) { animation-delay: 1.0s; }
.node:nth-child(6) { animation-delay: 1.2s; }

/* Media Queries */
@media (max-width: 1024px) {
  .tech-grid,
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-section {
    flex-direction: column;
    padding: 40px 30px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wrapper {
    display: block;
  }
  
  .side-panel {
    transform: translateX(-100%);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .side-panel.active {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 0 20px 50px;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  section {
    padding: 40px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .tech-grid,
  .examples-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-icon {
    margin: 0 auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 90%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}
