:root {
    --foreground-muted: #58585a;
    --foreground-primary: #000000;
    --hover: #b08654;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: 'Verdana', sans-serif;
    --font-family-headline: 'Ubuntu', sans-serif;
    --font-size-body: 10pt;
    --font-size-normal: 1em;
    --font-size-small: 0.8125rem;
}

p {
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-normal);
    line-height: 1.6;
    color: var(--foreground-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headline);
    color: var(--foreground-primary);
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
}

* {
    box-sizing: border-box;
    /*border-color: red;
    border-style: solid;*/
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    position: absolute;
    width: 100%;
    height: auto;
    /* Add this line */
}

.header-container-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    width: 100%;
    height: auto;
}

.logo-container {
    width: 25%;
}

.logo {
    width: 4rem;
    height: auto;
}

.custom-logo {
    width: 12rem;
    /* Adjust the width as needed */
    height: auto;
}


.nav-container {
    width: 66.67%;
    display: flex;
    justify-content: center;
    height: auto;
    /* Change this line */
}

/* Hide .nav-container on laptop to mobile screen sizes */
@media (max-width: 992px) {
    .nav-container nav {
        display: none;
    }
}

.nav-list {
    display: flex;
    gap: 1rem;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground-primary);
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--hover);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--foreground-primary);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu-button {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button button {
    background: none;
    border: none;
    color: var(--foreground-primary);
    font-size: 1.7rem;
    /* Increase the font size */
    padding: 0.5rem;
    /* Add padding to make the button area larger */
    cursor: pointer;
}

.mobile-menu button {
    position: absolute;
    top: 2.5rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--foreground-muted);
    font-size: 2.5rem;
    /* Increase the font size */
    padding: 0.5rem;
    /* Add padding to make the button area larger */
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-button button {
        display: none;
    }

}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--foreground-primary);
    font-size: 1.5rem;
    margin: 3rem 0;
    transition: color 0.3s;
    font-family: var(--font-family-headline);
}

.mobile-nav-link:hover {
    color: var(--hover);
}

.hero-section {
    width: 100%;
    overflow: hidden;
    /* Prevent overflow */
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.site-main {
    min-height: 100vh;
    margin-top: 3rem;
    padding-left: 8rem;
    padding-right: 8rem;
}

/* Adjustments for tablets and mobile devices */
@media (max-width: 992px) {
    .site-main {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 576px) {
    .site-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.entry-header {
    text-align: left;
    margin-bottom: 2rem;
}

.entry-header .entry-title {
    font-family: var(--font-family-headline);
    font-size: 2.5rem;
    color: var(--foreground-primary);
    margin: 1rem 0;
}

.entry-header img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.entry-content {
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-normal);
    line-height: 1.6;
    color: var(--foreground-primary);
    padding: 0 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: var(--hover);
    text-decoration: none;
    transition: color 0.3s;
}

.entry-content a:hover {
    color: var(--foreground-primary);
}

.page-links {
    text-align: center;
    margin: 2rem 0;
}

.page-links a {
    background-color: var(--hover);
    color: #fff;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.page-links a:hover {
    background-color: var(--foreground-primary);
}

.entry-meta {
    text-align: center;
    margin-top: 2rem;
}

.edit-link {
    background-color: var(--hover);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.edit-link:hover {
    background-color: var(--foreground-primary);
}

/* Start Contact Page Styles */

.contact-page-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: var(--font-family-sans-serif);
    color: var(--foreground-primary);
}

.contact-top-section,
.contact-description {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    box-sizing: border-box;
}

.contact-info h2 {
    font-family: var(--font-family-headline);
    font-size: 2.5rem;
    color: var(--foreground-primary);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: var(--font-size-normal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-map iframe {
    border: 0;
    width: 100%;
    height: 400px;
}

.contact-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--hover);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: var(--foreground-primary);
}

.contact-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    width: 100%;
}

.contact-form h2 {
    font-family: var(--font-family-headline);
    font-size: 2rem;
    color: var(--foreground-primary);
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: var(--font-size-normal);
    margin-bottom: 0.5rem;
    color: var(--foreground-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--font-size-normal);
    font-family: var(--font-family-sans-serif);
    color: var(--foreground-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--hover);
    outline: none;
}

.contact-form button {
    background-color: var(--hover);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: var(--font-size-normal);
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--foreground-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-page-container {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-top-section,
    .contact-description {
        width: 100%;
    }

    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-page-container {
        padding: 0.5rem;
    }

    .contact-map iframe {
        height: 200px;
    }
}

/* End Contact Page Styles */

/* Start Footer Styles */

.site-footer {
    background-color: #FAF9F6;
    color: var(--foreground-primary);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-about,
.footer-contact,
.footer-times {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-about h2,
.footer-contact h2,
.footer-times h2 {
    font-family: var(--font-family-headline);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p,
.footer-contact p,
.footer-times p {
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-normal);
    line-height: 1.6;
}

.footer-times a:hover {
    color: var(--hover);
}

.footer-bottom {
    font-family: var(--font-family-sans-serif);
    margin-top: 2rem;
    font-size: var(--font-size-small);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-about,
    .footer-contact,
    .footer-times {
        margin: 1rem 0;
    }
}

/* End Footer Styles */

/* meeting time style */
.meeting-times {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: white;
    min-height: 70%; /* Adjusted height */
}

.meeting-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.meeting-times h2,
.meeting-times .times {
    position: relative;
    z-index: 2;
}

.meeting-times .times {
    display: flex;
    min-height: 50%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.meeting-times h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5rem;
    color: white;
}

.times p {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
/* end meeting time style */

/* Location Section */
.location-section {
    background-color: #f4f4f3;
    padding: 40px 20px; /* Padding around the section */
    text-align: center; /* Center align text */
    border-radius: 8px; /* Rounded corners */
    padding: 20px 0; /* Margin above and below the section */
}

.location-section h2 {
    font-size: 2rem; /* Font size for the heading */
    color: #77471f; /* Dark grey color for the heading */
    margin-bottom: 20px; /* Space below the heading */
}

.location-section p {
    font-size: 1.2rem; /* Font size for the paragraph */
    color: #666; /* Medium grey color for the paragraph */
    margin-bottom: 20px; /* Space below the paragraph */
}

.location-section iframe {
    width: 50%; /* Full width for the iframe */
    height: 450px; /* Height for the iframe */
    border: 0; /* Remove border */
    border-radius: 8px; /* Rounded corners */
}