@font-face {
  font-family: 'LT Glockenspiel';
  src: url('fonts/LT Glockenspiel.ttf') format('truetype');
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('fonts/PlayfairDisplay.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding: 10px;
  box-sizing: border-box;
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.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';
}

.profil {
  width: 20%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #413435;
  margin-bottom: 10px;
}

.header-title {
  font-size: 300%;
  text-align: center;
  color: #f7c65d;
  font-family: 'LT Glockenspiel', sans-serif;
  margin-top: 30px;
  margin-bottom: 5px;
}

.introductionbox,
.interestbox {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #644e51;
  border-radius: 40px;
  border: 5px solid #413435;
  color: #f7c65d;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}

.introductionbox {
  font-family: 'PlayfairDisplay';
}

.interestbox {
  font-family: 'LTSaeada', sans-serif;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .headbox {
    width: 40px;
    height: 40px;
    top: 8px;
    left: 8px;
  }

  .hamburger {
    font-size: 24px;
  }

  .dropdown {
    min-width: 120px;
    top: 50px;
  }

  .container {
    padding: 20px;
  }

  .profil {
    width: 50%;
    height: auto;
  }

  .header-title {
    font-size: 200%;
  }

  .introductionbox,
  .interestbox {
    font-size: 18px;
    padding: 15px;
    margin: 15px;
    max-width: 95%;
  }

  .container h1 {
    font-size: 200%;
  }
}
