/*
   aisuccubuspornpic.love - Main Styles
   Dark red and black theme with diagonal elements
*/

:root {
  /* Color Palette - Dark Red and Black Theme */
  --primary: #8B0000;       /* Dark Red */
  --primary-light: #C41E3A; /* Crimson */
  --primary-dark: #4A0404;  /* Very Dark Red */
  --accent: #333333;        /* Dark Gray */
  --accent-light: #666666;  /* Medium Gray */
  --text-light: #F8F8F8;    /* Off-White */
  --text-dark: #121212;     /* Almost Black */
  --bg-dark: #0A0A0A;       /* Near Black */
  --bg-light: #1E1E1E;      /* Dark Gray */
  --border: rgba(200, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(45deg, rgba(75, 0, 0, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(75, 0, 0, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(75, 0, 0, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(75, 0, 0, 0.05) 75%);
  background-size: 20px 20px;
}

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

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

h1 {
  font-size: 2rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Header */
header {
  background: linear-gradient(to right, var(--primary-dark), var(--bg-dark));
  color: var(--text-light);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--primary);
}

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

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

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Cinzel', serif;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: none;
  list-style: none;
}

nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--primary);
  padding: 1rem 0;
}

nav ul li {
  margin: 0.5rem 1rem;
  position: relative;
}

nav ul a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(74, 4, 4, 0.9)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23C41E3A' fill-opacity='0.1' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
  color: var(--text-light);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at top right, rgba(196, 30, 58, 0.2), transparent 70%),
    radial-gradient(circle at bottom left, rgba(196, 30, 58, 0.2), transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

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

.highlight {
  color: var(--primary-light);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary-light);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background: var(--bg-light);
}

.gallery h2 {
  text-align: center;
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--bg-dark);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 30, 58, 0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(196, 30, 58, 0.3);
}

.gallery-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, transparent 20%, rgba(196, 30, 58, 0.1) 50%, transparent 80%);
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-light);
}

.gallery-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent-light);
}

.view-btn {
  display: block;
  text-align: center;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 0.8rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.view-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.view-btn:hover {
  background: var(--primary);
}

.view-btn:hover::before {
  left: 0;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1), transparent 70%);
  border-radius: 50%;
}

.features h2 {
  text-align: center;
  color: var(--text-light);
}

.features-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(30, 30, 30, 0.5);
  border-left: 3px solid var(--primary);
  position: relative;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(30, 30, 30, 0.8);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature h3 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.feature p {
  color: var(--text-light);
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--primary-dark), var(--bg-dark));
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B0000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta h2 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--primary-dark);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 60px;
  height: 60px;
}

.footer-text {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Media Queries */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .nav-toggle {
    display: none;
  }
  
  nav ul {
    display: flex;
    flex-direction: row;
  }
  
  nav ul li {
    margin: 0 0 0 1.8rem;
  }
  
  .features-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}
