* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
	border-bottom: 10px solid #369245;
    color: #000000;
    padding: 6px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-left: 2rem;
}

header img {
	margin-left: 20px;
}

header .nav a {
    color: #e0b028;
	padding: 8px 16px;
	margin: 0 14px;
	font-weight: bold;
	text-decoration: none;
}

header .nav a:hover {
	background-color: #e0b028;
	color: #ffffff;
}


.join-btn {
    background-color: #F4C430;
    color: #2E5B3F;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 2rem;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #e0b028;
}

main {
    margin-top: 40px;
    padding: 2rem;
}

main a {
	color: #369245;
	font-weight: bold;
}

section {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E5B3F;
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p {
    font-size: 1rem;
    margin-bottom: 1rem;
	text-align: left;
}

section ul {
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
}

section li {
	font-size: 1rem;
	margin-bottom: .2rem;
	text-align: left;
}

.location-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-placeholder {
    width: 250px;
    height: 150px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    border-radius: 5px;
}

.membership-tiers, .benefits, .events, .upcoming {
    text-align: left;
}


.membership-tiers li, .benefits li, .events li {
    margin-bottom: 1rem;
}

.founders-club {
    background-color: #f2f0ef;
    padding: 2rem;
    border-radius: 10px;
}

.footer {
	background-color: #369245;
    color: #FFFFFF;
    padding: 1rem 0;
    width: 100%;
    text-align:center;
	font-size: .9em;
	margin-bottom: 0;
}

.footer a {
	color: #e0b028;
}



@media (max-width: 600px) {
    header h1 {
font-size: 1.5rem;
margin-left: 1rem;
    }

    .join-btn {
margin-right: 1rem;
padding: 0.4rem 1rem;
    }

    section {
padding: 1rem;
    }

    section h2 {
font-size: 1.6rem;
    }

    .location-placeholder {
width: 100%;
height: 120px;
    }
}