/*
Theme Name: Dustrial Child
Theme URI: https://example.com
Description: Child theme for the Dustrial Industrial WordPress Theme.
Author: PT. Invento Creativarium Indonesia
Author URI: https://increativarium.com/
Template: dustrial
Version: 1.0.0
License: GNU General Public License v3.0
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: dustrial-child
*/

/* ===== Vanilla Modal ===== */

/* ==========================================================
   VANILLA MODAL – ARIA BASED (OPTION A)
   ========================================================== */

/* Base modal (hidden) */
.vanilla-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

/* Modal visible state (ARIA driven) */
.vanilla-modal[aria-hidden="false"] {
  display: block;
}

/* Overlay */
.vanilla-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal box */
.vanilla-box {
  position: relative;
  background: #ffffff;
  max-width: 520px;
  width: calc(100% - 40px);
  margin: 10vh auto;
  padding: 30px;
  z-index: 1;
  border-radius: 4px;
}

/* Close button (X) */
.vanilla-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  color: #242424;
}

.vanilla-close:hover {
  color: #ff5e14;
}

/* Brochure list */
.brochure-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.brochure-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.brochure-list a {
  text-decoration: none;
}

/* Lock body scroll when modal open */
body.modal-open {
  overflow: hidden;
}
