/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --color-white: white;
  --color-red: #F34D39;
  --color-red-dark: #CE3737;
  --color-yellow: #F8E931;
  --color-brown: #631B02;
  --color-faded-orange: rgba(238, 118, 35, 0.4);
  --color-orange:#F7AD28;
  --font-primary: helvetica neue, helvetica, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
  --font-secondary: "Albaik", helvetica neue, helvetica, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
  --font-weight-body: 400;
  --font-weight-heading: 700;
  --text-size-body: 1rem;
  --text-size-headline: calc(var(--text-size-body) * 5);
  --text-size-heading: calc(var(--text-size-body) * 2.5);
  --text-size-subheading: calc(var(--text-size-body) * 1.8);
  --text-size-eyebrow: calc(var(--text-size-body) * 1.3);
  --text-size-medium: 0.8rem;
  --text-size-small: 0.7rem;
  --border-primary: 6px solid var(--color-white);
  --radius-base: 10px;
  --radius-large: 20px;
  --gradient-red-trans-fade: linear-gradient(180deg, rgba(243, 77, 57, 0.00) 0%, var(--color-red) 100%);
  --gradient-gray-trans-fade: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.43) 58.45%, rgba(0, 0, 0, 0.63) 100%);
  --space-base: 1rem;
  --space-small: 0.5rem;
  --space-xsmall: 0.25rem;
  --space-large: 2rem;
  --space-xlarge: 4rem;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(90deg, #F7AD28 0%, #CF3437 49.97%, #F7AD28 100%);
}
body[data-theme=white] {
  background: var(--color-white);
}

@font-face {
  font-family: "Albaik";
  src: url(/assets/albaikenglish-webfont-98b8fd69526ec7bedd8dd9d95a3eff10815cd1bddc9c20daaa53a425cb7c8c95.ttf) format("truetype"), url(/assets/albaikenglish-webfont-098776c7d7d36bc7c1f1cfa98da8735ecfffe253041a87224a78e0c2b707926e.woff) format("woff");
}
html {
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--color-white);
}
html[lang=ar] {
  font-size: 20px;
}
@media (min-width: 900px) {
  html {
    font-size: 20px;
  }
  html[lang=ar] {
    font-size: 22px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--text-size-base);
  font-weight: var(--font-weight-heading);
  margin: 0;
}

p {
  margin: 0;
}

small {
  font-size: var(--text-size-small);
}

hgroup {
  margin-bottom: var(--space-base);
}

.headline {
  font-size: var(--text-size-headline);
}

.subheading {
  font-size: var(--text-size-subheading);
}

.eyebrow {
  font-size: var(--text-size-eyebrow);
  font-family: var(--font-secondary);
}

@media (max-width: 640px) {
  .headline {
    font-size: var(--text-size-heading);
  }
  .subheading {
    font-size: var(--text-size-eyebrow);
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5vw;
}
@media (min-width: 900px) {
  .container {
    padding: 0 10vw;
  }
}
.container[data-theme=red] {
  background-color: var(--color-red-dark);
}

.flow > * + * {
  margin-top: var(--flow-space, var(--space-base));
}

.fifty-fifty {
  display: grid;
  padding: 0;
  max-width: 95vw;
}
@media (min-width: 900px) {
  .fifty-fifty {
    max-width: 80vw;
    grid-template-columns: 1fr 1fr;
  }
}

.horizontal {
  display: flex;
  gap: var(--space-base);
}

.top-links {
  display: flex;
  gap: var(--space-base);
}

.bottom-links {
  display: flex;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 1fr;
  gap: var(--space-base);
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  padding: var(--space-base);
}
@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-item {
  background-color: var(--color-red);
  border-radius: var(--radius-base);
  overflow: hidden;
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  min-height: 100%;
  max-width: 100%;
  display: flex;
  font-size: var(--text-size-medium);
}
.grid-item p {
  position: absolute;
  bottom: 0;
  padding: var(--space-small);
  background-image: var(--gradient-gray-trans-fade);
  width: 100%;
}

.grid-item--1x1 {
  aspect-ratio: 1;
}

.grid-item--1x2 {
  grid-row: span 1;
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.grid-item--1x3 {
  grid-row: span 1;
  grid-column: span 3;
  aspect-ratio: 3/1;
}

.grid-item--2x1 {
  grid-row: span 2;
  grid-column: span 1;
}

.grid-item--2x2 {
  grid-row: span 2;
  grid-column: span 2;
}

.grid-item--2x3 {
  grid-row: span 2;
  grid-column: span 3;
  aspect-ratio: 3/2;
}

.stack {
  max-width: 95vw;
  padding: var(--space-large);
}
@media (min-width: 900px) {
  .stack {
    max-width: 80vw;
  }
}

.quarters {
  display: grid;
  padding: 0;
  gap: var(--space-large);
}
@media (min-width: 600px) {
  .quarters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .quarters {
    grid-template-columns: repeat(4, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(max-content, 1fr));
  }
}

.highlight {
  background-color: var(--color-red-dark);
  margin-bottom: var(--space-large);
  border-radius: var(--radius-large);
  overflow: hidden;
  color: var(--color-white);
}
.highlight .content {
  padding: var(--space-large);
}
.highlight picture, .highlight img {
  width: 100%;
  object-fit: cover;
}

.fader {
  background: linear-gradient(180deg, rgba(243, 77, 57, 0) 0%, #CE3737 76.91%);
  position: absolute;
  transform: translate(0, -400px);
  height: 400px;
  display: flex;
  width: 100%;
  padding: var(--space-large);
}
.fader a {
  margin: auto auto 0;
}

.button {
  background-color: var(--color-yellow);
  border-radius: 100px;
  padding: var(--space-small) var(--space-large);
  text-decoration: none;
  color: var(--color-brown);
}

.store-badges {
  height: 3rem;
  margin: var(--space-large) 0;
  justify-content: center;
}
.store-badges a {
  display: flex;
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--space-large) var(--space-large);
  position: relative;
  height: 50vh;
}
@media (min-width: 900px) {
  .hero {
    height: 90vh;
  }
}
.hero::before {
  background: linear-gradient(180deg, var(--color-red-dark) 0%, rgba(207, 55, 55, 0) 100%);
  position: absolute;
  top: 0;
  height: 50%;
  width: 100%;
  content: "";
  display: "block";
  z-index: 1;
}
.hero img {
  background: radial-gradient(50% 50% at 50% 50%, rgba(207, 56, 56, 0.86) 42.53%, rgba(207, 56, 56, 0) 100%);
  z-index: 100;
  max-height: 100%;
}

.nav {
  display: flex;
  flex-direction: column;
  background-color: var(--color-red-dark);
  position: relative;
}
@media (max-width: 640px) {
  .nav {
    padding-top: var(--space-large);
  }
}
@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    gap: var(--space-large);
    padding: var(--space-base);
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .nav {
    gap: var(--space-xlarge);
    padding: var(--space-large);
  }
}
.nav[data-theme=red] {
  background-color: transparent;
}
.nav > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  .nav > * {
    flex-direction: row;
  }
}
.nav nav {
  flex-grow: 2;
}
@media (min-width: 900px) {
  .nav nav {
    gap: var(--space-large);
  }
}
.nav nav ul {
  margin: 0 auto;
}
@media (max-width: 640px) {
  .nav nav ul {
    padding-top: var(--space-xsmall);
    padding-bottom: var(--space-xsmall);
  }
}
.nav img {
  max-width: 25vw;
}
@media (min-width: 640px) {
  .nav img {
    max-width: 20vw;
  }
}
@media (min-width: 900px) {
  .nav img {
    max-width: 10vw;
  }
}
.nav ul {
  gap: var(--space-large);
  justify-content: center;
  padding: 0;
}
.nav a {
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover {
  color: var(--color-yellow);
}

.radio {
  --text-color: var(--color-white);
  --bg-color: transparent;
  border: var(--border-primary);
  border-color: var(--text-color);
  border-radius: 100px;
  color: var(--text-color);
  background-color: var(--bg-color);
  text-decoration: none;
  padding: var(--space-xsmall) var(--space-small);
}
.radio[data-active], .radio:hover {
  --text-color: var(--color-red);
  --bg-color: var(--color-white);
  border-color: var(--bg-color);
  color: var(--text-color) !important;
}
.radio[data-active] {
  --text-color: var(--color-red);
  --bg-color: var(--color-white);
  border-color: var(--bg-color);
}

.banner img {
  width: 100%;
}

.cover-img img {
  object-fit: cover;
}

.contain-img img {
  object-fit: contain;
}

.footer {
  background-color: var(--color-red-dark);
  color: var(--color-white);
  padding: var(--space-large) var(--space-large);
}
.footer .nav {
  padding-bottom: var(--space-small);
}
@media (max-width: 640px) {
  .footer .nav {
    padding-top: var(--space-large);
  }
}

.well {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-base);
  padding: var(--space-base) var(--space-xlarge);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.icon {
  max-width: 1rem;
}

.long-content {
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  padding: var(--space-base);
  color: var(--color-brown);
  margin: var(--space-large) 0;
}
.long-content * {
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.button-container button {
  background-color: #fff;
  color: var(--color-brown);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.button-container button:hover {
  background-color: #F7AD28;
}

.circle {
  border-radius: 50%;
  background-color: var(--color-red);
  aspect-ratio: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-base);
}
@media (min-width: 900px) {
  .circle {
    font-size: clamp(0.5rem, 1.3vw, 1rem);
  }
}

.ta-center {
  text-align: center;
}

.measure {
  max-width: 80ch;
}

.p-relative {
  position: relative;
}

.overlap-above {
  margin-top: var(--overlap, -5rem);
  position: relative;
}

.pb-xlarge {
  padding-bottom: var(--space-xlarge);
}

.pt-base {
  padding-top: var(--space-base);
}

.ps-base {
  padding-inline-end: var(--space-base);
}

.py-base {
  padding-top: var(--space-base);
  padding-bottom: var(--space-base);
}

.mb-large {
  margin-bottom: var(--space-large);
}

.c-yellow {
  color: var(--color-yellow);
}

.bg-orange {
  background-color: var(--color-faded-orange);
}

.bg-hats {
  background-image: url(/assets/hats_bg-709679122fee508a5d9debdcfe45c76587eda813389959e96a75cc67d4191d4f.svg);
  background-position: center;
}

.hajj-title {
  font-family: "Albaik", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 5px 0px #463f3f;
}

.glow {
  font-family: "Albaik", sans-serif;
  font-size: 80px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 140, 0, 0.25), 0 0 20px rgba(255, 140, 0, 0.2), 0 0 25px rgba(255, 140, 0, 0.15), 0 0 30px rgba(255, 140, 0, 0.15), 0 0 35px rgba(255, 140, 0, 0.1);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 165, 0, 0.25), 0 0 20px rgba(255, 165, 0, 0.2), 0 0 25px rgba(255, 165, 0, 0.2), 0 0 30px rgba(255, 165, 0, 0.15), 0 0 35px rgba(255, 165, 0, 0.15), 0 0 40px rgba(255, 165, 0, 0.1);
  }
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 140, 0, 0.25), 0 0 20px rgba(255, 140, 0, 0.2), 0 0 25px rgba(255, 140, 0, 0.15), 0 0 30px rgba(255, 140, 0, 0.15), 0 0 35px rgba(255, 140, 0, 0.1);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 165, 0, 0.25), 0 0 20px rgba(255, 165, 0, 0.2), 0 0 25px rgba(255, 165, 0, 0.2), 0 0 30px rgba(255, 165, 0, 0.15), 0 0 35px rgba(255, 165, 0, 0.15), 0 0 40px rgba(255, 165, 0, 0.1);
  }
}
.hajj-layout body {
  padding-top: 0;
}
.hajj-layout .button-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hajj-layout .button-container button {
  padding: 15px 25px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 6px;
  min-width: 200px;
  text-align: center;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin: 5px;
}
.hajj-layout .button-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hajj-layout .active-button {
  font-weight: bold;
  border-color: var(--color-red-dark) !important;
  border-width: 2px !important;
  box-shadow: 0 4px 12px rgba(199, 62, 58, 0.2) !important;
}
.hajj-layout .hajj-menu-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hajj-layout .hajj-menu-content img {
  max-width: 100%;
  height: auto;
}
.hajj-layout .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #c73e3a;
}
.hajj-layout .horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hajj-layout .horizontal.contain-img img {
  height: 3rem;
}
.hajj-layout .hajj-logo {
  height: 4.5rem !important;
}
.hajj-layout .footer {
  padding: 2rem;
  background-color: #c73e3a;
  color: white;
  margin-top: 2rem;
}
.hajj-layout .footer .horizontal {
  justify-content: center;
  margin-bottom: 1rem;
}
.hajj-layout .copyright-container {
  text-align: center;
}
.hajj-layout .copyright-text {
  font-size: 0.5rem;
  margin: 0.1rem 0;
}
