:root {
  --background: rgb(235, 237, 255);
  --headings: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --body-text: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --container-shadow: 0 0 30px 0 rgba(0, 56, 152, 1);
}
/* General */
*{
 margin: 0;
 padding: 0;
 text-decoration: none;
 list-style: none;
 color: inherit;
 box-sizing: border-box;
}
html{
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  background-color: var(--background);
  font-family: var(--body-text);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main{
  flex: 1;
}
h1,h2,h3 {
  font-family: var(--headings);
}
h1{
  font-size: clamp(30px, 7.633vw, 40px);
  text-align: center;
  text-wrap: balance;
  margin: 3rem auto 4rem auto;
}
h2{
  font-size: clamp(25px, 5.04vw, 30px);
}
p{
  font-size: 20px;
}
/* Screen readers */
.screen-readers-only{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0,0,0,0)
}
/* Top Bar */
.header {
  height: clamp(94px, 23.86vw, 100px);
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-left: clamp(10px, 4.08vw, 80px);
}
.logo{
  height: auto;
  width: clamp(200px, 53.93vw,  366.86px);
  align-items: flex-start;
}
/* Keyboard Navigation Hamburger*/
.keyboard-nav{
  position:absolute;
  width: 10px;
  height: 10px;
  margin: 0px;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
}
.keyboard-nav:focus + label.hamburger-menu{
  outline: 2px solid rgb(32, 90, 214);
  outline-offset: 2px;
}
/* Hambuger Menu */
#hamburger-toggle {
  opacity: 0;
}
.hamburger-menu {
  color: white;
  cursor: pointer;
  padding: 10px;
}
.navigation-menu {
  display: none;
  position: fixed;
  top: clamp(94px, 23.86vw, 100px);
  left: 0;
  width: 100%;
  height: 600px;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#hamburger-toggle:checked ~ .navigation-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
}
.navigation-menu ul {
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: center;
  font-size: 20px;
  font-family: var(--headings);
  font-weight: 600;
}
.nav-links {
  color: white;
  transition: 0.3s;
}
/* Hover and active nav links */
.nav-links:focus-visible,
.nav-links:hover {
  color: #5DA9FF;
}
.active-nav {
  color: #5DA9FF;
  border-bottom: 3px solid white;
  padding: 0 5px;
}
/* Opening hours */
.opening-hours {
  position: sticky;
  top: 100px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 2rem;
  padding: 5px;
  border-radius: 10px;
  background: var(--background);
  z-index: 99;
}
/* Footer */
hr{
  margin: 46px 0;
  place-self: center;
  width: 95%;
}
.footer-section{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 48px;
  bottom: 0;
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 500;
}
.language a,
.contact-info a {
  display: flex;
  align-items: center;
  gap:8px;
  font-style: normal;
}
.social{
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.social-media {
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 0;
}
.subscribe-section{
  font-weight: 600;
}
#email-footer{
  padding: 5px 10px;
  border-radius: 10px;
  border: solid 1px #8A8A8A;
  font-size: 15px;
  margin: 8px 6px 0 0;
  font-size: 15px;
}
.subscribe-button{
  font-size: 15px;
  font-family: var(--body-text);
  color: white;
  border: none;
  border-radius: 10px;
  background-color: #0004FF;
  padding: 5px 5px;
  margin-top: 8px;
  transition: background-color 0.3s ease;
}
.subscribe-button:focus-visible,
.subscribe-button:hover {
  background-color: #6A6CFF;
}
/* Desktop Menu */
@media (min-width: 1200px){
.hamburger-menu{
  display: none;
}
.navigation-menu{
  display: flex;
  position: static;
  height: auto;
  background: none;
  backdrop-filter: none;
  justify-content: flex-end;
}
.navigation-menu ul{
  flex-direction: row;
  gap: 0;
}
.navigation-menu li {
  position: relative;
  padding:  20px;
}
.navigation-menu li::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 50px;
  width: 1px;
  height: 50px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.navigation-menu li:last-child::after {
  display: none;
}
}
/* Footer */
@media (min-width: 850px){
  .footer-section{
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
  .language {
    place-self: end;
  }
}