.circular--square { border-radius: 50%; }

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.time-column {
    width: 150px; /* Adjust as needed */
}

/* Reset some default styles */
body, h1, h2, h3, p, ul, li, table {
    margin: 0;
    padding: 0;
}

header h1 {
    color: whitesmoke;
    font-size: 56px;
    margin-bottom: 10px;
}

header p {
    color: yellow;
    font-size: 24px;
    margin-bottom: 0;
}

/* Basic styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
p {
    margin-top: 15px;
    margin-bottom: 10px;
}
h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}
/* styles.css */
header {
    position: relative; /* Add this to establish a positioning context */
    background-image: url('logo_arizona.png'); /* Replace with your image file name */
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.1);
    padding: 120px;
    text-align: center;
    padding: 50px 0;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Apply different background image for smaller screens */
@media (max-width: 768px) {
    header {
        padding: 30px 0;
    }
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}

/* Add a semi-transparent overlay */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); /* Adjust the opacity and color as needed */
}

section {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

/* Add more specific styling as needed */
#organizers {
    padding: 40px 0;
    text-align: center;
}

.organizer-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.organizer {
    margin: 0 20px;
    text-align: center;
}

.organizer img {
    width: 150px; /* Set the desired width for profile pictures */
    height: 150px; /* Set the desired height for profile pictures */
    border-radius: 50%; /* Create rounded profile picture */
    margin-bottom: 10px;
}

.organizer h3 {
    margin: 0;
    font-size: 18px;
}

.organizer p {
    margin: 0;
    font-size: 14px;
}

#home {
    padding: 40px 0;
    text-align: center;
}



.home-section {
    width: 100%;
    padding: 40px;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
    margin: 0; /* Reset margins to remove any default padding */
}

.home-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

ul li:last-child {
    margin-bottom: 0;
}




nav {
    background-color: #444;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.main-nav {
    display: flex; /* Display horizontally by default */
    justify-content: flex-end; /* Adjust alignment as needed */
    background-color: #333;
    padding: 10px;
    position: fixed; /* Fixed position to stay at the top */
    top: 0; /* Align to the top of the viewport */
    left: 0; /* Align to the left of the viewport */
    width: 100%; /* Occupy the full width of the viewport */
    background-color: #333;
    padding: 10px;
    z-index: 1000; /* Ensure it's above other elements */
}

.menu-toggle {
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.icon {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}

.nav-list {
    list-style: none;
    display: none; /* Hide list by default */
    padding: 0;
}

.nav-list.active {
    display: block; /* Show list when active */
}

.nav-list li {
    margin-right: 20px;
}

.main-nav ul {
    list-style: none;
    display: flex; /* Display list items horizontally */
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-right: 20px; /* Spacing between items */
}

/* Media query for mobile */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: row; /* Display horizontally on larger screens */
        justify-content: flex-start; /* Adjust alignment as needed */
    }

    .main-nav ul {
        flex-direction: column; /* Display list items vertically */
    }

    .main-nav li {
        margin-right: 0; /* Remove spacing between items */
        margin-bottom: 10px; /* Add vertical spacing between items */
    }

    .nav-list {
        display: flex; /* Display list horizontally on larger screens */
    }

    .menu-toggle {
        display: none; /* Hide toggle on larger screens */
    }
    .header-content {
        margin-top: 200px; /* Add margin to avoid overlap with navigation */
    }

    .main-nav {
        padding-top: 0px; /* Adjust to create space for navigation */
    }


}
