@import url(https://fonts.googleapis.com/css?family=Finlandica+Headline:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Lora:regular,500,600,700,italic,500italic,600italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+3:200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
/* 
Blanco: #faf6f0
Verde: #2f6f68
Negro: #2f3a3a
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Monsterrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #b7c8b0;
}

h1 {
  font-family: "Lora";
  display: flex;
  font-size: 48px;
  font-weight: bold;
  justify-content: center;
  color: #18453f;
  padding: 30px 0 30px 0;
}

h2 {
  font-family: "Lora";
  display: flex;
  font-size: 32px;
  font-weight: bold;
  justify-content: left;
  color: #18453f;
  padding: 30px 0 30px 140px;
}

h3 {
  font-family: "Lora";
  color: #18453f;
}

p {
  padding: 0 0px 10px 10px;
  font-size: 18px;
  line-height: 1.8;
  color: #2f3a3a;
}

.eyebrow {
  color: #3b4545;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fffdfa;
  box-shadow: rgba(0, 0, 0, 0.518) 0px 8px 24px;
}

.hamburger {
  color: #18453f;
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.logo img {
  height: 80px;
  width: auto;
  padding: 0 0 0 140px;
}

#logo-mobile {
  display: none;
}

.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-menu {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.main-menu ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
}

.main-menu > a {
  justify-self: end;
  padding: 0;
}

/* Initially hide the submenu */
.menu-item {
  position: relative;
}

.main-menu a {
  font-size: 20px;
  font-weight: 100;
  text-decoration: none;
  color: #2f3a3a;
  font-weight: bold;
  padding: 10px 15px;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.main-menu a:hover {
  color: #2f6f68;
  border-radius: 3px;
}

.donate-button {
  margin-left: 0;
  align-self: end;
  background-color: #2f6f68;
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
}
.donate-button:hover {
  background-color: #1b4a45;
}

.menu-item .submenu {
  display: block;
  position: absolute; /* Positions it below the parent item */
  top: 100%;
  left: 0;
  background-color: #faf6f0;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  margin: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s linear 0.2s,
    opacity 0.2s ease;
}

/* Show the submenu when hovering over the parent list item */
.menu-item:hover > .submenu {
  display: block;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

/* Style individual submenu items */
.submenu li {
  list-style: none;
}

.submenu li a {
  color: #2f3a3a;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.submenu li a:hover {
  background-color: #ddd;
}

.donate-button {
  margin-left: auto;
}

/* Footer */

.site-footer {
  background: #b7c8b0;
  color: #2f3a3a;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 80px;
}

.footer-column h3 {
  font-family: "Finlandica Headline", sans-serif;
  font-size: 30px;
  margin-bottom: 18px;
}

.footer-column p,
.footer-column a {
  font-size: 18px;
  line-height: 1.7;
  color: #1f1f1f;
}

.footer-button {
  display: inline-block;
  margin: 12px 0 35px;
  min-width: 180px;
  text-align: center;
  padding: 12px 24px;
  background: #fbf9f6;
  color: #3d3028;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.footer-button:hover {
  background: #18453f;
  color: white;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18453f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #282828;
  color: #e8e4df;

  padding: 10px 24px;
}

.footer-logo {
  width: 130px;
  height: auto;
  opacity: 0.65;
  margin: 0 auto 18px;
  display: block;
}

.copyright-text {
  font-size: 15px;
  color: #c3c3c3;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-links a {
  color: #e8e4df;
  text-decoration: none;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 15px;
}

.footer-links a:last-child {
  border-right: none;
}

.footer-links a:hover {
  color: white;
}
