/* Import Custom Font */
@font-face {
    font-family: 'CustomHeaderFont';
    src: url('headers.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3, h4 {
    font-family: 'CustomHeaderFont', Arial, sans-serif;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

h2, h3, h4 {
    text-transform: uppercase;
}

p {
    margin: 1em 0;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

li {
    margin: 0.5em 0;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    display: block;
    margin: 1em auto;
}

button:hover {
    background-color: #0056b3;
}

/* Header */
header {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    height: 100vh;
    position: relative;
}

.header_bar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1em;
    background-color: #ffffffcc;
	z-index:1;
}

.logo-container {
    display: flex;
    align-items: center;
}

header img {
    max-width: 100px;
}

.site-title {
    margin-left: 10px;
    font-size: 1.5em;
    font-family: 'CustomHeaderFont', Arial, sans-serif;
}

p.site-title {
	color: #172006;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    margin: 0;
}

nav ul li {
    margin: 0 1em;
}

nav ul a {
    font-size: 1em;
    color: #172006;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px;
}

.nav-links {
    display: flex;
    position: absolute;
    right: 0;
}

.nav-links-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.nav-links-mobile a {
    padding: 1em;
    color: #fff;
    font-size: 1.5em;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

.show-menu {
    display: flex;
}

/* Main Content */
main {
    padding: 0;
    background: #fff;
}

main section {padding: 2em;}
main section.wide {padding: 0em;}

.parallax {
    background-image: url('../img/cover.webp');
    background-attachment: fixed;
    background-position: 57%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 7%;
    width: 5em;
    color: white;
    font-size: 3.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    padding-bottom: 1em;
    max-width: 6em;
    margin: 0;
    text-align: right;
    letter-spacing: 0.03em;
}

h1 {
    font-size: 2em;
    margin: 1em 0;
    font-weight: bold;
    color: black;
}

h2 {
    font-size: 1.75em;
    margin: 1.5em 0;
    font-weight: bold;
    color: #172006;
}

h3 {
    font-size: 1.5em;
    margin: 1.2em 0;
    font-weight: bold;
    color: #172006;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

.cover-image {
    width: 100%;
    height: auto;
    margin-top: 2em;
}

blockquote {
    margin: 1em 0;
    padding: 2em 25% 4em;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    font-family: 'CustomHeaderFont', Arial, sans-serif;
}

.quote1 {
    background-image: url('../img/forest_sun_very_top.webp');
}

.quote2 {
    background-image: url('../img/forest_sun_top.webp');
}

.quote3 {
    background-image: url('../img/forest_sun_bottom.webp');
}

blockquote p {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

blockquote::before {
    content: '“';
    font-size: 8em;
    top: 0;
    color: white;
    z-index: 0;
	font-family: times;
}

blockquote cite {
    display: block;
    margin-top: 0.5em;
    font-size: 1em;
    color: white;
    z-index: 1;
	font-style: normal;
}

blockquote hr {
    width: 10%;
    margin-top: 4em;
    margin-bottom: 3em;
}

footer {
    background: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

footer a {
    color: #ddd;
}

#mobileMenu {
    display: none;
}

/* Center the video container */
.video-container {
    display: flex;
    justify-content: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .header_bar {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links-mobile {
        display: flex;
        width: 100%;
    }

    .hamburger {
        left: 0;
        top: 0;
        position: fixed;
        display: block;
    }

    .nav-links {
        display: none;
    }

    #mobileMenu.show-menu {
        display: flex;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1.1em;
    }

    .overlay-text {
        font-size: 3em;
        left: 3%;
    }
	
	blockquote {
		padding: 2em 5% 4em;
	}
}

/* Desktop Optimization */
@media (min-width: 1024px) {
    h1 {
        font-size: 3em;
        margin: 1.5em 0;
    }

    h2 {
        font-size: 2.75em;
        margin: 2em 0;
    }

    h3 {
        font-size: 2.5em;
        margin: 1.8em 0;
    }

    blockquote {
        margin: 2.5em 0;
        padding: 2.5em 25% 5em;
    }

    blockquote p {
        font-size: 3em;
    }

    blockquote cite {
        font-size: 1.25em;
    }

    .overlay-text {
        font-size: 4em;
        left: 15%;
    }
}

@media (min-width: 1200px) {
    .overlay-text {
        font-size: 4.5em;
        left: 20%;
    }
}
