body {
    margin: 0;
    padding: 0;
    background-image: url('images/2024_Group.jpeg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Navbar Styles */
nav {
    background-color: #333;
    padding: 10px;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    padding: 14px 16px;
    display: block;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 100%; /* Position below the parent */
    left: 0;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #111;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.main, .panel {
    width: 100%;
    text-align: center;
    align-content: center;
    color: white;
}
.panel {
    background-color: white;
    color: black !important;
    align-content: start;
    height: 100% !important;
}

.main {
    padding-top: 15%;
    padding-bottom: 15%;
}

.heading {
    display: flex;
    height: 50vh;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    flex-direction: row;
    gap: 5vw;
}
.heading > * {
    width: 25vw;
}
.heading p {
    color: #888;
    font-size: 0.8rem;
    font-weight: 200;
    text-align: start;
}
.heading h1 {
    text-align: end;
}

.main h1 {
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 6px 6px 0px rgba(0,0,0,0.75);
}
.main p {
    font-size: 2rem;
    font-weight: bold;
    -webkit-text-stroke: #111;
    -webkit-text-stroke-width: 0.1rem;
}

.pannelBig {
    width: 50%;
    text-align: center;
    padding-bottom: 5vh;
}

a {
    color: black;
}

a:hover {
    color: goldenrod;
}

.socials img {
    height: 2rem !important;
    background-color: coral;
}

.footer hr {
    width: 80%;
    align-self: center;
    margin-top: 14rem;
}

.footer p {
    text-align: left;
    text-indent: 11%;
}

.socials h2 {
    font-size: 2em;
    font-weight: bold;
}

.socials hr {
    width: 40%;
    align-self: center;
    margin-top: 5rem;
}

.youtube {
    width: 50vw;
    aspect-ratio: 16/9;
}


.slideshow-container {position: relative; max-width: 75%; margin: auto; box-sizing: border-box;}
.slides-container {display: none; position: relative;}
.slides-container img {width: 100%; height: auto;} /* Ensure images take up full container width */
.caption-container {position: absolute; bottom: 8px; left: 16px; background-color: rgba(0, 0, 0, 0.5); color: white; padding: 8px; border-radius: 8px;}
.prev, .next {cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none;}
.next {right: 0; border-radius: 3px 0 0 3px;}
.prev {left: 0;}
.prev:hover, .next:hover {background-color: rgba(0,0,0,0.8);}
.dots-container {box-sizing: border-box; text-align: center; padding: 20px; background: rgba(0,0,0,0.1); width: 75%; margin: auto;}
.dot {cursor: pointer; height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease;}
.active, .dot:hover {background-color: #717171;}
.fade {animation-name: fade; animation-duration: 1.5s;}
@keyframes fade {from {opacity: .4} to {opacity: 1}}