html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #1a0000; /* merah tua gelap */
  color: #ffd700;       /* emas */
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #1f3030;
}

.logo {
  height: 40px;
}

nav {
  background: #1f3030;
  padding: 10px 20px;
  color: #ffd700;
}

.banner-wrapper {
  text-align: center;
  padding: 20px;
}

.banner {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  border: 2px solid #ffd700;
  border-radius: 10px;
}

main {
  flex: 1;
  padding: 20px;
  text-align: center;
}

main > h1,
main > p {
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Tombol vertikal dan di tengah */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}

.cta-buttons .btn {
  width: 90%;
  max-width: 300px;
  text-align: center;
  padding: 12px;
  background-color: #ffd700;
  color: #4d0000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-buttons .btn:hover {
  background-color: #e6c200;
}

footer {
  text-align: center;
  padding: 10px;
  background: #1f3030;
  color: #ffd700;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-icons .icon-link img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.footer-icons .icon-link:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 600px) {
  .footer-icons .icon-link img {
    width: 36px;
    height: 36px;
  }
}
