* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #4f5051;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  /* ensures body spans full viewport */
  margin: 0;
}

main.mainBody {
  flex: 1;           
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}


main.mainBody {
  flex: 1;
  padding: 80px 80px 0px 80px;
  
}

.mainBody h1 {
color: #192a3a;
}

@media (max-width: 768px) {
  .hero {
            min-height: 20rem;
  }
  main.mainBody {
    padding: 1rem 1rem 0 1rem;
    padding-bottom: 4rem;    /* adjust 4rem → roughly your footer’s height */
    height: auto;            /* let it grow with content */
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: left;
  padding: .6rem;
  z-index: 10;
  display: flex;
    transition: background-color .25s ease, box-shadow .25s ease; /* add this */

}


/* Add this near the end of the file */
header.header--transparent {
  background-color: transparent !important;
  box-shadow: none;
}


header h1 {
  color: #d0e4ed;
}

.headerButtons {
    margin-left: auto;
    align-content: center;

}

.headerButtons button{
    background: transparent;
    color: white;
    border: none;
    font-size: 20px;
    padding: 0 5px 0 5px;
}

.headerButtons button:hover{
    color: #b4b4b4;
}


footer {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.footerContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerLinks {
  margin-top: 0.5rem;
}

.footerLinks a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footerLinks a:hover {
  color: #b4b4b4;
}

.langToggle {
  position: absolute;
  top: 100px;
  right: 20px;
  z-index: 20;
}

.langToggle a {
  background-color: #004aad;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.langToggle a:hover {
  background-color: #002d70;
}


.footerContent p{
  color: #b4b4b4;
}