/* ============================================
   Bio Page Styles
   ============================================ */

:root {
  --cyan-primary: #4ec9de;
  --cyan-dark: #2aafc7;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-2: #1c1c1c;
  --white: #ffffff;
  --text-light: #e8f9fd;
  --text-muted: #a0c4cd;
  --text-footer: #a0c4cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato", sans-serif;
  background-color: var(--dark);
  color: var(--white);
  margin: 0;
  padding: 0;
}

/* ============================================
   Navbar
   ============================================ */

/* ============================================
   Navbar
   ============================================ */
.navbar {
  background-color: var(--black) !important;
  opacity: 1;
  transition: opacity 0.5s ease;
  border-bottom: 2px solid rgba(78, 201, 222, 0.25);
}

.navbar-hide {
  pointer-events: none;
  opacity: 0;
}

.navbar-content-container {
  width: 85%;
}

.nav-link {
  color: var(--text-light);
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link.show {
  color: var(--text-light);
}

.nav-link:active {
  text-decoration: none;
}

.nav-link:hover {
  color: var(--cyan-primary);
}

.nav-link:focus {
  color: var(--text-light);
}

.media-icon {
  font-size: 1.5rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.media-link {
  display: inline-block;
}

.media-link:hover .media-icon {
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .media-link {
    padding-right: 3.5%;
  }
}

.fa-bars {
  color: var(--text-light);
}

.btn-close {
  opacity: 1;
}

.mobile-logo {
  display: none;
  width: 60px;
}

.desktop-logo {
  width: 80px;
}

@media (max-width: 991px) {
  .mobile-logo {
    display: inline;
  }

  .desktop-logo {
    display: none;
  }
}

.offcanvas.offcanvas-end {
  width: 100%;
  background-color: var(--black);
  transition: transform 0.15s ease-in-out;
}

.offcanvas-header {
  width: 80%;
}

.offcanvas-body {
  width: 80%;
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(78, 201, 222, 0.2);
  border-radius: var(--radius-sm);
}

.dropdown-item {
  color: var(--text-light);
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(78, 201, 222, 0.15);
  color: var(--cyan-primary);
}

.back-link {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.back-link:hover {
  text-decoration: underline;
  color: var(--cyan-primary);
}

/* ============================================
   Back Link (in content area)
   ============================================ */

.bio-back-row {
  padding: 1.1rem 10%;
  background-color: var(--dark);
  border-bottom: 1px solid rgba(78, 201, 222, 0.08);
}

.bio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.bio-back-link:hover {
  text-decoration: underline;
  color: var(--cyan-primary);
}

/* ============================================
   Bio Page Layout
   ============================================ */

.bio-page {
  padding-top: 74px;
}

.bio-header {
  background-color: var(--black);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(78, 201, 222, 0.15);
}

.bio-provider-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.4rem;
}

.bio-provider-title {
  font-size: 1.05rem;
  color: var(--cyan-primary);
  font-weight: 700;
  margin: 0;
}

.bio-content {
  padding: 50px 10%;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.bio-photo {
  width: 260px;
  min-width: 260px;
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(78, 201, 222, 0.1);
}

.bio-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   Footer
   ============================================ */
.footer-section {
  background-color: var(--black);
  text-align: center;
  color: var(--white);
  padding: 1.75% 0;
  font-size: 0.85rem;
  width: 100%;
  border-top: 2px solid rgba(78, 201, 222, 0.25);
}

.footer-logo {
  width: 130px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-logo-container {
  text-align: center;
}

.footer-copyright {
  padding: 5px 5%;
  text-align: left;
  margin: 0;
  font-weight: 400;
  color: var(--text-footer);
}

.footer-link {
  font-size: 1.2rem;
  padding: 0 1%;
  display: inline-block;
  color: var(--text-footer) !important;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link:hover {
  color: var(--text-footer) !important;
  transform: translateY(-2px);
}

.footer-links {
  text-align: right;
  padding: 0 5%;
}

.footer-logo-container-mobile {
  display: none;
}

@media (max-width: 991px) {
  .footer-logo-container-mobile {
    display: block;
    text-align: center;
  }

  .footer-logo-container {
    display: none;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }
} 

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
  .bio-content {
    padding: 3rem 7%;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .bio-content {
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 6%;
    gap: 2rem;
  }

  .bio-photo {
    width: 60%;
    min-width: unset;
  }

  .bio-provider-name {
    font-size: 1.7rem;
  }

  .bio-header {
    padding: 2.5rem 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .bio-photo {
    width: 80%;
  }

  .bio-content {
    padding: 2rem 5%;
  }

  .bio-navbar {
    padding: 0.75rem 1.25rem;
  }
}
