* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* HEADER / NAV */
header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}
nav a:hover {
  color: #f5d10a;
}

/* HERO */
.hero {
  height: 400px;
  background: url('https://imgstack.net/images/AbQMU.gif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 20px;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  background: #fff;
}

.about .content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* TEAMS */
.teams {
  padding: 60px 20px;
}

.teams .content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card h3 {
  margin: 15px;
  font-size: 22px;
}

.team-card p {
  margin: 0 15px 15px;
  font-size: 16px;
}

/* GALLERY */
.gallery {
  padding: 60px 20px;
  background: #f9f9f9;
}

.gallery .content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
  background: #fff;
}

.contact .content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 600px) {
  /* aturan untuk mobile kecil */
}
@media (min-width: 601px) {
  /* tablet dan desktop */
}
