/*
Theme Name: Charter Oak Grove 2025 Theme
Author: Luke Landry
*/


body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    background-color: #10ad86;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: blue;
}

h1,
h2 {
    text-align: center;
}


.header {
    background-color: #10ad86;
    color: white;
    font-variant-caps: small-caps;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.pane {

    background-color: #d1ffcc;
    min-width: 1000px;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    border-style: solid;
    margin: 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: left;
    gap: 20px;
}

.right-to-left {
	flex-direction: row-reverse;
}

.content {
    flex: 1;
    flex-grow: 0
}

.main-content {
    flex: 1;
    flex-grow: 1;
}

p {
    margin-top: 0;
}

.logo {
    width: 100%;
    height: 281px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop instead of squishing */
    object-position: center;
    /* keep the center visible */
}

.sm-logo {
    width: 100%;
    height: 104px;
    overflow: hidden;
}

.sm-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop instead of squishing */
    object-position: center;
    /* keep the center visible */
}


.menu-navbar-container {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    color: white;
    position: relative;
    list-style-type: none;
}


.menu-item {
    display: flex;
    gap: 1rem;
}

.menu-item a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s;
}

.menu-item a:hover {
    background: #042062;
    border-radius: 5px;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
	z-index: 99999;
    margin-top: 15px;
	padding: 8px;
}

.hamburger i {
	font-size: 24px;
	color: white;
	pointer-events: auto;
}

@media (max-width: 1024px) {
    .logo {
        height: 141px;
    }

    .pane {
        min-width:
            700px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }


    .navbar {
        display: none;
        flex-direction: column;
        background: #10ad86;
        padding: 1rem;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-item a {
        padding: 0.8rem;
        width: 250px;
        background-color: #042062;
        text-align: center;
        font-size: 1.2em;
    }

    .active {
        display: flex;
    }

    /* .logo {
        height: 141px;
    } */
    .pane {
        min-width: 300px;
    }
}
