/* 
 * aipornporn.love CSS
 * Purple/Green Diamond Design
 */

:root {
  /* Color scheme - completely different from previous sites */
  --primary: #9C27B0;
  --secondary: #4CAF50;
  --accent: #8E24AA;
  --dark: #212121;
  --light: #FFFFFF;
  --bg-light: #F9F6FB;
  --gray: #757575;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 span {
  color: var(--primary);
  position: relative;
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--gradient);
  color: var(--light);
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
  color: var(--light);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(156, 39, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: var(--space-sm) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 900;
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

nav a {
  color: var(--dark);
  font-weight: 700;
  position: relative;
}

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

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

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

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

.menu-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  left: 0;
}

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

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

.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--dark);
  color: var(--light);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg transform='rotate(45 30 30)'%3E%3Crect x='27' y='0' width='6' height='60' fill='%239C27B0' fill-opacity='0.05'/%3E%3Crect x='0' y='27' width='60' height='6' fill='%234CAF50' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--light);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Section */
.gallery {
  padding: var(--space-xl) 0;
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 3/2;
}

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

.gallery-item svg {
  width: 100%;
  height: 100%;
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.feature {
  background: var(--light);
  padding: var(--space-lg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.feature .icon {
  margin: 0 auto var(--space-md);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

/* CTA Section */
.cta {
  padding: var(--space-xl) 0;
  text-align: center;
  background: var(--dark);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg transform='rotate(45 50 50)'%3E%3Crect x='47' y='0' width='6' height='100' fill='%239C27B0' fill-opacity='0.05'/%3E%3Crect x='0' y='47' width='100' height='6' fill='%234CAF50' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}

.cta h2 {
  color: var(--light);
  position: relative;
  z-index: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: var(--space-lg) 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.5rem;
}

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

.footer-nav {
  display: flex;
  gap: var(--space-lg);
}

.footer-nav a {
  color: var(--light);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background: var(--light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  nav ul.active {
    display: flex;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .gallery-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
