nav {
	background-color: maroon;
	text-align: center;
	width: 100%;
	font-size: 1em;
	height: 50px;
	word-spacing: 5em;
	padding-top: 20px;
}

header img {
    width: 80%;         
}

.maining {
	float: right;
    width: 30%;         
}

nav a {
	text-decoration: none;
	color: white;
	background-color: maroon;
}

body {
	margin: 0;
	padding: 0;
}

.row2 {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 20px;
}

.row2 .col {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.row2 h2 {
	background-color: maroon;
	color: white;
	width: 100%;
	text-align: center;
}

nav a:hover {
	background-color: white;
	padding: 3px;
	color: maroon;
	border-radius: 5px;
}

.row1 {
    width: 80%;
    margin: auto;
    display: flex;
}

.col {
	float: left;
	width: 100%;
	padding-right: 20px;
}

hr {
	width: 80%;
}

.row1 h2, .row2 h2 {
    font-size: 2.5em;
}

.row1 p, .row2 p {
    font-size: 1.3em;
}

.about-row1, .about-row2, .about-row3 {
    width: 80%;
    margin: auto;
    display: flex;
}

.about-row2 {
	margin-bottom: 40px;
}

.about-row1 h2, .about-row2 h2, .about-row3 h2 {
    font-size: 2em;
}

.about-row1 p, .about-row2 p, .about-row3 p {
    font-size: 1.3em;
}


.aboutimage {
	flex: 1;
	text-align: center;
}

.aboutimage img {
	width: 280px;
	height: 300px;
}

.donate {
    text-align: center;
}

.donate h2 {
    font-size: 2.5em; /* bigger heading */
    margin-bottom: 20px;
}

.donate p {
    font-size: 1.3em; /* smaller paragraph text */
    margin: 5px 0;
}

.donate a {
    color: maroon;
    text-decoration: none;
}

.donate a:hover {
    text-decoration: underline;
    opacity: 0.9;
}


input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: maroon;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: maroon;
}


.container h2 {
    background-color: maroon;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 5px 5px 0 0;
    font-weight: normal;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    box-sizing: border-box;
}

.contitle {
    text-align: center;
    background-color: maroon;
    color: white;
    width: 80%;
    margin: 40px auto 10px;
    padding: 10px;
}

footer {
  display: flex;
  justify-content: flex-start;  /* keeps columns closer together */
  gap: 30px;
  color: white;
  background-color: maroon;
}


.footer-left {
	width: 50%;
	text-align: center;
} 

.footer-right {
	width: 50%;
	text-align: center;
	border-left: 2px solid;
	padding-right: 20px;
}

.footer h2 {

}

footer a {
	color: white;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
	opacity: 0.9;
}

.row {
    display: flex;
    width: 80%;
    margin: 0 auto;
    flex-wrap: nowrap; /* prevents the right column from dropping under */
}

.map-col {
	width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-col {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    background-color: maroon; 
    color: white;      /* White background */
    padding: 20px 25px;
    border-radius: 10px;
    max-width: 350px;               /* Keeps it from getting too wide */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 20px auto; 
    margin-left: auto;
    margin-right: 0;
}

/* Map styling */
.map {
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Address text */
.address h2,
.address p {
    text-align: center;
    font-size: 1.8em;
}


.hours h2 {
    margin-top: 0;
    font-size: 1.8em;
    text-align: center;
    color: white;
}

.hours ul {
	text-decoration: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.hours li {
    padding: 6px 0;
    font-size: 1.3em;
    border-bottom: 1px solid white;  /* Light divider line */
    display: flex;
    justify-content: space-between; /* Day on left, time on right */
}

.hours li:last-child {
    border-bottom: none;
}

.hours strong {
    color: white;
}

