* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #2b2b2b;
  color: white;
  line-height: 1.6;
}


.hero {
  position: relative;
  width: 100vw;              /* Lebar penuh viewport */
  height: 100vh;             /* Tinggi penuh viewport */
  background: url('cover1.jpg') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0, 67, 78, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero h1 span {
  display: block;
}

.carousel-indicator {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.carousel-indicator div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
}

.carousel-indicator .active {
  background-color: #e03e3e;
  border-color: #e03e3e;
}

.section-title {
  text-align: center;
  margin-top: 50px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.gallery {
  background: linear-gradient(to right, rgba(44, 43, 43, 0.758), rgba(35, 34, 34, 0.5));
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}


.card {
  background-color: white;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(249, 248, 248);
}

.card img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.card .content {
  padding: 15px;
}

.card .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  color: #2b2b2b; /* Ubah warna judul */
}

.card .desc {
  font-size: 14px;
  color: #dddddd; /* Ubah warna deskripsi */
}
