/* Header Component Styles */
.hero-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
  }
  
  /* Header Content */
  .header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 53, 148, 0.8), rgba(0, 53, 148, 0.5) 70%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .pitt-logo {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  
  .title-container {
    text-align: center;
    max-width: 100%;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  
  .main-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  
  
  
  /* Navigation */
  .main-navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(255, 184, 28, 0.9);
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #003594; /* Pitt Blue */
    text-decoration: none;
    font-weight: 1000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: #003594;
    color: white;
  }
  
  
  /* Hero Carousel */
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .carousel-items {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .carousel-item.active {
    opacity: 1;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
  }
  
  .carousel-caption {
    position: absolute;
    bottom: 6rem;
    left: 0;
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .carousel-control:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-container {
      height: 500px;
    }
    
    .main-title {
      font-size: 1.5rem;
    }
    
    .nav-links {
      flex-wrap: wrap;
    }
    
    .nav-link {
      padding: 0.75rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-container {
      height: 400px;
    }
    
    .main-title {
      font-size: 1.2rem;
    }
    
    .subtitle {
      font-size: 1rem;
    }
    
    .carousel-caption {
      bottom: 5rem;
    }
  }