* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, Roboto, sans-serif;
}

body {
    background-color: #ffbf00; /* yellow */
    color: #000000; /* Black text for contrast */
    font-family: Arial, Helvetica, Roboto, sans-serif;
}

/* Navigation Bar */
.navbar {
    background-color: #FFC107; 
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: #000000; 
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
    font-family: Arial, Helvetica, Roboto, sans-serif;
}

.navbar a:hover {
    color: #ffffff; 
}



/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('mount-chocorua.jpg'); /* White Mountains image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4em;
    color: #FFC107; /* Yellow title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for readability */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 10px;
    font-family: Arial, Helvetica, Roboto, sans-serif;
}


/* Mini-Hero Section - Subpages */
.minihero {
    height: 20vh;
    background-image: url('mount-chocorua.jpg'); /* White Mountains image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
	padding-top: 40px;
}

.minihero h1 {
    font-size: 2em;
    color: #FFC107; /* Yellow title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for readability */
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 10px;
    font-family: Arial, Helvetica, Roboto, sans-serif;
}

/* Blurbs Section */
.blurbs {
    display: flex;
    flex-direction: column; /* Single column layout */
    gap: 20px;
    padding: 50px;
    max-width: 800px; /* Constrain width for readability */
    margin: 0 auto;
}

.blurb {
    background-color: #f5f5dc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blurb h3 {
    color: #000000;
    margin-bottom: 10px;
}

.blurb p {
    color: #000000; /* Black text */
    margin-bottom: 15px;
}

.blurb a {
    display: inline-block;
    background-color: #000000;
    color: #ffffff; 
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blurb a:hover {
    background-color: #e0a800; /* Darker yellow on hover */
}

.blurb:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); /* Yellow glow */
}


/* sub-pages */
.pagecontent {
    display: flex;
    flex-direction: column; /* Single column layout */
    gap: 20px;
    padding: 50px;
    max-width: 800px; /* Constrain width for readability */
    margin: 0 auto;
}

.content {
    background-color: #f5f5dc;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.content h1 {
	font-weight: bold;
	font-size: 1.7em;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 0 8px 0;
	color: #b6190a;
}

.content h2 {
	font-weight: bold;
	font-size: 1.3em;
	text-transform: uppercase;
	margin: 20px 0 6px 0;
	letter-spacing: 1px;
	text-align: center;
}

.content h3 {
	font-weight: normal;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 16px 0 6px 0;
}

.content p {
	padding: .6em 0;
}

.quote {
	font-style:italic;
	color: #48494b;
	font-size: .9em;
	margin: 0 30px;
}

.content ol, .content ul {
	margin-left: 50px;
}

.con_img {
    margin: 20px auto;
    width: 100%; /* Scales to container width by default */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes inline spacing */
    border-radius: 5px; /* Optional: matches your aesthetic */
	border: 2 solid #ff0000;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .navbar ul {
        gap: 15px;
    }

    .navbar a {
        font-size: 1em;
    }

    .blurbs {
        padding: 20px;
    }
	
	.content img {
        width: 50%;
    }
}