/* Reset default browser styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #171d35;
  font-family: "Almarai", sans-serif;
  height: 100vh;
}

.main-container {
  background: url("../images/background.png") top/contain no-repeat;
  min-height: 100vh;
  position: relative;

  &::after {
    background-color: rgba(23, 29, 53, 0.5);
    content: "";
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }
}

.announcement-pop-up {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 50%;
  max-width: 856px;
  padding: 40px 64px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.announcement-pop-up-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.announcement-pop-up-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;

  h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
  }

  p {
    font-size: 21px;
    line-height: 1.5;
    text-align: center;
  }
}

.announcement-pop-up-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;

  div {
    background-color: #f6f7f8;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 20px;
    text-align: center;
    width: 100%;
  }
}

.announcement-pop-up-info ul {
  list-style: none;
}

.announcement-pop-up-info li {
  align-items: center;
  display: flex;
  justify-content: center;
}

.announcement-pop-up-info li::before {
  content: "•";
  margin-left: 0.5em;
}

.why-mazad-link {
  align-items: center;
  background-color: #4c86a0;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  margin: 0 auto;
  max-width: fit-content;
  padding-block: 14px 15px;
  padding-inline: 32px;
  text-decoration: none;
}

.hide-desktop {
  display: none;
}

.hide-mobile {
  display: block;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .main-container {
    background: url("../images/background-mobile.png") top/cover no-repeat;
  }

  .announcement-pop-up {
    gap: 0;
    padding: 24px 16px;
    width: calc(100% - 32px);
    top: 45.5px;
    transform: translate(-50%, 0);
    bottom: 45.5px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto;
    padding-bottom: 0;

    &.is-ar {
      bottom: 77px;
      top: 77px;
    }
  }

  .announcement-pop-up-header {
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 20px;

    .arrow-logo {
      aspect-ratio: unset;
      height: auto;
      width: 24px;
    }
  }

  .announcement-pop-up-title {
    margin-bottom: 20px;

    h1 {
      font-size: 28px;
      text-align: center;
    }

    p {
      font-size: 18px;
    }
  }

  .announcement-pop-up-info {
    div {
      font-size: 14px;
      padding: 12px 16px;
    }
  }

  .why-mazad-link-container {
    background-color: #fff;
    bottom: 0;
    margin-top: auto;
    padding: 16px 0;
    position: sticky;
  }

  .why-mazad-link {
    display: block;
    font-size: 16px;
    max-width: unset;
    padding: 16px;
    text-align: center;
    width: 100%;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }
}

/* Media query for very small screens (375px and under) */
@media (max-width: 375px) {
  .announcement-pop-up-header {
    .muzaida-logo,
    .mazad-logo {
      height: 115px;
      width: 131px;
    }
  }
}
