*{
    box-sizing: border-box;
    margin: 0;
    ::-webkit-scrollbar{
        display: none;
    }
}

header{
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    height: 10vh;
    background-color: rgb(0, 0, 0);
    padding: 0 15px;
    z-index: 1000;

   & > #nav{
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-between;

        & > ul{
            display: inline-flex;
            flex-direction: row;
            height: 100%;
            align-items: center;   
            list-style-type: none;
            padding: 0;

            & > li{
                display: inline-flex;
                flex-direction: row;
                height: 100%;
                align-items: center;     
             }
        }
        
        & .logo-name-group{
            & li > #logo {
                border-radius: 8%;
                height: 90%;
                width: auto;
            }
            & li  > #logoName{
                margin-left: 5px;
                display: inline-block;
                font-size: large;
                color: rgb(213, 157, 16);
            }
        }

        & .main-nav-links {
            
            & li {
                margin: 0 15px;
            }
            & li > a {
                color: rgb(213, 157, 16);
                text-decoration: none;
                font-size: 1.1em;
                font-weight: bold;
                transition: color 0.3s;
            }
            & li > a:hover {
                color: white;
            }
        }

        & .college-logo-group{
            & li > #headLogo{
                height: 90%;
                width: auto;
            }
        }
    }
}

footer{
    position:fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    height: 5vh;
    background-color: rgb(0, 0, 0);
    padding: 5px;
    justify-content: space-between;

    & > img{
        position: static;
        height: 90%;
        margin-left: auto;
    }
    & > pre, & address > pre, & address > a {
        margin-left: 5px;
        display: inline-block;
        font-size:small;
        color: rgb(213, 157, 16);
        text-decoration: none;
    }
}


main {
    margin-top: 10vh; 
    padding-bottom: 5vh;
    min-height: calc(100vh - 10vh - 5vh);
    background-color: #20201b;
}

.club-section {
    padding: 40px 0;
    color: white;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    

}

.club-section h2 {
    color: rgb(213, 157, 16);
    margin-bottom: 30px;
    font-size: 2em;
    
}

.event-item {
    background-color: #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    
}

.event-item h3 {
    color: rgb(243, 197, 83);
    margin-bottom: 10px;
}

.event-item p {
    margin-bottom: 5px;
    color: #ccc;
}
.event-item pre {
    margin-bottom: 5px;
    color:  rgb(213, 157, 16);
}

.event-item .date, .event-item .time {
    font-weight: bold;
    color: rgb(213, 157, 16);
}


.slideshow-section {
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.slideshow-container {
    max-width: 800px;
    max-height: 90%;
    width: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(214, 184, 108, 0.566);
}


.mySlides {
    display: none; 
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}


.active-slide {
    opacity: 1; 
    display: block; 
}
.slideshow-container img {
    height: auto;
    display: block;
}


.slide-caption {
    color: rgb(213, 157, 16);
    font-size: 18px;
    padding: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); 
    font-family: Arial, sans-serif;
    font-weight: bold;
}


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}