/* ============================================
   Homepage Styles - 50:50 Split Layout
   With Abstract Visual Element
   ============================================ */

/* ===== Hero Container - Full viewport ===== */
#hero-heading {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* ===== Abstract Visual Element ===== */
#hero-heading::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background:
    /* Main amber blob */
    radial-gradient(ellipse 50% 40% at 60% 50%, rgba(212, 160, 58, 0.15) 0%, transparent 70%),
    /* Secondary slate blob */
    radial-gradient(ellipse 40% 50% at 40% 70%, rgba(45, 48, 71, 0.08) 0%, transparent 60%),
    /* Small accent circles - like molecules/droplets */
    radial-gradient(circle at 70% 30%, rgba(212, 160, 58, 0.2) 0%, transparent 8%),
    radial-gradient(circle at 55% 60%, rgba(212, 160, 58, 0.15) 0%, transparent 6%),
    radial-gradient(circle at 80% 70%, rgba(45, 48, 71, 0.12) 0%, transparent 10%),
    radial-gradient(circle at 45% 40%, rgba(212, 160, 58, 0.1) 0%, transparent 5%),
    radial-gradient(circle at 65% 80%, rgba(45, 48, 71, 0.08) 0%, transparent 7%);
  z-index: 0;
  pointer-events: none;
}

/* ===== Solana Template - 50:50 Grid ===== */
.quarto-about-solana .about-entity {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== Left Side - Image ===== */
.quarto-about-solana .about-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quarto-about-solana .about-image {
  width: 100% !important;
  max-width: 400px !important;
  border-radius: 50%;
  box-shadow:
    0 30px 60px -15px rgba(45, 48, 71, 0.2),
    0 0 0 6px rgba(212, 160, 58, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quarto-about-solana .about-image:hover {
  transform: scale(1.03);
  box-shadow:
    0 35px 70px -15px rgba(45, 48, 71, 0.25),
    0 0 0 8px rgba(212, 160, 58, 0.15);
}

/* ===== Right Side - Content ===== */
.quarto-about-solana .about-contents {
  padding-right: 2rem;
}

/* Title */
#hero-heading h2.title,
#hero-heading .about-heading {
  font-family: "Fraunces", serif !important;
  font-size: 3.5rem !important;
  font-weight: 400 !important;
  color: #2d3047 !important;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

/* Subtitle */
#hero-heading .subtitle,
#hero-heading .about-subtitle {
  font-family: "Inter", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4a03a !important;
  margin-bottom: 2rem;
}

/* Bio text */
#hero-heading .about-contents p,
#hero-heading .about-contents .content p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.25rem;
}

#hero-heading .about-contents strong {
  color: #2d3047;
  font-weight: 600;
}

/* ===== Social Links - Pill Buttons ===== */
#hero-heading .about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

#hero-heading .about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 2px solid #d4a03a;
  border-radius: 50px;
  color: #d4a03a;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

#hero-heading .about-link:hover {
  background: #d4a03a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 160, 58, 0.35);
}

#hero-heading .about-link i,
#hero-heading .about-link .bi {
  font-size: 1.1rem;
}

/* ===== Dark Mode ===== */
.quarto-dark #hero-heading::before {
  background:
    radial-gradient(ellipse 50% 40% at 60% 50%, rgba(212, 160, 58, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 40% 70%, rgba(200, 200, 220, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 160, 58, 0.15) 0%, transparent 8%),
    radial-gradient(circle at 55% 60%, rgba(212, 160, 58, 0.1) 0%, transparent 6%),
    radial-gradient(circle at 80% 70%, rgba(200, 200, 220, 0.08) 0%, transparent 10%);
}

.quarto-dark #hero-heading h2.title,
.quarto-dark #hero-heading .about-heading {
  color: #e8e8ec !important;
}

/* Subtitle - same styling as light mode, just color adjusted */
.quarto-dark #hero-heading .subtitle,
.quarto-dark #hero-heading .about-subtitle {
  font-family: "Inter", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4a03a !important;
  margin-bottom: 2rem;
}

.quarto-dark #hero-heading .about-contents p {
  color: #c0c0c8;
}

.quarto-dark #hero-heading .about-contents strong {
  color: #e8e8ec;
}

/* Social links in dark mode */
.quarto-dark #hero-heading .about-link {
  border-color: #d4a03a;
  color: #d4a03a;
}

.quarto-dark #hero-heading .about-link:hover {
  background: #d4a03a;
  color: #1a1a2e;
}

.quarto-dark .quarto-about-solana .about-image {
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.4),
    0 0 0 6px rgba(212, 160, 58, 0.15);
}

/* ===== Responsive - Stack on mobile ===== */
@media (max-width: 992px) {
  #hero-heading {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  #hero-heading::before {
    width: 100%;
    right: 0;
    opacity: 0.7;
  }

  .quarto-about-solana .about-entity {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    text-align: center;
  }

  .quarto-about-solana .about-contents {
    padding-right: 0;
    order: 2;
  }

  .quarto-about-solana .about-image-container {
    order: 1;
  }

  .quarto-about-solana .about-image {
    max-width: 280px !important;
  }

  #hero-heading h2.title,
  #hero-heading .about-heading {
    font-size: 2.5rem !important;
  }

  #hero-heading .about-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  #hero-heading h2.title,
  #hero-heading .about-heading {
    font-size: 2rem !important;
  }

  #hero-heading .subtitle,
  #hero-heading .about-subtitle {
    font-size: 0.9rem !important;
  }

  #hero-heading .about-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}
