/* -------------------------------------------------
   INDEX PAGE – PAGE-SPECIFIC STYLES ONLY
------------------------------------------------- */

/* The main landing panel (was .center-panel previously) */
#index-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  /* Restore old center-panel sizing */
  padding: 2.5rem 3rem;
  gap: 1.8rem;
  border-radius: 18px;

  max-width: 700px; /* matches old hero panel */
  margin: 0 auto;
}

/* Ensure the first section centers vertically like before */
.section-wrapper:first-of-type {
  /*min-height: calc(100vh - 140px); !* header + footer spacing *!*/
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make name-logo SVG match old sizing */
#name-logo svg {
  width: 320px;
  max-width: 90%;
}


/* -------------------------------------------------
   HERO SECTION CONTENT (optional future expansion)
------------------------------------------------- */

.index-hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.index-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
}

.index-hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}


/* -------------------------------------------------
   BUTTON GROUP
------------------------------------------------- */

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

/* Restore old big button sizing */
.main-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}


/* -------------------------------------------------
   OPTIONAL INDEX FEATURE SECTION
------------------------------------------------- */

.index-feature-section {
  width: 100%;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem 1rem;
  text-align: center;
}

.index-feature-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.index-feature-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.index-feature-item {
  width: 260px;
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.index-feature-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

.index-feature-item p {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
}


/* -------------------------------------------------
   MOBILE RESPONSIVE
------------------------------------------------- */

@media (max-width: 700px) {

  #index-page {
    padding: 2rem 1rem;
    max-width: 95%;
  }

  #name-logo svg {
    width: 260px;
  }

  .button-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .main-btn {
    width: 100%;
    font-size: 1.1rem;
  }

  .index-hero h1 {
    font-size: 2.3rem;
  }

  .index-hero p {
    font-size: 1rem;
  }

  .index-feature-grid {
    gap: 0.8rem;
  }

  .index-feature-item {
    width: 100%;
  }
}
