/* public/css/lokasi.css */
.sejarah-section {
  margin-top: 140px;
}
.container-lokasi {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.lokasi-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1e1e;
}

/* Baris utama */
.lokasi-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

/* ==== FIX: pastikan baris ke-2 (reverse) terbalik ==== */
.lokasi-row.reverse {
  flex-direction: row-reverse;
}

/* Kolom foto */
.lokasi-foto {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.lokasi-foto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 5px solid #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lokasi-foto img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Kolom alamat */
.lokasi-alamat {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  padding: 0 1rem;
}

.lokasi-alamat h4 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  color: #b21e1e;
  font-weight: 800;
}
.lokasi-col.text {
    text-align: left;
}

.lokasi-footer {
    text-align: center;
    margin-top: 40px;
    max-width: 1000px; /* sejajar dengan kolom atas */
    margin-left: auto;
    margin-right: auto;
    padding: 0 0px; /* tambahkan padding agar tidak nempel ke tepi */
}

.lokasi-footer p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}
.lokasi-footer-image img {
    width: 100%; /* mengikuti lebar footer */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}
.lokasi-videos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.video-col {
    flex: 1;
    min-width: 300px;
    padding: 0 15px; /* sebagai pengganti gap */
    box-sizing: border-box;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsif */
@media (max-width: 992px) {
  .container-lokasi {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .lokasi-row,
  .lokasi-row.reverse {
    flex-direction: column; /* Semua jadi vertikal */
    text-align: center;
  }
 .sejarah-section {
    margin-top: 200px; /* lebih jauh di bawah navbar */
  }
  .lokasi-foto,
  .lokasi-alamat {
    max-width: 100%;
    flex: none;
    width: 100%;
    padding: 0.5rem 0;
  }

  .lokasi-foto img {
    max-width: 90%;
  }
      .lokasi-footer p {
        text-align: justify;
        padding: 0 15px;
    }

    .lokasi-videos {
        flex-direction: column;
        align-items: center; /* ⬅️ agar kolom video berada di tengah */
        margin-left: 0;
        margin-right: 0;
    }

    .video-col {
        width: 100%;
        max-width: 600px; /* ⬅️ agar tetap proporsional, tidak terlalu lebar */
        padding: 0;
        margin-bottom: 25px;
    }

    .video-wrapper {
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}