
.side-menu {
    position: fixed;
    left: -260px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: maroon;
    transition: left 0.4s ease;
    z-index: 100;
}

.side-menu.active {
    left: 0;
}


/* Navigation bar */

.navbar {
    display: block;
    width: -100vw;
    flex-wrap: wrap;
    background-color: maroon;
    position: sticky;
    top: 0;
    z-index: 10;
    align-content: safe;
}

.navbar a,
.dropbtn {
    font-size: 16px;
    color: white;
    text-align: left;
    padding: 14px 20px;
    text-decoration: none;
    cursor: pointer;
    background-color: maroon;
}

.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    background: none;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: #555;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 160px;
    z-index: 20;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #666;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.school-picture {
    text-align: center;
    margin: 40px auto;
    background-color: rgb(192, 192, 111);
    width: 50%;
    max-width: 1000px;
    padding: 10px;
    border-radius: 10px;
}

.school-picture img {
    width: 100%;
    border-radius: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 5px;
    width: 100%;
    max-width: 100%;
    background-color: rgba(128, 0, 0, 0.247);
}
.grid-container h2 {
    color: yellow;
}
.directions-sectionr {
    background-color: rgba(230, 16, 16, 0.452);
    padding: 40px 20px;
    font-weight: bold;
    margin-top: 40px;
    text-align: left;
    justify-content: center;
    background-size: auto;
    background-position-x: left;
    color: yellow;
    border: #66000000;
    display: block;

}
.directions-sectionr a {
    display: inline-block;
    margin: 6px 0;
    padding: 10px 15px;
    background-color: maroon;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s;
}


.directions-sectionr h1 {
    color: white;
}

.directions-sectionr h2 {
    color: yellow;
    margin-bottom: 20px;
}
/* Mobile Responsive */

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
    }
    .navbar a,
    .dropbtn {
        text-align: left;
        padding: 10px;
    }
}

.open-menu {
    background-color: maroon;
    width: 100%;
    color: yellow;
    border: none;
    padding: 12px 18px;
    font-size: 18px;
    cursor: pointer;
    position: fixed;
    top: 0%;
    z-index: 5;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: maroon;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: left 0.4s ease;
    z-index: 999;
}

.side-menu.active {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    color: yellow;
    font-size: 20px;
    align-self: flex-end;
    margin-right: 10px;
    cursor: pointer;
}

.menu-logo img {
    width: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.menu-logo h2 {
    color: yellow;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.menu-links {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-links a {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
}

.menu-links a:hover {
    background-color: #660000;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: yellow;
    background-color: maroon;
    border: 2px solid yellow;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgb(255, 255, 255);
    color: maroon;
    transform: scale(1.2);
}


