* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

body {
  background: #fffcfc;
  color: #444;
  padding: 2em;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 3em 2;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  border-radius: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 10px;
  font-weight: bold;
  color: #3674B5;
}

nav a {
  margin-left: 5px;
  margin-right: 10px;
  font-family: 'Quicksand', sans-serif;
  color: #444;
  font-weight: 500;
}

nav a:hover {
  color: #0077cc;
}
.header-ku {
  background: linear-gradient(to right, #cce5ff, #e0f7ff);
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px #AFDDFF;
}

.header-ku h1 {
  margin-left:-100px;
  color: #3674B5;
  font-family: 'Quicksand', sans-serif;
  font-size: 30px;
}

.header-ku nav ul {
  list-style: none;
  padding: 0;
  margin-top: 100px;
  margin-left: 30px;
}

.header-ku nav ul li {
  display: inline-block;
  margin: 0 30px;
}

.header-ku nav ul li a {
  text-decoration: 'Quicksand', sans-serif;;
  color: #3674B5;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.header-ku nav ul li a:hover {
  color: #3674B5;
}


header p {
  font-size: 16px;
  margin-top: 0.5em;
}
.galeri-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.galeri-container img {
  width: 150px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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


.galeri h2 {
  color: #467ca3;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
}

.galeri-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.galeri-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #a6d3ff;
  transition: transform 0.3s ease;
}

.galeri-container img:hover {
  transform: scale(1.1);
}

section {
  margin-bottom: 2em;
  background: #fff;
  padding: 1.5em;
  border-radius: 16px;
  box-shadow: 0 4px 10px #E3EDFC;
}

h2 {
  color: #3674B5;
  margin-bottom: 1em;
}

.about p {
  font-size: 16px;
  line-height: 1.6;
}

.fun-facts ul {
  list-style: none;
}

.fun-facts li {
  background: linear-gradient(to right, #cce5ff, #e0f7ff);
  margin-bottom: 0.7em;
  padding: 0.6em 1em;
  border-radius: 12px;
  box-shadow: 0 2px 5px #E3EDFC;
}

.favorites .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1em;
  margin-top: 1em;
}

.fav-box {
  background: linear-gradient(to right, #cce5ff, #e0f7ff);
  padding: 1em;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  color: #3674B5;
  box-shadow: 0 2px 8px #E3EDFC;
}
.sosmed-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.sosmed-container img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.sosmed-container img:hover {
  transform: scale(1.2);
}



footer {
  text-align: center;
  margin-top: 2em;
  font-size: 14px;
  color: #888;
}
