/*
 * boltai.love - Main Stylesheet
 * Unique green/purple gradient theme with lightning bolt motifs
 */

/* ===== CSS Reset & Base Styles ===== */
:root {
  --color-primary: #2ecc71;
  --color-secondary: #9b59b6;
  --color-dark: #16213e;
  --color-darker: #1a1a2e;
  --color-light: #f0f0f0;
  --color-white: #ffffff;
  --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-reverse: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  --font-main: 'Roboto', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: #f9f9f9;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: var(--border-radius-sm);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Background Effects ===== */
.lightning-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
}

.lightning {
  position: absolute;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='400' viewBox='0 0 200 400'%3E%3Cpath d='M100,0 L60,160 L100,180 L70,400 L140,240 L100,220 L140,0' stroke='%232ecc71' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
}

.lightning-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 400px;
  opacity: 0.1;
}

.lightning-2 {
  top: 30%;
  right: 5%;
  width: 150px;
  height: 300px;
  transform: scaleX(-1);
  opacity: 0.08;
}

.lightning-3 {
  bottom: 10%;
  left: 20%;
  width: 180px;
  height: 360px;
  transform: rotate(15deg);
  opacity: 0.06;
}

/* ===== Header & Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
}

.logo-svg {
  margin-right: 0.5rem;
}

.logo-dot {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list a {
  color: var(--color-dark);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-main);
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background: var(--color-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  padding: 10rem 0 6rem;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.glowing-text {
  position: relative;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
  margin-bottom: 1.5rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

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

.bolt-circle {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bolt-icon {
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
  opacity: 0.6;
}

.p1 {
  top: 10%;
  left: 20%;
  animation: particle1 4s ease-in-out infinite;
}

.p2 {
  top: 80%;
  left: 50%;
  animation: particle2 5s ease-in-out infinite;
}

.p3 {
  top: 40%;
  right: 15%;
  animation: particle3 6s ease-in-out infinite;
}

.p4 {
  bottom: 20%;
  left: 10%;
  animation: particle4 7s ease-in-out infinite;
}

.p5 {
  top: 50%;
  right: 25%;
  animation: particle5 8s ease-in-out infinite;
}

@keyframes particle1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

@keyframes particle2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, -25px); }
}

@keyframes particle3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 30px); }
}

@keyframes particle4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -15px); }
}

@keyframes particle5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -10px); }
}

/* ===== Collection Section ===== */
.collection {
  padding: 6rem 0;
  text-align: center;
  background-color: #f7f9fc;
}

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

.collection-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.collection-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.collection-image svg {
  width: 100%;
  height: 100%;
}

.collection-info {
  padding: 1.5rem;
}

.collection-info h3 {
  margin-bottom: 0.5rem;
}

.collection-info p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #666;
}

/* ===== Features Section ===== */
.features {
  padding: 6rem 0;
  text-align: center;
  background-color: var(--color-white);
}

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

.feature-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* ===== About Section ===== */
.about {
  padding: 6rem 0;
  background-color: #f7f9fc;
}

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

.about-list {
  margin-top: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.check-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

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

.access-card {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 3rem;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.access-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.access-features li {
  display: flex;
  align-items: center;
}

.bolt-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  opacity: 0.3;
  z-index: 0;
}

.access-content {
  position: relative;
  z-index: 1;
}

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

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

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-nav h4,
.footer-info h4 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-nav ul li a {
  color: var(--color-light);
}

.footer-nav ul li a:hover {
  color: var(--color-primary);
}

.footer-info p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

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

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero .container,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-list li {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    background-color: white;
    box-shadow: var(--shadow-lg);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list li {
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
  }
  
  .features-grid,
  .access-features {
    grid-template-columns: 1fr;
  }
  
  .access-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
