
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fffdf7;
  color: #333;
}

a {
  text-decoration: none;
  color: #1e88e5;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  background-color: #003366;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-branding img {
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

.site-title {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.main-header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.main-header-menu li {
  margin: 0;
}

.main-header-menu a {
  color: #fff;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 5px;
}

.main-header-menu a:hover {
  background-color: #005599;
}

.hero {
  background: #fef3dc;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #1e88e5;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.article-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.article-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-card h3 {
  margin-top: 0;
}

.site-footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #07a3db;
  text-decoration: none;
  padding: 0 6px;
  transition: color 0.3s ease;
  font-weight: 900;
}

.footer-nav a:hover {
  color: #ddd;
}

.footer-divider {
  height: 18px;
  border-left: 1px solid #ffffff;
}


@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-header-menu {
    flex-direction: column;
    width: 100%;
  }
  .main-header-menu li {
    width: 100%;
    text-align: left;
  }
  .main-header-menu a {
    display: block;
    width: 100%;
    padding: 10px;
  }
}



/* Tambahan untuk menu dropdown */
.main-header-menu li {
  position: relative;
}

.main-header-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #003366;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.main-header-menu li:hover > ul {
  display: block;
}

.main-header-menu li ul li {
  width: 100%;
}

.main-header-menu li ul li a {
  padding: 10px 14px;
  display: block;
  color: #fff;
  white-space: nowrap;
}

.main-header-menu li ul li a:hover {
  background-color: #005599;
}

/* ======= SIDEBAR & WIDGET STYLES ======= */
.sidebar .widget {
  background: #f8f8f8;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.sidebar .widget-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #003366;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 8px;
}

.sidebar ul li a {
  color: #1e88e5;
  text-decoration: none;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

/* ==== GAYA LEMBUT UNTUK PENCARIAN ==== */
.widget_search {
  background-color: #fdfdfd;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.widget_search form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget_search input[type="search"] {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #f3f3f3;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.widget_search input[type="search"]:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px #1e88e5;
  outline: none;
}

.widget_search input[type="submit"] {
  padding: 10px;
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.widget_search input[type="submit"]:hover {
  background-color: #1565c0;
}


.testimoni-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
.testimoni-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimoni-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 300px;
  font-style: italic;
}
.testimoni-author {
  font-weight: bold;
  margin-top: 10px;
  color: #2c3e50;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

.form-wrapper {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.form-wrapper input[type="text"],
.form-wrapper textarea,
.form-wrapper select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-wrapper input[type="submit"] {
  background-color: #004080;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.form-wrapper input[type="submit"]:hover {
  background-color: #002f66;
}


