/*
 * SOL ANAL complete landing page styles
 * Bright, burlesque and playful aesthetic
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #f8e6ff;
  background: #0c031d;
  overflow-x: hidden;
}

/* Hero styles */
.hero {
  position: relative;
  padding: 3rem 1rem 2rem;
  background: radial-gradient(circle at top left, #52005f, #0c031d 70%);
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.supply {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ffd4fc;
}

.cta {
  display: inline-block;
  background: #ff00a5;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: scale(1.05);
}

.hero-art {
  position: absolute;
  right: -50px;
  bottom: -20px;
  width: 300px;
  max-width: 60%;
  opacity: 0.8;
  z-index: 1;
}

/* Navigation */
.nav {
  background: #2b014d;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0.8rem 0;
}

.nav-list a {
  color: #e7b5fc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: #fff;
}

/* Generic section */
.section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff99e8;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Tokenomics table */
.tokenomics-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.tokenomics-table th,
.tokenomics-table td {
  padding: 0.7rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-table th {
  background: #38005a;
  color: #ffdefc;
}

.tokenomics-table td {
  background: #210034;
}

.tokenomics-table tr:nth-child(even) td {
  background: #2a0040;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 40px;
  border-left: 3px solid #ff00a5;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-circle {
  position: absolute;
  left: -17px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff00a5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline-content {
  margin-left: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  color: #f6b1ff;
}

.timeline-content p {
  margin: 0;
  color: #e5c4ff;
}

/* Experiments list */
.experiments-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.experiments-list li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  position: relative;
}

.experiments-list li::before {
  content: '★';
  position: absolute;
  left: -1rem;
  color: #ff69b4;
}

/* Gallery */
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 165, 0.3);
}

/* FAQ */
.faq-section .faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  color: #f3a1ff;
}

.faq-item p {
  margin: 0;
  color: #e6c6ff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #1c0138;
  font-size: 0.9rem;
  color: #b38bc9;
}

.footer a {
  color: #ff99e6;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-art {
    width: 450px;
  }
}