body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", sans-serif;
  scroll-behavior: smooth;
  height: 100vh;
}

/* Navbar */

    .navbar {
      background-color: #870000;
      color: #ffff99; /* Canary Yellow */
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 1rem 1rem;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .navbar h3 {
      margin: 0;
      font-size: 2.2rem;
    }

    .nav-links a {
      margin-left: 4rem;
      text-decoration: none;
      font-weight: bold;
      color: #ffff99;
      transition: color 0.3s ease;
    }
    
    .highlight {
      color:gold;
      font-family:"umbrage";
      font-weight:bold;
    }

    /* Parallax Images */
    .parallax {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }

    .parallax h2 {
      font-size: 5rem;
      font-weight: bold;
      margin: 0;
    }

    .parallax p {
      font-size: 3rem;
      margin-top: 1rem;
    }

    .section {
      background-color: white;
      padding: 4rem 2rem;
    }

    .section h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    /* Six Columns */
    .columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 1.5rem;
    }

    .column {
      width: 200px;
      text-align: center;
    }

    .column img {
      width: 100%;
      object-fit: cover;
    }

    .column h4 {
      margin: 0.5rem 0;
    }

    .shows {
      max-width: 85%;
      margin: auto;
    }

    .show {
      margin-bottom: 2rem;
      text-align: center;
    }

    .show hr {
      margin-top: 1rem;
    }

     .show p {
      font-size: 1.5em;
     }

     .show ul {
         list-style-type: none;
         line-height: 1.5;
     }
    .show h1 {
        font-size:2.5rem;
    }


    /* Footer */


    footer {
      background-color: #870000;
      color: #ffff99;
      padding: 1.5rem 2rem;
        position: fixed;
  bottom: 0;
      text-align: center;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
    
    .footer-left {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    
    .footer-right {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    
    .nav-links {
      color: #ffff99;
      text-decoration: none;
      font-weight: 500;
    }
    
    .tooltip {
        font-size: 0.8rem;
    }
    

    /* Responsive */
    @media (max-width: 768px) {
      .columns {
        flex-direction: column;
        align-items: center;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        margin-top: 1rem;
      }
    }


/* Boxes */
#boxes{
  margin:30px;
  width: 100%;
  height: auto;
  background-color: white;
  color: #333;
  display: flex;

  flex-flow: nowrap;
  align-items: center;
  justify-content: space-around;
}

#boxes .box{
  float:left;
  text-align: center;
  width:15%;
  padding:10px;
  
}

#boxes p {
  font-size: 1.1em;
}

#boxes .box img{
  width:90px;
}


@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}

  .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
            color: #007BFF;
            text-decoration: underline;
        }

        /* Tooltip text */
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 4px;
            padding: 8px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the element */
            left: 50%;
            transform: translateX(-50%);
            opacity: 0; /* Start hidden */
            transition: opacity 0.3s;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Arrow pointing down */
        .tooltip .tooltiptext::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        /* Show the tooltip text on hover */
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
