/* === FONT === */
@font-face {
  font-family: 'Moana';
  src: url('../get/font/moana.ttf') format('truetype');
  font-display: swap;
}

/* === LAYOUT GLOBAL === */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: white;
  background: #0a1a2f;
  animation: bgChange 15s infinite;
}

@keyframes bgChange {
  0%, 100% { background-color: #0a1a2f; }
  20%      { background-color: #122d49; }
  40%      { background-color: #193f63; }
  60%      { background-color: #1b4370; }
  80%      { background-color: #21487a; }
}

/* === CONTENT WRAPPER === */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: 20px; /* supaya konten nempel atas */
}

.logo {
  max-width: 70px;
  width: 50%;
  min-width: 10px;
}

.samawa {
  font-family: 'Moana', cursive;
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 0;
}

.title {
  font-size: 1rem;
  color: #fffff0;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.title-group {
  margin-top: 20px;
}

/* === MAP === */
#map {
  width: 80%;
  height: 70vh;          /* 70% tinggi layar */
  margin: 0 auto;        /* center horizontal */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 10;
}

.legend {
  background:white;
  padding:8px;
  border-radius:6px;
  font-size:13px;
  box-shadow:0 1px 4px rgba(0,0,0,0.3);
}
.legend i {
  width:18px;
  height:18px;
  float:left;
  margin-right:8px;
  opacity:0.8;
}

/* === FOOTER === */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 5px;
  font-size: 0.9rem;
  color: white;
  text-align: left;
  z-index: 999;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .title    { font-size: 2rem; }
  .subtitle { font-size: 0.7rem; }
  .samawa   { font-size: 1.9rem; }
  .footer   { font-size: 0.2rem; }
  .btn-content {
    font-size: 1rem;
    padding: 10px 20px;
  }
  #map {
    width: 95%;     /* lebih lebar di hp */
    height: 60vh;   /* agak rendah biar muat */
  }
}