/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header dan Navigasi */
header {
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 14px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li .donate {
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

nav ul li .donate:hover {
    background: #e68900;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 20px;
    background: #007bff;
    color: white;
}

.hero .btn {
    background: white;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}



.teks-stroke-1 {
    color: white;
    -webkit-text-stroke: 1px black;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.teks-stroke-2 {
    color: white;
    -webkit-text-stroke: 0,9px black;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

/* Konten di Atas Video */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgb(0, 0, 0);
    padding-top: 160px;
}

/* Section */
#about, #projects {
    padding: 60px 20px;
    text-align: center;
}

#contact {
    padding: 60px 20px;
    text-align: center;
    background: #eaeaea;
}

/* Stroke untuk teks */
.text-stroke {
    color: white;
    text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000;
}

/* Proyek */
.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.container {
    display: flex;
    justify-content: space-around; /* Buat kotak berjarak */
    flex-wrap: wrap; /* Biar tetap responsif di layar kecil */
}

.kertas {
    background: white;
    padding: 20px;
    margin: 10px;
    width: 45%; /* Biar sejajar */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.project-card {
    background: white;
    padding: 20px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Formulir */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #0056b3;
}

/* Tombol Next */
.btn-next {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    text-align: center;
    font-size: 16px;
}

.btn-next:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 0px;
    position: relative;
    bottom: 0;
    width: 100%;
    clear: both;
}

body {
    background-image: url("background/BG2.jpg"); /* ganti dengan nama file kamu */
    background-size: cover;       /* biar penuh */
    background-position:top;  /* posisikan di tengah */
    background-repeat: no-repeat; /* jangan diulang */
    background-attachment: fixed; /* opsional: biar efek parallax */
    color: #fff;                  /* teks default putih biar jelas */
    line-height: 1.6;
}

/* ------------------ Halaman Kontak ------------------ */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.contact-card {
  background: white;
  padding: 20px;
  width: 220px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  color: #333; /* teks biar kebaca */
}

.contact-card:hover {
  transform: translateY(-5px); /* animasi hover */
}

.contact-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* bulat */
  object-fit: cover;
  margin-bottom: 10px;
}

.contact-card h3 {
  margin: 10px 0;
}

.contact-card a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  margin: 0 5px;
}

.contact-card a:hover {
  color: #0056b3;
}

/* Tentang Kami */
.about-box {
    max-width: 800px;
    margin: 100px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85); /* semi-transparan */
    color: #111;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: justify;
}

.about-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
