body {
    font-family: 'Inter', sans-serif;
}

/* Navigation bar */
.main-header {
    background-color: white;
    color: black;
    padding: 16px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    color: rgb(0, 42, 20);
    text-shadow: 0 0 10px rgb(237, 255, 247);
    opacity: 0.8;
}

.value-and-language-switch button {
    background: none;
    border: none;
    color: black;
    font-weight: 500;
    margin-left: 16px;
    font-size: 14px;
    cursor: pointer;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

/* Footer */
.main-footer {
    background-color: black;
    color: white;
    padding: 24px 0;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-left {
    flex: 1;
    min-width: 200px;
}

.footer-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-right a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-right a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    font-style: italic;
}

/* Responsive styles */
/* Desktop defaults */
.menu-toggle { display: none; }

/* Mobile layout */
@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
  flex-wrap: wrap;
    
  }
  .logo {
    display: flex;
    align-items: center;
    align-self: center;

  }

  .value-and-language-switch {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -30px;
  }
  .menu-toggle {
    display: inline-block;     
    font-size: 1.6rem;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .main-nav {

    order: 3;
    width: 100%;
    display: none;             
    flex-direction: column;
    align-items: flex-end;    
    gap: 10px;
    margin-top: 0px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    text-align: right;        
  }
  .main-nav a { display: block; }

  .main-nav.show { display: flex; }
}

