/* Show only light image when using 'default' scheme */
[data-md-color-scheme="default"] .only-dark {
  display: none;
}
[data-md-color-scheme="default"] .only-light {
  display: block;
}

[data-md-color-scheme="slate"] .only-light {
  display: none;
}
[data-md-color-scheme="slate"] .only-dark {
  display: block;
}

/* Dark mode documentation background */
[data-md-color-scheme="slate"] .md-main {
  background-color: #0f172a;  /* blue-black */
}

/* Light mode documentation background */
[data-md-color-scheme="default"] .md-main {
  background-color: #ffffff;
}

/* Show only dark image when using 'slate' scheme */
/*
[data-md-color-scheme="slate"] .only-dark {
  display: block;
}
[data-md-color-scheme="slate"] .only-light {
  display: none;
}
*/

/* body {
  background-color: #0f172a;
  color: #0f172a;
} */

/* Dark mode */
[data-md-color-scheme="slate"] .hero-section {
  background: linear-gradient(
    180deg,
    #111827 0%,
    #0f172a 100%
  );
  padding: 2.5rem 5rem 4rem 5rem;
}

/* Light mode */
[data-md-color-scheme="default"] .hero-section {
  background: linear-gradient(
    180deg,
    #111827 0%,
    #0f172a 100%
  );
  padding: 2.5rem 5rem 4rem 5rem;
}

/* Hide light logo in dark mode */
[data-md-color-scheme="slate"] .logo-light {
  display: none;
}

[data-md-color-scheme="slate"] .logo-dark {
  display: block;
}

/* Hide dark logo in light mode */
[data-md-color-scheme="default"] .logo-dark {
  display: none;
}

[data-md-color-scheme="default"] .logo-light {
  display: block;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.0rem;          
  font-weight: 600;            
  color: #f3f4f6;
  letter-spacing: -0.3px;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
  
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-description {
  font-size: 1.25rem;      /* Smaller than subtitle */
  font-weight: 400;
  color: #9aa0a6;          /* Soft neutral gray */
  line-height: 1.7;        /* Good readability */
  max-width: 620px;        /* Prevents full-width stretching */
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;   /* Space before buttons */
}

.hero-logo-small {
  width: 300px;        /* Adjust size here */
  display: block; 
  margin: 0 auto 0.1rem auto;
}
  
.hero-container {
  max-width: 900px;
  margin: 0 auto;           /* centers the container */
  text-align: center;       /* centers text */
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center children */
}
  
.hero-center {
  text-align: center;    /* Or center if you prefer */
}

.hero-btn.primary {
  background: #ff2e88;
  color: white;
}
  
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

/* Base faded look */
.hero-btn {
  background: rgba(255,255,255,0.08);
  color: #e5e5e5;
  border-color: rgba(255,255,255,0.12);
}

/* Dark mode base */
body.dark-mode .hero-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e5e5;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Light mode base */
body.light-mode .hero-btn {
  background: rgba(0, 0, 0, 0.05);
  color: #1f1f1f;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Hover — universal */
.hero-btn:hover {
  background: #ff2e88;
  color: white;
  border-color: #ff2e88;
  box-shadow: 0 6px 20px rgba(255, 46, 136, 0.35);
  transform: translateY(-2px);
}

.hero-btn.active {
  background: #ff2e88;
  color: white;
  border-color: #ff2e88;
  box-shadow: 0 6px 20px rgba(255, 46, 136, 0.35);
}

.section-title-white {
  text-align: center;
  font-weight: 600;
  font-size: 2.1rem;
  margin: 0.8rem 0 0.3rem 0;
  color: #ffffff;
}

.section-title {
  text-align: center;
  font-weight: 600;
  font-size: 2.1rem;
  margin: 0.8rem 0 0.3rem 0;
  color: #0f172a;
}

.section-title p {
  margin: 0;
}

.hero-demo {
  width: 65%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
  margin: 2rem auto;
}

.gif-wrapper {
  width: 100%;
  height: 500px;          /* visible cropped height */
  overflow: hidden;
  display: flex;
  justify-content: center;  /* center horizontally */
}

.gif-image {
  width: 80%;
  margin-top: -100px;
}

.result-image img {
  width: 100%;       /* increase size */
  max-width: 900px; /* optional cap */
  height: auto;
  margin: 0 auto;
}

.custom-link i {
  color: rgba(255, 46, 136, 0.75);
}

.custom-link:hover i {
  color: #ff2e88;
}

.custom-link-text2 {
  color: #ff2e88;
  text-decoration: none;
  transition: color 0.25s ease;
}

.feature-image2 img {
  width: 100%;
  max-width: 1100px;   /* control how large */
  height: auto;
  margin: 0 auto;
  display: block;
}