/* =========================================
   SHEIKH ADAM SHAMEEM
   TEMPORARY MAINTENANCE WEBSITE
========================================= */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {

  --green-950: #073d31;
  --green-900: #0b4d3d;
  --green-800: #155e4b;

  --cream: #f7f3ea;
  --cream-light: #fbfaf6;

  --gold: #b7a269;

  --ink: #17221d;
  --text: #5d6762;

  --border: rgba(7, 61, 49, 0.14);

}


html,
body {
  min-height: 100%;
}


body {

  min-height: 100vh;

  position: relative;

  display: flex;
  flex-direction: column;

  overflow-x: hidden;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:
    linear-gradient(
      135deg,
      #f3f7f3 0%,
      var(--cream-light) 50%,
      #f5f0e4 100%
    );

  color: var(--ink);

}


/* =========================================
   SUBTLE ISLAMIC BACKGROUND
========================================= */

.page-pattern {

  position: fixed;
  inset: 0;

  pointer-events: none;

  opacity: 0.32;

  background-image:

    linear-gradient(
      30deg,
      rgba(7, 61, 49, 0.035) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(7, 61, 49, 0.035) 87.5%
    ),

    linear-gradient(
      150deg,
      rgba(7, 61, 49, 0.035) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(7, 61, 49, 0.035) 87.5%
    );

  background-size: 80px 140px;

}


/* =========================================
   MAIN PAGE
========================================= */

.maintenance-page {

  width: min(820px, calc(100% - 40px));

  margin: auto;

  position: relative;

  z-index: 2;

  padding:
    70px 30px 45px;

  text-align: center;

}


/* =========================================
   TOP SYMBOL
========================================= */

.islamic-symbol {

  width: 58px;
  height: 58px;

  margin:
    0 auto 25px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(45deg);

  border:
    1px solid var(--border);

  background:
    rgba(255, 255, 255, 0.45);

}


.islamic-symbol::before,
.islamic-symbol::after {

  content: "";

  position: absolute;

  width: 32px;
  height: 32px;

  border:
    1px solid rgba(183, 162, 105, 0.55);

}


.islamic-symbol::before {

  transform: rotate(45deg);

}


.islamic-symbol span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--green-900);

}

/* =========================================
   LABEL
========================================= */

.page-label {

  display: inline-block;

  margin-bottom: 17px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 750;

  letter-spacing: 2.4px;

}


/* =========================================
   MAIN TITLE
========================================= */

h1 {

  max-width: 700px;

  margin: 0 auto;

  color: var(--green-950);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(43px, 7vw, 74px);

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -2px;

}


h1 span {

  display: block;

  color: var(--green-800);

}


/* =========================================
   DESCRIPTION
========================================= */

.intro {

  max-width: 610px;

  margin:
    24px auto 0;

  color: var(--text);

  font-size: 15px;

  line-height: 1.85;

}


/* =========================================
   DIVIDER
========================================= */

.divider {

  max-width: 310px;

  margin:
    35px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

}


.divider > span {

  height: 1px;

  flex: 1;

  background:
    linear-gradient(
      to right,
      transparent,
      var(--border)
    );

}


.divider > span:last-child {

  background:
    linear-gradient(
      to left,
      transparent,
      var(--border)
    );

}


.divider-mark {

  color: var(--gold);

  font-size: 12px;

}


/* =========================================
   SCHOLAR
========================================= */

.scholar-label {

  display: block;

  margin-bottom: 7px;

  color: var(--text);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;

}


.scholar h2 {

  color: var(--green-950);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(24px, 3vw, 32px);

  font-weight: 400;

}


.scholar-arabic {

  margin-top: 5px;

  color: var(--green-800);

  font-family:
    "Noto Naskh Arabic",
    serif;

  font-size: 21px;

}


/* =========================================
   STATUS
========================================= */

.status {

  width: fit-content;

  margin:
    35px auto 0;

  display: flex;
  align-items: center;

  gap: 9px;

  padding:
    9px 15px;

  border:
    1px solid var(--border);

  border-radius: 40px;

  background:
    rgba(255, 255, 255, 0.46);

  color: var(--text);

  font-size: 11px;
  font-weight: 600;

}


.status-dot {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green-800);

  box-shadow:
    0 0 0 4px rgba(21, 94, 75, 0.08);

}


/* =========================================
   FOOTER
========================================= */

footer {

  position: relative;

  z-index: 2;

  width: 100%;

  padding:
    20px 20px 25px;

  text-align: center;

}


footer p {

  color: #8b948f;

  font-size: 10px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .maintenance-page {

    width:
      calc(100% - 28px);

    padding:
      48px 12px 30px;

  }


  .islamic-symbol {

    width: 50px;
    height: 50px;

    margin-bottom: 21px;

  }

  h1 {

    font-size: 44px;

    letter-spacing: -1.3px;

  }


  .intro {

    margin-top: 20px;

    font-size: 13.5px;

    line-height: 1.75;

  }


  .divider {

    max-width: 240px;

    margin:
      29px auto;

  }


  .scholar h2 {

    font-size: 25px;

  }


  .scholar-arabic {

    font-size: 20px;

  }


  .status {

    margin-top: 28px;

  }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

  h1 {
    font-size: 38px;
  }

}