/* ========== Hero Section Styles ========== */

#hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  height: 48.0625rem;
  padding-top: 5rem;
}

#hero-section-main-area {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  flex: 1 0 0;
  align-self: stretch;
}

#hero-section-gallery {
  flex: 1 0 0;
  align-self: stretch;
  overflow: hidden;
}

#hero-section-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  width: 52rem;
}

#hero-section-contents-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.hero-section-contents-heading-line {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.875rem;
}

.heading-line {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 4rem;
  font-style: normal;
  font-weight: var(--heading-font);
  line-height: normal;
}

#heading-image-1 {
  width: 5.25rem;
  height: 5.25rem;
  background: url(/public/media/gifs/namaste_16874953.gif) lightgray 50% / cover no-repeat;
}

#heading-image-2 {
  width: 5.25rem;
  height: 5.25rem;
  background: url(/public/media/images/Bharat_Mata_by_Abanindranath_Tagore.jpg) lightgray 0px -4.569px / 100% 184.688% no-repeat;
}

#hero-section-contents-heading-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ========== Hero Section: My Information ========== */

#hero-section-myinformation {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  gap: 0.875rem;
}

#hero-section-myinformation-text1,
#hero-section-myinformation-text2 {
  height: 78px;
  flex: 1 0 0;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--body-font);
  line-height: normal;
}

#hero-section-myinformation-text1 {
  text-align: right;
}

#hero-section-myinformation-text2 {
  text-align: left;
}

#hero-section-myinformation-image {
  height: 20rem;
  flex: 1 0 0;
  background: url(/public/media/gifs/me.gif) var(--color-bg-white) 50% / contain no-repeat;
}

/* ========== Responsive Styling ========== */

/* Tablet Screens (768px to 1024px) */
@media screen and (max-width: 1024px) {
  #hero-section {
    align-self: stretch;
    padding-top: 3rem;
    height: auto;
    gap: 3rem;
  }

  #hero-section-main-area {
    flex-direction: column;
    align-self: stretch;
    gap: 3rem;
  }

  #hero-section-contents {
    width: 100%;
    gap: 2rem;
    align-items: flex-start;
    align-self: stretch;
  }

  #hero-section-contents-heading {
    align-items: center;
    text-align: center;
  }

  .hero-section-contents-heading-line {
    flex-direction: row;
    justify-content: left;
    gap: 0.75rem;
    align-self: stretch;
  }

  .heading-line {
    font-size: 2rem;
    line-height: 1.2;
  }

  #heading-image-1,
  #heading-image-2 {
    width: 3.25rem;
    height: 3.25rem;
  }

  #hero-section-contents-heading-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  #hero-section-myinformation-text1,
  #hero-section-myinformation-text2 {
    font-size: 0.6rem;
  }

  #hero-section-myinformation-image {
    height: 9.375rem;
    background: url(/public/media/gifs/me.gif) var(--color-bg-white) 50% / contain no-repeat;
  }
}

/* Mobile Screens (up to 480px) */
@media screen and (max-width: 480px) {
  #hero-section {
    align-self: stretch;
    padding-top: 3rem;
    height: 80vh;
    gap: 3rem;
  }

  #hero-section-main-area {
    flex-direction: column;
    align-self: stretch;
    gap: 3rem;
  }

  #hero-section-contents {
    width: 100%;
    gap: 2rem;
    align-items: flex-start;
    align-self: stretch;
  }

  #hero-section-contents-heading {
    align-items: center;
    text-align: center;
  }

  .hero-section-contents-heading-line {
    flex-direction: row;
    justify-content: left;
    gap: 0.75rem;
    align-self: stretch;
  }

  .heading-line {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  #heading-image-1,
  #heading-image-2 {
    width: 2.25rem;
    height: 2.25rem;
  }

  #hero-section-contents-heading-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  #hero-section-myinformation-text1 {
    display: none;
  }

  #hero-section-myinformation-text2 {
    font-size: 0.5rem;
  }

  #hero-section-myinformation-image {
    height: 9.375rem;
    background: url(/public/media/gifs/me.gif) var(--color-bg-white) 50% / contain no-repeat;
  }
}
