body{
    position: relative;
    background-color: #00020d;
    color: white;
}
.navbar {
    position: sticky;
    background-color: #00020d;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    top: 0;
    border-bottom: 3px solid rgba(160, 160,160, 0.5);
    z-index: 1000;
}
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(1);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
}
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}
select, textarea, button {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.reply-form {
    margin-top: 10px;
}
.button {  
    background: linear-gradient(45deg, rgb(57, 32, 95) 0%, rgb(155, 60, 12) 100%); /* Gradien warna latar belakang */  
    color: white;  
    border: none;
    padding: 15px 30px;  
    border-radius: 5px;  
    font-size: 16px;  
    cursor: pointer;  
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}  
.button:hover {  
    transform: scale(1.05);
    background: linear-gradient(45deg, rgb(19, 80, 74) 0%, rgb(5, 66, 95) 100%);
} 
.navbar-tombol {
    width: 30px;
}
.select {
  position: relative;
  z-index: 1;
}
.section3 {
    width: 100%;
}
/* Styling section3 dengan background gelap dan padding */
#section3, #section2 {
  background-color: #1e1e2f; /* Warna gelap lembut */
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}
#section2 {
  width: 300px;
}
#section3 {
    width: 600px;
    max-width: 600px;
    min-width: 300px;
}
.container-2, .container-3 {
    min-height: 100vh;
}
/* Styling form */
#section3 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input teks */
#section3 input[type="text"] {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: #2c2c3e; /* Warna latar input gelap */
  color: #ffffff;
  font-size: 16px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#section3 input[type="text"]:focus {
  outline: none;
  background-color: #3a3a4f; /* Sedikit lebih cerah saat fokus */
  box-shadow: 0 0 8px #00ffcc; /* Efek glow saat fokus */
}
.textarea:hover, .input:hover {
    background-color: #3a3a4f; /* Sedikit lebih cerah saat hover */
    box-shadow: 0 0 8px #00ffcc; /* Efek glow saat hover */
}

/* Textarea untuk komentar */
#section3 textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: #2c2c3e;
  color: #ffffff;
  resize: none;
  font-size: 16px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#section3 textarea:focus {
  outline: none;
  background-color: #3a3a4f;
  box-shadow: 0 0 8px #00ffcc;
}

/* Button kirim */
#section3 button {
  padding: 12px 20px;
  background-color: #00ffcc; /* Warna aksen cerah */
  color: #1e1e2f; /* Warna teks kontras */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
#section3 button:hover {
  background-color: #00ccbb; /* Sedikit lebih gelap saat hover */
  transform: scale(1.02);
}
.photo {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: 150%;
    background-image: url(kucing.jpeg);
    background-position: top left;
    transition: all 0.6s ease-in-out;
    box-shadow: 
        0 0 10px rgba(166, 0, 255, 0.8),
        0 0 20px rgba(208, 0, 255, 0.8),
        0 0 30px rgba(0, 187, 255, 0.8);
}
.photo:hover {
    transform: scale(1.3);
    background-size: 100%;
    background-position: center;
}