/*
Theme: Astra Child
Template: astra
*/

/* TEXT ELEMENTS */
h1, h2, h3, h4, h5{
	color: green;
}

.entry-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1;
    margin-bottom: 1rem;
}

.entry-content h1, h2, h3, h4, h5{
	color: green;
}

.entry-content {
    max-width: 100%;
    padding: 2rem;
    background-color: #fefefe;
}

/* HEADER */
.custom-header {
  	display: flex;
  	align-items: center;
  	padding: 0 1rem;
	border: 1rem;
	border-bottom: 3px solid #228B22;
}

.site-info {
  	display: flex;
  	flex-direction: column;
  	margin-right: 2rem;
}

nav {
  	flex-grow: 1;
}

nav ul {
  	display: flex;             /* Lay out list items horizontally */
  	list-style: none;          /* Remove bullets */
  	padding: 0;                /* Remove default padding */
  	margin: 0;                 /* Remove default margin */
  	gap: 1rem;                 /* Optional spacing between items */
	justify-content: right;   /* Align the menu in the right */
}

nav ul li a {
  	text-decoration: none;
  	color: inherit;
  	padding: 0.5rem 1rem;
}

/* FOOTER */
.custom-footer {
  	background-color:#f5f5f5 /* #DEEAE2 */;
  	padding: 20px;
  	color: #333;
}

.footer-container {
  	display: grid;
  	grid-template-columns: 1fr 1px 1fr 1px 1fr;
  	width: 100%;
  	margin: 0 auto;
	align-items: start;
	text-align: center;
}

.footer-column {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	height: 100%;
}

.footer-column h3 {
  	font-size: 1.25rem;
  	margin-bottom: 15px;
  	border-bottom: 1px solid #ccc;
  	padding-bottom: 5px;
  	font-weight: 700;
	width: 80%;
}

.separator {
  	background-color: #ccc;
  	width: 1px;
  	height: 85%;
  	min-height: 150px;
  	margin: 0 auto;
}

.footer-column a {
  	display: block;
  	margin-bottom: 6px;
}

footer address p {
  	margin: 0 0 6px 0;
  	font-style: normal;
  	line-height: 1.4;
}