* {
  box-sizing: border-box;
  font-family: 'Acherus Grotesque', sans-serif;
  scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #81c027;
}

*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #008062;
}

html {
  scroll-behavior: smooth;
  background-color: #e2ddb8;
}

body {
	background-color: #e2ddb8;
	transform: translateZ(0);
	display: grid;
    grid-template-columns: 25% 75%;
	margin: 0;
	min-height: 100vh;
}

@font-face {
  font-family: 'Acherus Grotesque';
  src: url('fonts/AcherusGrotesque-Regular.otf') format('opentype');
  font-weight: normal;  
  font-style: normal;   
}

@import url('https://fonts.googleapis.com/css2?family=Gelasio:wght@400;700&display=swap');

h1, h2, h3 {
    font-family: 'Gelasio', serif;
    font-style: normal;
    color: rgb(0, 128, 98);
    font-weight: 700;
	margin: 20px 0px;
}

h1 {
    font-size: 50px;
    font-family: 'Gelasio', serif;
    font-style: normal;
    color: rgb(0, 128, 98);
    font-weight: 700;
    margin: 20px 0px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.main__content--textwrap h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* Adjust to be under the text */
    width: 100%;
    height: 2px;
    background-color: #008062;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-expand 2s ease forwards;
}

@keyframes underline-expand {
    to {
        transform: scaleX(1);
    }
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 30px;
}

p {
    font-family: 'Acherus Grotesque', sans-serif;
}

p a {
    color: #000;
	font-style: italic;
	text-decoration: none;
}

.main{
	padding: 20px;
}

.main-content {
	position: relative;
	width: auto;
	grid-column: 2;
}

/* Navbar */

#navbar {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh; 
    background-color: #e2ddb8;
    padding: 20px; 
    box-sizing: border-box; 
	display: flex;
	box-shadow: rgba(0, 0, 0, .25) 0 3px 11px 0;
    -moz-box-shadow: rgba(0, 0, 0, .25) 0 3px 11px 0;
    -webkit-box-shadow: rgba(0, 0, 0, .25) 0 3px 11px 0;
	grid-column: 1;
	z-index: 1000;
}

.navbar__logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.navlogo{
    max-width: 100%;
    height: auto;
    display: block;
    padding: 15px;
}

.moblogo {
    height: 50px;
    width: auto;
	display: none;
	margin: auto
}

.navbar__menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar__item {
    margin-bottom: 10px;
	font-size: 1.6rem;
}

.navbar__links {
    display: block;
    text-decoration: none;
    color: #008062;
    padding: 10px;
    border-radius: 5px;
    background-color: none;
    position: relative;
    background-image: linear-gradient(120deg, #00a246, #00a246);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
	transition: 
        background-color 0.25s ease, 
        padding 0.25s ease, 
		padding-left 0.25s ease,
        background-size 0.25s ease, 
        color 2s ease;
}

/* Hover state */
.navbar__links:hover {
    background-color: #fffccf;
    padding-left: 40px;
    background-size: 100% 2px; 
	transition: 
        background-color 0.25s ease, 
        padding 0.25s ease, 
		padding-left 0.25s ease,
        background-size 0.25s ease, 
        color 2s ease;
}

/* Active link state */
.navbar__links.active {
    background-size: 100% 2px;
    padding-left: 40px;
    color: #00a246;
    font-family: 'Gelasio', serif;
    font-weight: 800;
	transition: 
        background-color 0.25s ease, 
        padding 0.25s ease, 
		padding-left 0.25s ease,
        background-size 0.25s ease, 
        color 2s ease;
}

.navbar__links::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid #00a246;
    border-bottom: 10px solid transparent;
    border-right: 0;
    opacity: 0;
    transition: left 0.25s ease, opacity 0.25s ease;
}

.navbar__links.active::before, .navbar__links:hover::before {
    left: 25px;
    opacity: 1;
}

/* Footer */
.footer__container {
  background-color: #008062;
  padding-top: 20px;
    padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #1e8ad3;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-family: inkfree;
  font-weight: bold;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 35px;
}

.footer__link--items a {
  color: #e9e9e9;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer__link--items a:hover {
  color: #a2a2a2;
  transition: 0.3s ease-out;
}

/* Social Icons */

.fa-facebook, .fa-instagram, #social__icon--link {
  color: #fff;
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap, .social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social__media--wrap {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  
}

.social__icons {
  width: 240px;
}

.social__icons--contact {
  font-size: 24px;
}

#social__icon--link--contact{
	text-decoration: none;
}

.social__logo {
  color: #fff;
  justify-self: flex-start;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.website__rights {
  color: #fff;
}

.website__rights, .footer__logo, .social__icons{
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
}

#footer__logo {
	height: 100px;
}

.footlogo {
  max-height: 100%;
  width: auto; 
}

/* Home */

.main__content {
	display: grid;
    text-align: center;
    align-items: center;
}

.home__grid {
	grid-template-columns: 40% 60%;
	grid-template-rows: auto auto;
    grid-template-areas: 
        "text img"
        "full full";
}

.main__content--textwrap {
    border: 8px solid #008062;
    margin: 25px;
	padding: 15px;
	text-align: center;
}

.home__grid--title {
    grid-area: text;
}

.main__content iframe {
    border: none;
}

.main__content--iframewrap {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
	margin: 25px;
}

.main__content--imgcontainer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.menuimg {
    max-width: 100%;
    height: auto;
    flex: 1 1 45%; /* Adjust the width as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.main__btn {
  font-style: none;
  background-color: #008062;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #e2e2e2;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}

.main__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #81c027;
  transition: all 0.35s;
  border-radius: 4px;
}

.main__btn:hover {
  color: #81c027;
}

.main__btn:hover:after {
  width: 100%;
}

.menuimg{
	max-width: 100%;
	height: auto;
}

br.email__break{
	display: none;
}

@media screen and (max-width: 520px) {
	.main__content--textwrap {
		margin: 10px;
	}
	br.email__break{
		display: inline;
	}
}

#content {
    min-height: 200px;
	max-width: 100%;
}

#footer {
    width: 100%;
    background: #f1f1f1;
}

.menu-content{
	position: relative;
	width: auto;
}

.menu--img{
	border-style: solid !important;
	border-color: #008062 !important;
    border-width: 0px !important;
    border-radius: 25px 25px 25px 25px !important;
    border-top-style: solid !important;
    border-bottom-style: solid !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    border-top-width: 3px !important;
    border-bottom-width: 3px !important;
	height: 50vh !important;
}

@media screen and (max-width: 580px) {
	.menu--img{
		height: 30vh !important;
	}
}


.newspaper__wrapper {
	align-items: center;
    border: 8px solid #008062;
    margin: 25px;
	padding: 15px;
	text-align: center;
}

.newspaper__wrapper {
	grid-column: span 2;
	justify-self: center;
}

.nferrimg {
	width: 100%;
}