/* Reset dan box-sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global body styling */

/* Header Bar */
header {
  background-color: #ffffff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: clamp(14px, 1.8vw, 16px);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1800px;
  margin: auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

/* Menu */
.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  gap: 15px;
  padding-top: 20px;
  font-size: clamp(14px, 1.8vw, 16px);
}
.menu-items a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.menu-items a:hover,
.menu-items a:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* Main title */
.main-title {
  max-width: 3000px;
  margin: auto;
  display: grid;
  background: white;
  height: 150px;
  overflow: hidden;
}
.main-title .content-item {
  position: relative;
  display: inline-block;
}
.main-title img {
  display: block;
  width: 100%;
  height: auto;
}
.main-title p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(24px, 3.5vw, 56px);
  color: #000 !important;
  font-weight: 800;
  padding: 12px 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* Main title1 (subtitle section) */
.main-title1 {
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  font-family: Arial, sans-serif;
  background-image: url("../../images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: white;
}
.main-title1 .content-item {
  max-width: 3000px;
  margin: auto;
  display: grid;
  background: white;
  height: 20px;
}
.main-title1 p {
  margin: 0;
  font-weight: bold;
  color: #000 !important;
  font-size: clamp(15px, 1vw, 16px);
  text-align: center;
}

/* Main content area */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Content items (cards) */
.content-item, .content-item:link, .content-item:visited {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.content-item:hover {
  transform: scale(1.05);
}
.content-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.content-item p {
  margin: 0;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* Layout: container + column */
.container {
  max-width: 1300px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.column h1, .column h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
  text-align: center;
}
.column p {
  text-align: justify;
  color: #374151;
  line-height: 1.6;
}
.column ol {
  padding-left: 20px;
  color: #374151;
}
.column ol li {
  margin-bottom: 1em;
  text-align: justify;
}
.column ol li strong {
  color: #1f2937;
  font-weight: normal;
}

/* Running text marquee */
.running-text-container {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  background-color: #ffffff;
}
.running-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 35s linear infinite;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #374151;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }
  .menu-items {
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  body {
    font-size: clamp(12px, 3vw, 16px);
  }
  .main-title p {
    font-size: clamp(18px, 5vw, 32px) !important;
  }
  .main-title1 p {
    font-size: clamp(10px, 3vw, 14px) !important;
  }
}
body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5;
  background-color: #0055ff;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
