@font-face {
  font-family: 'Celliad'; /* The name you'll use to refer to the font */
  src: url('/static/fonts/Celliad.otf') format('opentype');
  src: url('/static/fonts/Celliad.woff') format('woff');
  src: url('/static/fonts/Celliad.woff2') format('woff2');
  src: url('/static/fonts/Celliad.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

body {
  font-family: 'Celliad';
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.after-login {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.photo-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.left-container {
  flex: 1;
  text-align: left;
}

.thank-you-text {
  font-size: 3.5em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sub-text {
  font-size: 2.5em;
  font-style: italic;
  line-height: 1.2;
}

.image-container {
  position: relative;
  flex-shrink: 0;
}

.centered-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.photos-button {
  position: absolute;
  bottom: -60px;
  right: 0;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Celliad', sans-serif;
  transition: background-color 0.3s;
}

.photos-button:hover {
  background-color: #45a049;
}

@media (max-width: 900px) {
  .photo-layout {
    flex-direction: column;
    text-align: center;
  }
  
  .left-container {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .photos-button {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
  color: #fff;
}

.logo {
  text-decoration: none;
  font-size: 35px;
  font-weight: bold;
  padding: 15px; /* Voeg ruimte rondom de tekst toe */
  background: linear-gradient(45deg, #a58b58, #aa8d58, #bba26c, #ad905a, #967f51);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; /* Ensure text color becomes transparent to show the gradient */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.32); /* Optional: adds shadow for depth */
  flex-wrap: wrap;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 10px;
}

.menu a {
  text-decoration: none;
  font-size: 1.8em;
  font-weight: normal;
  padding: 10px; /* Voeg ruimte rondom de tekst toe */
  color: #fff;
}

.menu-toggle {
  display: none; /* Verborgen op desktop */
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 900px) or (max-height: 450px){

  .menu {
    display: none; /* Verberg menu standaard */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 70px;
    right: 0;
    width: 120px;
    padding: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8);
    border-radius: 10px 0 0 10px; /* Adds rounded corners */
    z-index: 2; 
  }

  .menu li {
    margin: 10px 0;
  }

  .menu a {
    font-size: 25px;
  }

  .menu.show {
    display: flex; /* Toon menu bij klikken */
  }

  .menu-toggle {
    display: block; /* Toon hamburgericoon */
  }

}