@font-face {
  font-family: 'LT Glockenspiel';
  src: url('fonts/LT Glockenspiel.ttf') format('truetype');
}

@font-face {
  font-family: 'TikiTropic';
  src: url('fonts/TikiTropic.ttf') format('truetype');
}

body {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  height: 100vh;
  background-image: url('images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headbox {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: #644e51cc;
  border-radius: 6px;
  padding: 6px;
  z-index: 1000;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hamburger {
  font-size: 18px;
  color: #f7c65d;
  user-select: none;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

.dropdown {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background-color: #644e51cc;
  position: absolute;
  top: 40px;
  left: 0;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  flex-direction: column;
  min-width: 100px;
}

.dropdown.show {
  max-height: 200px;
}

.dropdown a {
  display: block;
  padding: 6px 12px;
  color: #f7c65d;
  text-decoration: none;
  font-size: 12px;
  font-family: 'LT Glockenspiel';
}

.dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  color: #c14545;
  font-family: 'LT Glockenspiel';
  padding-bottom: 0;
}

.profil {
  width: 20%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #644e51;
  margin-bottom: 10px;
}

.welcome{
  font-size: 120%;
  color: #dc694a;
  text-align: center;
}

.container h1 {
  margin-bottom: 0.1%;
  font-size: 300%;
}

.container p {
  margin-top: 0;
  padding-bottom: 1%;
}

@media (max-width: 768px) {
  .headbox {
    width: 40px;
    height: 40px;
    top: 8px;
    left: 8px;
  }

  .hamburger {
    font-size: 24px;
  }

  .dropdown {
    min-width: 140px;
    top: 48px;
  }

  .container {
    padding: 20px;
  }

  .profil {
    width: 60%;
    height: auto;
    margin-bottom: 15px;
  }

  .container h1 {
    font-size: 180%;
  }

  .welcome {
    font-size: 100%;
  }

  .dropdown a {
    font-size: 14px;
  }
}
