/* Make the entire hero section transparent */
.transparent-section {
    background-color: transparent !important;
}

/* Remove Bootstrap’s default list group background and borders */
.transparent-item {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* faint outline for contrast */
    transition: all 0.3s ease;
}

/* Hover effect — soft glow */
.transparent-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    /* very subtle highlight */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* < !-- leadership snapshot   */
/* < !-- START THE FEATURETTES --> */
.featurette-section {
    background: transparent;
}

/* Accent color for emphasis */
.text-accent {
    color: #00b4d8;
    /* DoD-style blue highlight */
}

/* Divider style */
.featurette-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 3rem 0;
}

/* Responsive image styles */
.featurette-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* DoD-style "mission patch" hover effect */
.mission-patch:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.4);
}

/* Responsive text behavior */
@media (max-width: 768px) {
    .featurette-heading {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* < !-- family legacy --> */
  #family-legacy {
      background: transparent;
  }

  /* Accent for headings & quotes */
  .text-accent {
      color: #00b4d8;
  }

  /* Card styling */
  .legacy-card {
      background: rgba(255, 255, 255, 0.05);
      /* transparent overlay */
      transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .legacy-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 25px rgba(0, 180, 216, 0.25);
  }

  /* Circular photos */
  .legacy-photo {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border: 3px solid #00b4d8;
      transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .legacy-photo:hover {
      transform: scale(1.05);
      border-color: #0077b6;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
      .legacy-photo {
          width: 120px;
          height: 120px;
      }
  }

  /* team member  */
  /* === TEAM SECTION === */
  .team-section {
      background: transparent;
      position: relative;
      z-index: 1;
  }

  .team-photo {
      width: 100%;
      height: auto;
      object-fit: cover;
      border: none;
      border-radius: 1rem;
      transition: filter 0.5s ease, transform 0.5s ease;
  }

  /* Subtle glow & text reveal on hover */
  .team-profile {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
  }

  .team-overlay {
      position: absolute;
      inset: 0;
      background: rgba(2, 175, 244, 0.0);
      color: #fff;
      opacity: 0;
      transition: all 0.6s ease;
      text-shadow: 0 0 10px rgba(2, 175, 244, 0.7);
  }

  .team-profile:hover .team-overlay {
      background: rgba(2, 175, 244, 0.2);
      opacity: 1;
  }

  .team-profile:hover .team-photo {
      filter: brightness(0.8);
  }

  /* Fade-in animation (matches your existing effect) */
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Responsive design */
  @media (max-width: 768px) {
      .team-photo {
          height: 320px;
      }
  }

  /* Text colors respect theme toggle */
  .Noa,
  .Raka {
      transition: color 0.5s ease;
  }

  body.day-mode .Noa,
  body.day-mode .Raka {
      color: #000;
  }

  /* testing  */
  /* === TEAM SECTION === */
  .team-section {
      background: transparent;
      position: relative;
      z-index: 1;
  }

  .team-photo {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border: none;
      border-radius: 1rem;
      transition: filter 0.4s ease;
  }

  .team-photo:hover {
      filter: brightness(0.85);
  }

  .team-info {
      text-align: center;
      margin-top: 0.5rem;
  }

  .quote-box {
      background: rgba(2, 175, 244, 0.08);
      border-left: 3px solid rgba(2, 175, 244, 0.7);
      border-radius: 0.5rem;
      padding: 1rem 1.5rem;
      margin-top: 1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s ease;
  }

  .team-profile:hover .quote-box {
      opacity: 1;
      transform: translateY(0);
  }

  .quote {
      font-style: italic;
      font-size: 0.95rem;
      color: var(--bs-body-color);
      margin: 0;
  }

  /* Fade-in animation */
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .team-photo {
          height: 320px;
      }

      .quote {
          font-size: 0.9rem;
      }
  }

  /* Respect theme toggle */
  body.day-mode .quote-box {
      background: rgba(0, 0, 0, 0.05);
      border-left: 3px solid rgba(0, 0, 0, 0.2);
  }
  
 
            

  
  
  
  
  
  
  