body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
    background-color: #c2c2c2;
}

.hamburger-menu {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 80;
}

.hamburger-menu span {
    background: #fff;
    border-radius: 2px;
    display: block;
    height: 3px;
    width: 30px;
    transition: 0.5s;
}

nav {
    display: none;
    z-index: 80;

}

nav.show {
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #333;
    position: fixed;
    top: 60px;
    right: 20px;
    width: 100%;
    max-width: 175px;
    box-sizing: border-box;
    z-index: 20;
}

nav ul li {
    border: .5px solid #bebebe;
}

nav ul li a {
    color: #c2c2c2;
    padding: 1rem;
    display: block;
    text-decoration: none;
    text-align: center;
}

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

main {
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-home {
    background-image: url('../assets/compass.jpeg');
    background-size: cover;
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1,
.hero-content h2 {
    font-family: 'Papyrus';
}

#hero .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

#hero h1 {
    font-size: 3rem;
    margin: 0;
}

#hero h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem 0;
}

#hero .btn {
    background: #ff4500;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: #ff4500;
}

.quote-home {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    font-style: italic;
}

.quote-home .quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.quote-home .quote-symbol {
    width: 180px;
    height: auto;
    position: absolute;
    opacity: 0.5;
}

.quote-home .opening-quote {
    top: 0px;
    left: -90px;
}

.quote-home .closing-quote {
    bottom: 0px;
    right: -120px;
}

.quote-home p {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    vertical-align: middle;
}

.quote-home .quote-author {
    text-align: right;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-style: normal;
}

#intro,
h2 {
    text-align: center;
}

#intro {
    padding: 4rem 2rem;
    background-color: #c2c2c2;
    text-align: left;
}

#intro .content {
    max-width: 800px;
    margin: 0 auto;
}

#highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    justify-content: center;
}

.highlight-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 2rem);
    text-align: center;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.highlight-item p {
    font-size: 1rem;
    margin: 1rem 0;
    flex-grow: 1;
}

.highlight-item .btn {
    background: #ff4500;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.highlight-item .btn:hover {
    background: #ff4500;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul.show {
        display: flex;
    }

    #highlights {
        flex-direction: column;
    }

    .highlight-item {
        flex: 1 1 100%;
    }
}

/* Style for Coming of Age Hero Section */
.hero-coming-of-age {
    background-image: url('../assets/compasses.jpg');
    background-size: cover;
    color: #ffffff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-coming-of-age .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

/* Style for Coming of Age Quote Section */
.quote-coming-of-age {
    background-color: #704308;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    font-style: italic;
}

.quote-coming-of-age .quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.quote-coming-of-age .quote-symbol {
    width: 180px;
    height: auto;
    position: absolute;
    opacity: 0.5;
}

.quote-coming-of-age .opening-quote {
    top: 0px;
    left: -100px;
}

.quote-coming-of-age .closing-quote {
    bottom: 0px;
    right: -120px;
}

.quote-coming-of-age p {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    vertical-align: middle;
}

.quote-coming-of-age .quote-author {
    text-align: right;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-style: normal;
}

#intro,
h2 {
    text-align: center;
}

#intro {
    padding: 4rem 2rem;
    background-color: #e2e2e2;
    text-align: left;
}

#intro .content {
    max-width: 800px;
    margin: 0 auto;
}

#intro ul {
    padding-left: 20px;
}

#intro ul li {
    margin-bottom: 10px;
}

#intro p,
#intro ul,
#intro h3 {
    text-align: left;
    margin-bottom: 20px;
}

/* Other shared styles */
#intro {
    padding: 4rem 2rem;
    background-color: #e2e2e2;
    text-align: center;
}

#intro .content {
    max-width: 800px;
    margin: 0 auto;
}

.sponsorship-section {
    text-align: center;
    padding: 2rem;
    background-color: #e2e3e2;
    margin-bottom: 2rem;
}

.sponsorship-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sponsorship-section img {
    max-width: 150px;
    height: auto;
}

/* About Page Styles */
.hero-about {
    background-image: url('../assets/compassface.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-about .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

.hero-about h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-about h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem 0;
}

.hero-about .btn {
    background: #ff4500;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero-about .btn:hover {
    background: #e04a00;
}

.content-about {
    display: flex;
    padding: 0; /* Remove padding to allow images to touch header and footer */
    min-height: calc(100vh - 140px); /* Ensures content fills the viewport minus header/footer */
    box-sizing: border-box;
    justify-content: flex-start; /* Aligns the content to the start (left side) */
    position: relative;
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
    flex: 1;
}

.image-container-left {
    flex: 0 0 45%; /* Image container takes up 45% of the width */
    display: flex;
    align-items: stretch; /* Stretches the image to fill the container vertically */
    justify-content: center;
}

.image-container-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.image-container-left .side-image,
.image-container-right .side-image {
    width: 112%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    flex: 1 1 auto;
    padding: 2rem;
    background-color: #beb57d;
    box-sizing: border-box;
    overflow-y: auto;
    margin-right: 0%;
    z-index: 30; /* Leaves space for the right image */
}

.content-text h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.content-text ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.content-text ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-container-left,
    .image-container-right {
        flex: none;
        width: 100%;
        height: auto; /* Adjust height for smaller screens */
        margin-bottom: 1rem;
        position: relative;
    }

    .image-container-right {
        position: relative;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .content-text {
        width: 100%;
        padding: 1rem;
        margin-right: 0;
    }
}

.content h2 {
    text-align: center;
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    z-index: 40;
}

.footer-logo img {
    max-width: 100px;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul.show {
        display: flex;
    }

    .content-about .content-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .content-about .image-container {
        width: 100%;
        margin-bottom: 1rem;
    }

    .content-about .side-image {
        max-width: 100%;
        margin: 1rem 0;
    }

    .content-about .content-text {
        width: 100%;
        padding: 2rem;
        box-sizing: auto;
    }

    .content-about .content {
        margin: 0;
    }
}

/* Events Page Styles */
.hero-events {
    background-image: url('../assets/directions.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-events .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

.hero-events h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-events h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem 0;
}

.hero-events .btn {
    background: #ff4500;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero-events .btn:hover {
    background: #e04a00;
}

.content-events {
    display: flex;
    padding: 0;
    flex: 1;
}

.content-wrapper-events {
    display: flex;
    flex: 1;
    height: calc(100vh - 140px);
}

.image-container-events {
    flex: 1;
    display: flex;
}

.image-container-events img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.content-text-events {
    flex: 2;
    padding: 4rem 2rem;
    background-color: #5285a3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.content h2 {
    text-align: center;
}

.content p {
    text-align: left;
    margin-bottom: 20px;
}

.content-text-events p,
, .content-text-events h2 {
    text-align: center;
    margin-bottom: 20px;
}