/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 60px; /* Adjust based on navbar height */
  background-color: #f0f0f0;
}

/* Full Background */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.full-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container and Form Styles */
.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
  margin: 2rem auto;
}

form {
  display: flex;
  flex-direction: column;
}

input,
button {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  color: #0a0808;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Social Media Section */
/* Social Media Section dengan style yang diperbarui */
.social-section {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.social-section h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
  font-size: 1.5rem;
}

/* Warna khusus untuk setiap platform */
.social-icon:nth-child(1) {
  /* Instagram */
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.social-icon:nth-child(2) {
  /* Facebook */
  background: #4267b2;
  color: white;
}

.social-icon:nth-child(3) {
  /* TiTok */
  background: #000000;
  color: white;
}

.social-icon:nth-child(4) {
  /* WhatsApp */
  background: #25d366;
  color: white;
}

/* Efek hover */
.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animasi bounce saat hover */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.social-icon:hover {
  animation: bounce 0.8s infinite;
}

/* Efek pulse untuk ikon */
.social-icon i {
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2);
}

.modal {
  display: none; /* Tampilkan dengan JavaScript */
  position: fixed;
  z-index: 1000; /* Di atas elemen lain */
  left: 50%;
  bottom: 600px; /* Berada sedikit di atas bagian bawah layar */
  transform: translateX(-50%); /* Pusatkan horizontal */
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 10px;
}

.modal-content {
  padding: 20px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

#modal-buttons {
  display: flex;
  justify-content: space-between; /* Tombol sejajar */
  margin-top: 15px;
}

button {
  padding: 10px 20px;
  cursor: pointer;
  flex: 1; /* Supaya tombol sama besar */
  margin: 0 5px;
}
.image-upload {
  margin: 10px 0;
}

.image-upload label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

#logo {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}
