* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
  line-height: 1.6;
}

html, body { height: 100%; }
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
  background-color: #fd150d;
  padding: 16px 40px;
}

.logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #01070f;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  background-color: #e9f2ff;
  padding: 80px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  color: #fd150d;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.tentang {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tentang h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fd150d;
}

.tentang p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  text-align: justify;
}

.destinasi {
  background-color: #f7f9fc;
  padding: 60px 40px;
}

.destinasi h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #fd150d;
}

.kartu-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.kartu {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.kartu img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  border-style:solid;
}

.kontak {
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.kontak h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #fd150d;
}   

.kontak form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.kontak label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

.kontak input,
.kontak textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 15px;
}

.kontak button {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
}

.kontak button:hover {
  background-color: #0a58ca;
}

footer {
  background-color: #fd150d;
  color: #ffffff;
  padding: 40px 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col p {
  color: #cfd8e3;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid #345a95;
  margin-top: 30px;
  padding-top: 16px;
  color: #cfd8e3;
  font-size: 13px;
}



.navbar-nav .nav-link.active::after {
    left: 0;
    width: 100%;
    animation: growFromCenter 0.4s ease;
}

@keyframes growFromCenter {
    from {
        left: 50%;
        width: 0;
    }
    to {
        left: 0;
        width: 100%;
    }
}