/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap");

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

html {
  user-select: none; // chrome and Opera
  -moz-user-select: none; // Firefox
  -webkit-text-select: none; // IOS Safari
  -webkit-user-select: none; // Safari
}


/* Main Content Styling */
main {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 75vh;
}

main > h1 {
  font-size: 2.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -1px;
}

main > h1 p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 2px solid #D9D9D9;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}

nav div {
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

main nav p {
  font-weight: 600;
}

nav .selected {
  border-bottom: 3px solid #19A89D;
}

main nav .selected > p {
  color: #19A89D;
}

/* Content Styling */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.nindya, .mentee, .mentor{
  display: flex;
  flex-direction: row;
  gap: 5em;
}

.illustration{
  width: 40%;
}

@media (max-width: 820px){
  .illustration{
    display: none;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 700px;
}

.content-wrapper .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.content-wrapper .title img {
  height: 5rem;
}

.content-wrapper .text p {
  font-weight: 700;
  color: #B6B6B6;
  margin-bottom: 0.5rem;
}

.content-wrapper .text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.content-wrapper .description {
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.content-wrapper .attribute {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-wrapper .attribute h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.content-wrapper .attribute > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.content-wrapper .attribute > div div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-wrapper a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #19A89D;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out;
  border-style: solid;
}

.closed_button{
  background-color: #B6B6B6 !important;
  cursor: not-allowed !important;
}

.regist-button:hover {
  background-color: white;
  color: #19A89D;
  border-style: solid;
  border-color: #19A89D;
}

@media only screen and (min-width: 768px) {
  .content-wrapper {
    text-align: left;
    align-items: flex-start;
  }

  .content-wrapper .text h2 {
    font-size: 2.5rem;
  }

  .content-wrapper .attribute {
    flex-direction: row;
    justify-content: space-between;
  }

  .content-wrapper .attribute > div {
    flex-grow: 1;
    max-width: 45%;
  }
}

/* Mentor and Mentee Specific Styles */


/*.mentee a {*/
/*  color: black;*/
/*  background-color: #D7E024;*/
/*  border: solid;*/
/*  border-color: #D7E024;;*/
/*}*/

/*.mentee a:hover {*/
/*  color: black;*/
/*  background-color: white;*/
/*  border: solid;*/
/*  border-color: #D7E024;;*/
/*}*/

.closed_button {
  background-color: #B6B6B6 !important;
  cursor: not-allowed;
}

.closed_text {
  color: #B6B6B6;
}