
      /* General Styles */
  body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #00274C; /* Michigan Blue */
      color: #FFCB05; /* Michigan Maize */
  }

.container {
    text-align: center;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #FFCB05; /* Yellow background */
    color: #00274C; /* Blue text */
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 3em;
    animation: slideIn 1s ease-out;
}

header p {
    margin: 10px 0 0;
    font-style: italic;
    font-size: 2em;
    animation: fadeIn 2s ease-out;
}

/* Intro Section */
      /* Intro Section */

      #intro {
          padding: 80px 80px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 60px; /* Increased space between photo and text */
          flex-wrap: wrap; /* Adjust layout for smaller screens */
          text-align: left;
      }

      .intro-content {
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 75px; /* Added extra space within the flex container */
          max-width: 2000px; /* Limit content width */
          margin: 0 auto;
      }

      .intro-photo img {
          width: 300px; /* Increased image size */
          height: auto;
          border-radius: 12px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      }

      .intro-text h2 {
          font-size: 2em;
          margin-bottom: 10px;
      }

      .intro-text p {
          font-size: 1.3em;
          line-height: 1.6;
          max-width: 1600px;
      }





/* Timeline Section */
#timeline {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2; /* Ensure the timeline and thumbnails are above the intro */
}

.timeline-container {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden; /* Disable vertical scrolling */
    white-space: nowrap;
    height: 450px; /* Increased height to accommodate both rows of thumbnails */
}

.timeline-strip {
    position: relative;
    height: 100px;
    background: linear-gradient(to right, #00274C 10%, #FFFFFF 30%, #FFFFFF 70%, #00274C 90%);
    width: 150%;
    margin: 0 auto;
    border-radius: 10px;
}

.year-indicator {
    position: absolute;
    top: 50%;
    font-size: 1.8em;
    font-weight: bold;
    color: #00274C; /* Blue */
    text-align: center;
    transform: translateY(-50%);
}

/* Thumbnail Styles */
.timeline-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 3; /* Ensure thumbnails appear above everything */
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.thumbnail-label {
    position: absolute;
    bottom: 20%; /* Slightly lower but not at the bottom */
    left: 0;
    right: 0;
    background: #FFCB05;
    color: #00274C;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    padding: 2px 0;
    transition: transform 0.3s ease;
}

.timeline-item:hover img {
    transform: scale(2); /* Double size on hover */
}

.timeline-item:hover .thumbnail-label {
    transform: scale(2); /* Label grows with thumbnail */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #00274C;
    color: #FFCB05;
    margin: 10% auto;
    padding: 20px;
    border: 2px solid #FFCB05;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.modal-content video {
    max-width: 100%;
    border-radius: 10px;
}

.close {
    color: #FFCB05;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 5px; /* Closer to the modal */
    right: 10px; /* Closer to the modal */
    cursor: pointer;
}

.close:hover {
    color: #FFD54F;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background: #FFCB05;
    color: #00274C;
    margin-top: 20px;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

      /* PDF Container */
      .pdf-container {
          position: relative;
          width: 100%;
          max-width: 800px; /* Adjust for larger previews */
          height: 600px; /* Increase for better visibility */
          margin: 20px auto;
          border: 2px solid #FFCB05; /* Border to match theme */
          border-radius: 10px;
          overflow: hidden;
      }

      .pdf-container iframe {
          width: 100%;
          height: 100%;
          border: none;
      }

      /* Download Link Styling */
      .download-link {
          display: block;
          margin-top: 20px;
          text-align: center;
          font-size: 1.2em;
          color: #FFCB05;
          text-decoration: none;
          font-weight: bold;
          background-color: #00274C;
          padding: 10px 15px;
          border-radius: 5px;
          transition: background-color 0.3s ease;
      }

      .download-link:hover {
          background-color: #FFCB05;
          color: #00274C;
      }

      /* Image Container */
      .image-container {
          position: relative;
          width: 100%;
          max-width: 800px; /* Adjust for desired photo size */
          margin: 20px auto;
          text-align: center;
      }

      .image-container img {
          width: 100%; /* Scales photo to fit container */
          max-width: 1200px; /* Limits the maximum width */
          height: auto; /* Maintains aspect ratio */
          border-radius: 8px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      }
      /* Contact Modal Styling */
      .contact-details {
          font-size: 1.6em;
          line-height: 1.6;
          text-align: center;
          margin: 20px auto;
          max-width: 500px;
      }

      .contact-details p {
          margin: 10px 0;
      }

      .contact-details a {
          color: #FFCB05;
          text-decoration: none;
          font-weight: bold;
          transition: color 0.3s ease;
      }

      .contact-details a:hover {
          color: #FFC107;
      }
