/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body */
body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #004080;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

/* Navigation */
nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* bayangan hitam tipis */
}

nav a:hover {
  color: #ffd700; /* warna emas saat hover */
}

/* Hero Section */
#hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

#hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* shadow hitam */
}

#hero h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8); /* shadow hitam lebih tebal */
}

#hero p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Section */
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
  color: #004080;
  margin-bottom: 20px;
}

/* Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
