*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #fafafa;
}

a {
  color: #c41e3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4a843;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  padding-left: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 800px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-primary:hover {
  background-color: #c41e3a;
  color: #fff;
}

.btn-accent {
  background-color: #c41e3a;
  color: #fff;
}

.btn-accent:hover {
  background-color: #d4a843;
  color: #1a1a1a;
}

.site-header {
  position: relative;
  background: url("assets/img13.jpg") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 700px;
}

.site-header h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.header-tagline {
  font-size: 1.2rem;
  color: #d4a843;
  font-style: italic;
}

.site-nav {
  background-color: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 0;
}

.nav-logo:hover {
  color: #d4a843;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
}

.nav-links li a {
  display: block;
  padding: 1rem 1.1rem;
  color: #ccc;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-links li a:hover {
  color: #fff;
  border-bottom-color: #c41e3a;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-toggle-checkbox {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.section-home {
  background-color: #fff;
}

.home-intro {
  max-width: 800px;
  margin-bottom: 3rem;
}

.home-intro h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.home-intro h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c41e3a, #d4a843);
  border-radius: 2px;
}

.home-intro p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.home-purpose {
  background-color: #fdf6e3;
  border-left: 4px solid #d4a843;
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
}

.home-preview {
  display: flex;
  gap: 2rem;
}

.preview-card {
  flex: 1;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.preview-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.preview-content {
  padding: 1.5rem;
}

.preview-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.preview-content p {
  margin-bottom: 1.25rem;
  color: #555;
  font-size: 0.95rem;
}

.section-real {
  background-color: #f5f2ed;
}

.section-real h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-real h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a1a1a, #d4a843);
  border-radius: 2px;
}

.real-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.real-main-content {
  flex: 2;
}

.real-main-content h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
  border-left: 4px solid #c41e3a;
  padding-left: 0.75rem;
}

.real-main-content h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 1.5rem 0 0.75rem;
}

.real-main-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.real-sidebar {
  flex: 1;
  position: sticky;
  top: 80px;
}

.content-img {
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-img-wide {
  width: 100%;
}

.text-with-img {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.text-with-img-content {
  flex: 1;
}

.content-img-side {
  width: 40%;
  max-width: 350px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.stats-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #d4a843;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.honor-list {
  list-style: none;
  padding: 0;
}

.honor-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.honor-list li::before {
  content: "🏆";
  position: absolute;
  left: 0;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

thead {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #d4a843;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

tbody tr {
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background-color: #fdf6e3;
}

tbody tr:last-child {
  border-bottom: none;
}

.fact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #c41e3a;
}

.fact-card-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.fact-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
  border: none;
  padding: 0;
}

.fact-list {
  font-size: 0.9rem;
}

.fact-list dt {
  font-weight: 700;
  color: #c41e3a;
  margin-top: 0.75rem;
}

.fact-list dd {
  margin-left: 0;
  color: #444;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e0e0e0;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 1.5rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #c41e3a, #d4a843);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background-color: #c41e3a;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #c41e3a;
}

.timeline-year {
  font-size: 1rem;
  font-weight: 800;
  color: #d4a843;
  margin-bottom: 0.25rem;
}

.timeline-content h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.timeline-content p {
  font-size: 0.92rem;
  color: #555;
}

.section-uma {
  background-color: #fff;
}

.section-uma h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-uma h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c41e3a, #d4a843);
  border-radius: 2px;
}

.uma-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.uma-main-content {
  flex: 2;
}

.uma-main-content h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
  border-left: 4px solid #d4a843;
  padding-left: 0.75rem;
}

.uma-main-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.uma-sidebar {
  flex: 1;
  position: sticky;
  top: 80px;
}

.uma-fact-card {
  border-top-color: #d4a843;
}

.uma-hero-block {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.uma-hero-img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.uma-hero-text h3 {
  margin-top: 0;
}

.role-cards {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.role-card {
  flex: 1;
  background-color: #fdf6e3;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #d4a843;
}

.role-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.role-card p {
  font-size: 0.92rem;
  color: #555;
}

.comparison-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.comparison-card {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
}

.comparison-card h4 {
  color: #d4a843;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.comparison-card p {
  color: #ccc;
  font-size: 0.92rem;
}

.section-galeri {
  background-color: #1a1a1a;
  color: #fff;
}

.section-galeri h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-galeri h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4a843, #c41e3a);
  border-radius: 2px;
}

.section-galeri .section-intro {
  color: #aaa;
}

.section-galeri h3 {
  font-size: 1.3rem;
  color: #d4a843;
  margin: 2.5rem 0 1.25rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #ccc;
  text-align: center;
}

.section-referensi {
  background-color: #f5f2ed;
}

.section-referensi h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-referensi h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a1a1a, #c41e3a);
  border-radius: 2px;
}

.ref-layout {
  display: flex;
  gap: 2.5rem;
}

.ref-block {
  flex: 1;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.ref-block h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.ref-list {
  list-style: none;
  padding: 0;
  counter-reset: ref-counter;
}

.ref-list li {
  counter-increment: ref-counter;
  padding: 1rem 0;
  padding-left: 2.5rem;
  border-bottom: 1px solid #eee;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.6;
}

.ref-list li::before {
  content: counter(ref-counter);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 28px;
  height: 28px;
  background-color: #c41e3a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.ref-list li:last-child {
  border-bottom: none;
}

.ref-list a {
  word-break: break-all;
  font-size: 0.85rem;
}

.site-footer {
  background-color: #111;
  color: #aaa;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 0.85rem;
}

@media screen and (max-width: 992px) {

  .site-header {
    min-height: 50vh;
  }

  .site-header h1 {
    font-size: 2.5rem;
  }

  .header-tagline {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .preview-img {
    height: 220px;
  }

  .real-layout {
    flex-direction: column;
  }

  .real-sidebar {
    position: static;
    width: 100%;
  }

  .uma-layout {
    flex-direction: column;
  }

  .uma-sidebar {
    position: static;
    width: 100%;
  }

  .text-with-img {
    flex-direction: column;
  }

  .content-img-side {
    width: 100%;
    max-width: 100%;
  }

  .ref-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .stat-item {
    min-width: 120px;
  }
}

@media screen and (max-width: 768px) {

  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0;
    gap: 0;
    z-index: 999;
  }

  .nav-toggle-checkbox:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid transparent;
  }

  .nav-links li a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    border-left-color: #c41e3a;
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .site-header {
    min-height: 45vh;
  }

  .site-header h1 {
    font-size: 2rem;
  }

  .header-overlay {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .section-real h2,
  .section-uma h2,
  .section-galeri h2,
  .section-referensi h2,
  .home-intro h2 {
    font-size: 1.6rem;
  }

  .real-main-content h3,
  .uma-main-content h3 {
    font-size: 1.2rem;
  }

  .home-preview {
    flex-direction: column;
    gap: 1.5rem;
  }

  .preview-img {
    height: 200px;
  }

  .uma-hero-block {
    flex-direction: column;
    text-align: center;
  }

  .uma-hero-img {
    width: 180px;
    margin: 0 auto;
  }

  .role-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .comparison-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  th,
  td {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  th {
    font-size: 0.7rem;
  }

  .gallery-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
  }

  .gallery-item img {
    height: 180px;
  }

  .ref-block {
    padding: 1.25rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media screen and (max-width: 480px) {

  html {
    font-size: 15px;
  }

  .site-header {
    min-height: 40vh;
  }

  .site-header h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .header-tagline {
    font-size: 0.85rem;
  }

  .header-overlay {
    padding: 1.5rem 1rem;
    margin: 0 0.75rem;
    border-radius: 8px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-real h2,
  .section-uma h2,
  .section-galeri h2,
  .section-referensi h2,
  .home-intro h2 {
    font-size: 1.35rem;
  }

  .real-main-content h3,
  .uma-main-content h3 {
    font-size: 1.1rem;
  }

  .home-intro p {
    font-size: 0.95rem;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .preview-content {
    padding: 1rem;
  }

  .preview-content h3 {
    font-size: 1.15rem;
  }

  .preview-img {
    height: 180px;
  }

  .btn {
    display: block;
    text-align: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .stat-item {
    padding: 0.85rem 0.5rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .uma-hero-img {
    width: 150px;
  }

  .fact-card {
    padding: 1rem;
  }

  .fact-list {
    font-size: 0.85rem;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .gallery-item img {
    height: 200px;
  }

  .ref-block {
    padding: 1rem;
  }

  .ref-list li {
    padding-left: 2.25rem;
    font-size: 0.85rem;
  }

  .ref-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  th,
  td {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
  }

  th {
    font-size: 0.65rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .nav-logo {
    font-size: 0.95rem;
  }
}