html, body {
    height: 100%; /* Ensure the body takes full height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #F5F5F5; */
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("assets/IMG_5560.JPG");
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
}
.main-content, .executives, .about, .footer {
    background-color: white; /* Background color for content sections */
    padding: 20px; /* Add some padding */
    position: relative; /* Ensure content is on top of the background */
    z-index: 1; /* Bring content above background */
}
.header {
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}
.nav {
    position: fixed; /* Keep the navbar fixed at the top */
    top: 0; /* Align it to the top of the viewport */
    left: 0; /* Align it to the left of the viewport */
    right: 0; /* Align it to the right of the viewport */
    z-index: 10000; /* Ensure it stays above other content */
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
    background-color: rgba(255, 255, 255, 0);
    padding: 10px 20px;
    border-color: whitesmoke;
    border: solid 1px;
    margin: 10px;
    margin-top: 10px;
    /* position: relative; */
    /* z-index: 1; */
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add box shadow */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav:hover{
    background-color: rgba(255, 255, 255);
    color: black;
}
.nav:hover .nav-links a{
    color: black;
}
.nav img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    align-items: center;
    background-color: (255, 255, 255, 0.0);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 5px;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover, .nav-links a:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: rgba(0, 0, 0, 0.65);
}
.nav-links a:hover {
    transform: translateY(-1px);
    background-color: white;
}
.nav-links a:active {
    background-color: #F0F0F1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: rgba(0, 0, 0, 0.65);
    transform: translateY(0);
}
.nav.scrolled {
    background-color: white; /* Change to white when scrolled */
    color: black; /* Change text color to black */
    transition: background-color 0.2s ease, color 0.2s ease; /* Smooth transition */
}
.nav.scrolled .nav-links a{
    color: black; /* Change text color to black */
}
.nav h2 {
    text-align: left;
    font-size: 20px;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-left: -1100px; /* Increase margin to create more space from the logo */
    margin-top: 3px;
}
.main-content {
    text-align: left;
    padding: 50px 20px;
    position: relative;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.0);
    padding-top: 120px;
}

.main-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 40px;
    margin-top: 100px;
    color: white;
}
.main-content p {
    font-size: 19px;
    color: white;
    margin-bottom: 40px;
    margin-left: 40px;
}
.main-content img {
    width: 300px;
    height: 300px;
    background-color: #E0E0E0;
    display: block;
    margin: 0 auto;
}
.executives {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
    color: black;
}
.executives h2 {
    font-size: 24px;
    margin-bottom: 60px;
}
.executives .executive-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.executive {
    position: relative;
    width: 300px;
    margin: 0 20px;
    text-align: center;
    overflow: hidden; /* Ensure the hover effect doesn't overflow */
}
.executive {
    position: relative;
    width: 300px;
    margin: 0 20px;
    text-align: center;
    overflow: hidden; /* Ensure the hover effect doesn't overflow */
}

.exec-hover {
    position: absolute;
    top: 0;
    left: 100%; /* Start off-screen to the right */
    width: 0; /* Initially hidden */
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-sizing: border-box;
    transition: width 0.3s ease, left 0.3s ease; /* Smooth transition */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially invisible */
}

.executive:hover .exec-hover {
    width: 250px; /* Expand to this width */
    left: calc(100% - 250px); /* Slide in from the right */
    opacity: 100%; /* Make it visible */
}

.exec-description {
    font-size: 1px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    margin-right: 50px;
    border-radius: 10px;
    border-color: whitesmoke;
    border: solid 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add box shadow */
    padding: 1px;
    opacity: 100%; /* Make it visible */
}

.executive-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px; /* Add some space between executives */
}

.exec-hover .social-icons {
    display: flex;
    margin-right: 50px;
    margin-bottom: 30px;
    gap: 10px;
}

.exec-hover .social-icons a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.exec-hover .social-icons a:hover {
    color: #333;
}
.executives .executive {
    width: 300px;
    margin: 0 20px;
    text-align: center;
}
.executives .executive img {
    width: 150px;
    height: 150px;
    background-color: #E0E0E0;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.executives .executive p {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
}
.executives .executive .execsubtext{
    margin-top: -10px;
}
.executives h2{
    font-size: 30px;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.about {
    padding: 50px 20px;
    text-align: center;
}
.about img {
    width: 600px;
    /* height: 100px; */
    margin-left: -120px;
    margin-top: 90px;
    background-color: #E0E0E0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight box shadow */
    /* margin: 0 auto 20px; */
}
.about h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.about p {
    font-size: 16px;
    color: #666666;
}
.footer {
    background-color: #D3D3D3;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    margin: 0 10px;
    color: #666666;
    text-decoration: none;
    font-size: 20px;
}

.footer .social-icons a:hover {
    color: #333333;
}

#eventbg{
    background-color: whitesmoke;
    padding: 80px;
    border-radius: 5px;
}
.forms input, .forms textarea{
    margin-bottom: 10px;
}
#eventbg h2{
    margin-top: -40px;
}
.forms h3{
    margin-bottom: 20px;
}
.forms{
    background-color: #e0e0e0;
    padding: 30px;
    border-radius: 5px;
    color: white;
}
#eventbg {
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    padding: 80px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight box shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    display: none;
}

#eventbg:hover {
    background-color: rgba(255, 255, 255, 1); /* White background on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

#logout-link {
    display: none;
}

.search-results {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: black;
    
}

.search-result {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background-color: #e9e9e9;
    border-radius: 4px;
}

.search-result:active {
    background-color: #d9d9d9;
}

.forms {
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    padding: 20px;
    border-radius: 20px; /* Rounded corners */
    border: 1px solid black; /* Light border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.forms:hover {
    background-color: rgba(255, 255, 255, 1); /* White background on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-5px); /* Slight lift effect */
}

.forms button {
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-radius: 100px; /* Rounded corners */
    padding: 10px 20px;
    color: black; /* Text color */
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.forms button:hover {
    background-color: rgba(255, 255, 255, 1); /* White background on hover */
    color: black; /* Text color */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.forms button:active {
    transform: translateY(0); /* Reset lift effect on click */
}

.forms input{
    width: 250px;
}

.quick-view {
    width: 600px;
    height: 675px;
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    padding: 20px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    margin-left: 20px; /* Space between calendar and quick view */
    overflow-y: auto; /* Scrollbar for overflow */
}

.quick-view h2{
    margin-bottom: 10px;
}

.quick-view:hover {
    background-color: rgba(255, 255, 255, 1); /* White background on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-5px); /* Slight lift effect */
    border: 1px solid black; /* Light border */
}

.view-options button {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 100px;
    padding: 5px 10px;
    color: black;
    font-weight: 600;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    margin-right: 5px;
    margin-bottom: 5px;
}

.view-options button.active {
    background-color: rgba(0, 0, 0, 0.1); /* Slightly grey background */
    opacity: 0.8; /* Slightly reduced opacity */
}

.view-options button:hover {
    /* background-color: rgba(255, 255, 255, 1); */
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sort-options {
    margin-bottom: 10px;
}

.sort-options select {
    background-color: rgba(255, 255, 255, 0); /* Transparent background */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-radius: 100px; /* Rounded corners */
    padding: 5px 10px;
    color: black; /* Text color */
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

#quick-search {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 100px;
}

.events-list {
    max-height: 500px;
    overflow-y: auto;
}

.event-item {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease;
}

.event-item:hover {
    background-color: #e9e9e9;
}

.event-item h3 {
    margin: 0;
    font-size: 16px;
}

.event-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.no-results {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px;
}

/* From Uiverse.io by Yaya12085 */ 
.loginbutton {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    color: rgb(65, 63, 63);
    background-color: #fff;
    cursor: pointer;
    transition: all .6s ease;
    margin-top: 10px;
}
  
.loginbutton svg {
    height: 24px;
}
  
.loginbutton:hover {
    transform: scale(1.02);
    text-decoration: none;
}

a .loginbutton{
    text-decoration: none !important;
}
a .loginbutton:hover{
    text-decoration: none !important;
}