/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #fff, #e96cbf);
}

/* HEADER */
.logo {
  height: 100px;
}
.nav-box {
  border: 2px solid #e96cbf;
  border-radius: 30px;
  padding: 6px 12px;
  display: flex;
  gap: 10px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
  transition: .3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: #e96cbf;
  color: #fff !important;
}
.contact-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
}
.contact-btn:hover {
  background: #e96cbf;
  color: #000;
}

/* ATHLETE SECTION */
.athlete-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.athlete-box {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  padding: 30px 50px;
  justify-content: space-between;
}

.athlete-photo {
  width: 250px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.athlete-center {
  flex: 1;
}
.athlete-name {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-sm {
  width: 18px;
  height: 18px;
}
.athlete-info {
  font-size: 18px;
  margin-top: 15px;
}
.athlete-info p {
  border-bottom: 1px solid #000;
  margin-bottom: 8px;
  padding-bottom: 2px;
  width: fit-content;
}
.athlete-bio {
  background: rgba(255, 192, 220, 0.35); 
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
  font-size: 15px;
  margin-top: 31px;  
  margin-bottom: 0;   
  min-height: 220px;      
  display: flex;
  align-items: center;
}

.athlete-bio p {
  margin: 0;
  line-height: 1.5;
}


.icon-black {
  filter: brightness(0); 
}


/* RIGHT PANEL */
.athlete-right {
  width: 250px;
}
.achievements {
  background: linear-gradient(to bottom, #f6c1e4, #e96cbf);
  border-radius: 20px;
  padding: 20px;
  text-align: center;      
}

.achievements ul {
  padding-left: 0;            
  list-style-position: inside; 
}

.achievements h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.year em {
  font-style: italic;
  display: block;
  margin-bottom: 8px;
  text-decoration: underline;
}
.year ul {
  list-style-type: disc;
  padding-left: 18px;
  margin-bottom: 16px;
}

.year ul li {
  font-size: 15px;
  margin-bottom: 4px;
}

/* FOOTER */
.footer {
  background: linear-gradient(to bottom, transparent, #e96cbf);
  color: #000;
  padding: 14px 0;
}
.footer-logo {
  height: 100px;
}
.footer-icon {
  width: 20px;
  height: 20px;
}
footer .nav-link {
  color: #000 !important;
  text-decoration: none;
}
footer .nav-link:hover {
  background-color: #fff;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  html, body {
    overflow-y: auto;
  }

  .athlete-box {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .athlete-left, .athlete-right {
    width: 100%;
    text-align: center;
  }

  .athlete-center {
    width: 100%;
  }

  .achievements {
    margin-top: 20px;
  }

  .navbar-collapse {
    background-color: #000;
    border-radius: 20px;
    padding: 20px 0;
    margin-top: 15px;
    text-align: center;
  }

  .nav-box {
    flex-direction: column;
    align-items: center;
    border: none;
    gap: 10px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .navbar-nav {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
  }

  .navbar-nav .nav-link.active {
    background-color: #e96cbf !important;
    color: #fff !important;
  }
}
