* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #000000;
  background: linear-gradient(
    125deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 48%,
    rgba(0, 0, 0, 1) 66%,
    rgba(69, 0, 0, 1) 83%,
    rgba(84, 2, 2, 1) 95%
  );
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ── NAVBAR ── */
header {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 50px;
  flex-wrap: wrap;
}

.header-image {
  width: clamp(80px, 12vw, 200px);
  height: 60px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.nav-container {
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  padding: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 1px;
  color: red;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.3s;
}

nav ul li {
  border-left: 1px solid black;
}

ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  list-style: none;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.show-link5 {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.header {
  border: 1px solid red;
}

.hero {
  border: 1px solid white;
  margin-top: 3px;
}

.contact-page {
  flex: 1;
  display: flex;
  gap: 150px;
  margin: 80px 110px;
  color: #fbedd1;
  font-size: 15px;
}

.cwt {
  color: red;
  font-size: 40px;
}

.contact-details {
  margin-left: 300px;
  flex-direction: column;
  color: #fbedd1;
  font-size: 20px;
}

.sayo {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-self: center;
  color: red;
  width: 100%;
  font-size: 30px;
}

.baliw {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pula {
  border: 1px solid red;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.puti {
  border: 1px solid white;
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.all-footer {
  background-color: transparent;
  position: relative;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  color: white;
}

.kapi {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-top: 5px;
  margin-left: 10px;
  color: #fbedd1;
  font-size: 13px;
}

@media (max-width: 1000px) and (max-width: 768px) {
  body {
    padding-bottom: 20px;
  }

  header {
    height: auto;
    padding: 5px 24px;
    flex-direction: column;
  }

  .header-image {
    margin: 0 auto;
    padding: 5px;
    width: 80px;
    height: 60px;
  }

  .nav-container {
    padding-right: 0;
    width: 100%;
  }

  nav ul {
    gap: 4px;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    padding: 6px 10px;
    font-size: 11px;
  }

  .contact-page {
    flex-direction: column;
    gap: 30px;
    margin: 40px 20px;
    font-size: 15px;
    text-align: center;
    align-items: center;
  }

  .contact-details {
    margin-left: 0;
    width: 100%;
    align-items: center;
    text-align: center;
    font-size: 15px;
  }

  .kapi {
    font-size: 10px;
  }
}
