/* 
 * aiporncum.love - Main Stylesheet
 * A completely different design with mint/teal gradient theme
 */

:root {
  /* Color variables - completely different palette */
  --primary: #00C9FF;
  --secondary: #92FE9D;
  --dark: #121212;
  --darker: #0A0A0A;
  --light: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-800: #343a40;
  --text: #f0f0f0;
  
  /* Gradients and effects */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--darker));
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  
  /* Sizing and spacing */
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --header-height: 80px;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
  flex-shrink: 0;
}

.site-title {
  font-size: 1.8rem;
  margin-bottom: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 1.8rem;
  height: 2px;
  background: var(--primary);
  margin: 5px auto;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  overflow: hidden;
  background-color: var(--darker);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.1;
  top: -200px;
  right: -200px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.08;
  bottom: -150px;
  left: -150px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.primary-button {
  background: var(--gradient-primary);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.primary-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 201, 255, 0.4);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: var(--light);
  margin-left: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: var(--dark);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary), 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.feature-card p {
  opacity: 0.8;
}

/* Quality Section */
.quality {
  padding: 8rem 0;
  background-color: var(--darker);
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.quality-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.quality-feature h3 {
  margin-bottom: 0.5rem;
}

.number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.8;
}

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

/* Access Section */
.access {
  padding: 8rem 0;
  background-color: var(--dark);
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

.access-card {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header {
  margin-bottom: 2rem;
}

.card-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-list {
  margin-bottom: 3rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

.cta-button {
  background: var(--gradient-primary);
  color: var(--dark);
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
  box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 201, 255, 0.4);
}

/* Footer */
.site-footer {
  background-color: var(--darker);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

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

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.link-group h4 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.link-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gradient-primary);
}

.link-group ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-group a {
  opacity: 0.8;
}

.link-group a:hover {
  opacity: 1;
  color: var(--primary);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .quality-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .quality-visual {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: var(--darker);
    flex-direction: column;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: calc(var(--header-height) + 1rem);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .secondary-button {
    margin-left: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
