/* ====== OOCSS: Variables & Base ====== */
:root {
  --color-primary: #207df1;
  --color-dark: #1a1a1a;
  --color-light: #f8f9fa;
  --color-bg: #ffffff;
  --spacing: 1rem;
  --radius: 12px;
  --transition: 0.3s ease;
  --header-height: 70px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #f4f4f4;
  overflow-x: hidden;
}

/* For Mid Content */
.mid-content {
  width: 100%;
}

/* For Anuegarah Bakti Pangan Nusantara */
.Anugerah-bpn {
  position: relative;
  width: 100%;
}

.Anugerah-bpn .container {
  max-width: 1200px;
  margin: 5% auto;
  background-color: #3076da;
  border-radius: 20px;
}

.Anugerah-bpn p {
  text-align: center;
  min-height: 141px;
  line-height: 141px;
  font-size: 46px;
  color: #ffffff;
}

/* Responsif */
@media (max-width: 768px) {
  .Anugerah-bpn {
    padding: 2rem;
  }

  .Anugerah-bpn p {
    line-height: 55px;
    font-size: 30px;
    padding-top: 15px;
  }
}

/* POP FOR Nominasi */
/* --- Overlay Popup --- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  overflow: scroll;
}

.overlay h2 {
  margin-top: 2%;
}

.popup {
  background: white;
  padding: 20px;
  width: 50%;
  height: 50%;
  overflow: scroll;
  border-radius: 8px;
  position: relative;
  text-align: justify;
  line-height: 30px;
}

/* Tombol Close */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  text-decoration: none;
  color: #333;
}

/* Saat popup dipanggil dengan :target */
.overlay:target {
  display: flex;
}

@media (max-width: 425px) {
  .popup {
    width: 95%;
    height: 87%;
  }

  .overlay h2 {
    margin-top: 7%;
    text-align: start;
  }
}