/* ---------- Fonts ---------- */
@font-face {
  font-family: "Jost";
  src: url("/ishtiaque-site/fonts/Jost/Jost-VariableFont_wght.ttf") format("truetype-variations");
}
@font-face {
  font-family: "AnekBangla";
  src: url("/ishtiaque-site/fonts/Anek_Bangla/AnekBangla-VariableFont_wdth,wght.ttf") format("truetype-variations");
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

body {
  width: 100%;
  font-family: "Jost", "AnekBangla", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
               "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
  margin: 0 auto;
  padding: 0;
  color: black;
  line-height: 1.6em;
  background-color: white;
  opacity: 1;
}

@media (max-width: 800px) {
  body { line-height: 1.3em; }
}

/* Global link defaults */
a {
  color: black;
  text-decoration: underline dotted;
}

/* Utilities */
.border-decor { border: 2px dashed black; }

/* Sections */
section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;

  width: 99%;
  max-width: 2500px;
  padding: 2rem;
}

@media (max-width: 800px) {
  section { padding: 0.5rem; }
}

.column {
  flex: 1 1 0;
  width: 100%;
  max-width: 1000px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: justify;

  padding: 1rem;
  gap: 1rem;

  background-color: white;
  transition: 0.3s;
}

/* Striped border component */
.striped-border {
  background-color: white;
  position: relative;
  padding: 2rem;
  margin: 1em;
}

.striped-border::before {
  content: "";
  position: absolute;
  top: -1rem;
  bottom: -1rem;
  left: -1rem;
  right: -1rem;
  z-index: -1;
  background: repeating-linear-gradient(
    45deg,
    black,
    black 0.75em,
    white 0.75em,
    white 1.5em
  );
}

@media (max-width: 800px) {
  .striped-border {
    padding: 1rem;
    margin: 0;
    gap: 0;
  }
}

/* Headings */
h1 { display: none; }

h2 {
  text-align: center;
  font-size: x-large;
  font-weight: bold;
}

h3 {
  display: flex;
  align-items: center;
  font-size: large;
  font-weight: bold;
  margin: 0.5em;
}

/* Winged headings (if you use them elsewhere) */
.winged {
  display: flex;
  align-items: center;
  text-align: center;
}
.winged::before,
.winged::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid black;
  margin: 0 15px;
}

/* Custom list */
ul.my-list {
  list-style: none;
  padding-left: 0.5em;
}
ul.my-list li {
  position: relative;
  padding-left: 1em;
  padding-bottom: 0.2em;
}
ul.my-list li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: -0.15em;
  border: solid black;
  border-width: 0.15em 0.15em 0 0;
  padding: 0.15em;
  transform: rotate(45deg);
}

/* Folding sections (if used) */
.folding-description {
  display: none;
  padding: 1em;
  transition: 0.3s;
}
