body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  padding-top: 70px;
}

.banner {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* kepekatan boleh ubah */
  z-index: 1;
}

/* Background Image */
.bg-img {
  position:fixed ;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}


.hero {
  position: relative;
  height: 580px;
  background: url('kom\ bak.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  border-bottom: #333 30px solid;
  margin-top: 0;
}
.logo-kiri {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 100px;     /* atur sendiri */
  z-index: 99;   /* supaya di atas foto */
}

.hero-right h1 {
    font-family: I;
    font-size: 120px;  /* Atur besar di sini */
    line-height: 1.1;
    text-align: center;
    color: white;
    font-weight: 900;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
    width: 400px;
    margin-top: 400px;
}

/* ABOUT */
section {
    padding: 50px 80px;
    text-align: center;
}

.about, .history {
    background: #f8f1df;
    margin-bottom: 20px;
    border-bottom: #b0652f 4px solid;
  
    
}

.gallery1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 10px;
        }

        
        .gallery1 img,
        .gallery1 video {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
        }

        
        .gallery1 img:hover,
        .gallery1 video:hover {
            transform: scale(1.05);
        }

.card {
  background: linear-gradient(to bottom,rgb(202, 153, 56),white);
  padding: 10px;
  border-radius: 10px;
}


h3 {
    font-size: 30px;
    margin-bottom: 15px;
}
h2 {
  color: #000000;
    font-size: 28px;
    margin-bottom: 15px;
} 

p {
    line-height: 1.7;
    font-size: 17px;
    max-width: 800px;
    margin: auto;
    
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #d9a441;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* ACTIVITIES */
.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/*.card {
    width: 260px;
    background: white;
    padding-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    background: linear-gradient(to bottom,rgb(202, 153, 56),white);
    padding: 10px;
    
}*/




/* GALLERY */
.gallery-box {
    
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-box img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* CONTACT */
.contact form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact input, .contact textarea {
    padding: 12px;
    border-radius: 7px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 12px;
    background: #d9a441;
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}



.footer {
  background: linear-gradient(to top, #000000, #a0744f);
  color: #fff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
  position: relative;
    bottom: 0;

}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  width: 23%;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}
.powered-by {
  text-align: center;
  margin-top: 30px;
  color: #ccc;
}

.powered-by p {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.power-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* jarak antar logo */
}

.power-logos img {
  width: 80px;   /* ukuran logo */
  height: auto;
  opacity: 0.9;
  transition: 0.3s;
}

.power-logos img:hover {
  opacity: 1;
  transform: scale(1.06);
}


.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  font-size: 14px;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .logo-kiri {
    width: 60px;
    top: 40px;
    left: 10px;
  }

  .hero-right h1 {
    font-size: 60px;
    width: 100%;
    margin-top: 250px;
    padding: 0 20px;
  }

  section {
    padding: 30px 20px;
  }

  .about h1, .history h1 {
    font-size: 24px;
  }

  .about p, .history p {
    font-size: 14px;
  }

  .gallery1 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 300px;
  }

  .logo-kiri {
    width: 50px;
    top: 30px;
  }

  .hero-right h1 {
    font-size: 40px;
    margin-top: 180px;
  }

  section {
    padding: 20px 15px;
  }

  .about h1, .history h1 {
    font-size: 20px;
  }

  .gallery1 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
