/* 
  pornais.love - Main Stylesheet
  Modern design with purple and pink gradient theme
*/

:root {
  /* Color Variables - Unique palette different from previous sites */
  --primary: #B8336A;      /* Raspberry */
  --secondary: #726DA8;    /* Lavender purple */
  --tertiary: #D1B1CB;     /* Light lavender */
  --dark: #2C0735;         /* Deep purple */
  --dark-accent: #6247AA;  /* Medium purple */
  --text: #FFFFFF;         /* White text */
  --text-muted: #D1B1CB;   /* Muted light text */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--dark-accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #190019 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

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

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

ul {
  list-style: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 51, 106, 0.4);
}

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

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 1.5rem 3.6rem;
  font-size: 1.8rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(44, 7, 53, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(114, 109, 168, 0.15) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: var(--space-md);
}

.hero-text p {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

.hero-image {
  position: relative;
}

.highlight {
  color: var(--primary);
}

/* Features Section */
.features {
  padding: var(--space-lg) 0;
  background-color: rgba(44, 7, 53, 0.7);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto var(--space-md);
  opacity: 0.8;
}

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

.feature-card {
  padding: var(--space-md);
  background: rgba(98, 71, 170, 0.2);
  border: 1px solid rgba(209, 177, 203, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(209, 177, 203, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-sm);
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-lg) 0;
  background-color: var(--dark);
}

.steps {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.step {
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -60px;
  width: 50px;
  height: 2px;
  background: var(--tertiary);
  opacity: 0.5;
}

.step-number {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--text);
  box-shadow: var(--shadow);
}

.step h3 {
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Gallery Section */
.gallery {
  padding: var(--space-lg) 0;
  background-color: rgba(44, 7, 53, 0.9);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: rgba(98, 71, 170, 0.3);
  border: 1px solid rgba(209, 177, 203, 0.2);
}

.gallery-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(44, 7, 53, 0.9));
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section */
.cta {
  padding: var(--space-lg) 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta h2 {
  margin-bottom: var(--space-sm);
}

.cta p {
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

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

.cta .btn:hover {
  background: var(--dark);
  color: white;
}

/* Footer */
.footer {
  padding: var(--space-lg) 0 var(--space-sm);
  background-color: var(--dark);
  border-top: 1px solid rgba(209, 177, 203, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand img {
  width: 100px;
  margin-bottom: var(--space-sm);
}

.footer-about {
  margin-bottom: var(--space-md);
  opacity: 0.8;
  font-size: 1.4rem;
}

.footer-heading {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link {
  color: var(--text-muted);
  font-size: 1.4rem;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(209, 177, 203, 0.1);
  font-size: 1.3rem;
  opacity: 0.7;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--dark);
    width: 100%;
    padding: var(--space-md) 0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    margin: var(--space-xs) 0;
  }
  
  .hero {
    padding-top: 12rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    margin-bottom: var(--space-xs);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
