/*GLOBAL STYLES*/
body{
    background-color: #111;
}
/*NAVBAR STYLES*/
header{
    width: 100%;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    background-color: white;
    }

.menu-item {
    font-size:1.5em;
    margin:1%;
    text-decoration: none;
    color: #111;
}
.menu-item:hover{
    text-decoration: underline;
}
nav{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    background-color: white;
}
.logo{
    max-width: 50%;
}

/*THE HAMBURGER MENU*/
.hamburger {
    font-size: 50px;  
    display: flex;
    margin-right: 10%;
    color: rgb(0, 0, 0);
}
            .sidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1;
            top: 0;
            left: 0;
            background-color: #111;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
            }

            .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #818181;
            display: block;
            transition: 0.3s;
            }

            .sidenav a:hover {
            color: #f1f1f1;
            }

            .sidenav .closebtn {
            position: absolute;
            top: 0;
            right: 25px;
            font-size: 36px;
            }
.desktopheader{
    display: none;
    background-color: white;
    min-width: 100%;
}
.mobile-header{
    display: none;
}
.logotext{
    font-size:2em;
    position: sticky;
    margin-right: 55%;
    color: #111;
}
.logotext:hover{
    text-decoration: underline;
}
.gallery {
    display: flex;                              
    justify-content: center;                
  }
  
  .gallery-item img {
    display: block;
    max-width: 90%;          
    width: 100%;               
    height: auto;              
    border-radius: 8px;         
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s; 
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);    
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .tagline{
    color: white;
    font-size: 4em;
  }
  #animated-text span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    transition: opacity 0.5s, transform 0.5s;
  }
  #animated-text span.show {
    opacity: 1;
    transform: translateY(0);
  }
  .modal {
    display: none; 
    position: fixed;
    z-index: 10;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 80vw;
  }
  .modal-content img {
    max-width: 60vw;
    max-height: 60vh;
  }
  .close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
  }
  
  
/*SUBPAGE STYLES*/
.aboutblurb{
    background-color: white;
    margin: 2%;
}
.caption{
    color: white;
}
.img{
    max-width: 100%;
}
.pdf{
    max-width: 100%; 
    height: 90vh;
}
.button{
    background-color: #ffffff;
}
#button-text{
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
}
.tdclogo{
    max-width: 100%;
    min-width: 90%;
    outline: solid 1px;
}
.dthlogo{
    max-width: 100%;
    min-width: 91%;
}
.tdplogo{
    max-width: 100%;
    min-width: 90%;;
}

/*RESPONSIVE DESIGN*/
@media screen and (min-width:1080px){

    .mobile-nav{
        display:none;
    }
    .hamburger{
        display:none;
    }
    .desktop-nav{
        display:flex;
    }
    .desktopheader{
        display: flex;
    }
}
@media screen and (min-width:1024px){
    .aboutblurb{
        position: fixed;
        margin-right: 65%;
        margin-top: -59%;
        margin-left: 2%;
        background-color: white;
        padding: 1%;
        font-size: 1.25em;
    }
}
@media screen and (max-width:1200px){
    .logotext{
        display: block;
    }
    .logo{
        max-width: 20%;
    }
    .pdf{
        max-width: 100%;
    }
    .gallery {
        display: flex;                              
        justify-content: center;    
        gap: 16px;
        flex-wrap: wrap;              
      }
      .mobile-header{
        display: block;
        color: white;
        font-size: 3em;
    }
    
}