/* styles.css for aigeneratedpornsites.love */
:root {
  --primary: #22577A;
  --primary-light: #38A3A5;
  --secondary: #57CC99;
  --accent: #C7F9CC;
  --dark: #212121;
  --light: #F2F5F7;
  --text: #333333;
  --text-light: #666666;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background-color: var(--light);
  display: flex;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  color: var(--primary);
  line-height: 1.3;
}

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

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

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

/* Side Navigation */
.sidenav {
  width: 250px;
  height: 100vh;
  background-color: var(--primary);
  color: white;
  position: fixed;
  padding: 2rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.logo-container {
  padding: 0 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.sidenav nav {
  display: flex;
  flex-direction: column;
}

.sidenav nav a {
  padding: 0.8rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sidenav nav a:hover,
.sidenav nav a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-left: 4px solid var(--secondary);
}

.icon {
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* Main Content */
main {
  flex: 1;
  margin-left: 250px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 5rem 0;
}

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

.hero-text {
  flex: 1;
}

.hero-text h1,
.hero-text p {
  color: white;
}

.hero-visual {
  flex: 1;
  max-width: 500px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(87, 204, 153, 0.3);
}

.cta-button:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(87, 204, 153, 0.4);
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Sites Section */
.sites-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
}

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

.site-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

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

.site-info {
  flex: 1;
}

.tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tags span {
  background-color: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Tech Section */
.tech-section {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
}

.tech-section h2,
.tech-section .section-intro {
  color: white;
}

.tech-section .section-intro {
  opacity: 0.9;
}

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

.feature {
  text-align: center;
}

.feature svg {
  margin: 0 auto 1.5rem;
}

.feature h3 {
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.cta-section .cta-button:hover {
  background-color: var(--accent);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-legal p:first-child {
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .sidenav {
    width: 200px;
  }
  
  main {
    margin-left: 200px;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  
  .sidenav {
    width: 100%;
    height: auto;
    position: relative;
    padding: 1rem 0;
    transform: translateY(0);
  }
  
  .sidenav.open {
    height: 100vh;
  }
  
  .sidenav nav {
    display: none;
  }
  
  .sidenav.open nav {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .sidenav.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .sidenav.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .sidenav.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  main {
    margin-left: 0;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .site-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
}
