/* Global styles */
/* https://coolors.co/2e1b0f-78371d-ad8052-d6ac73-005557-f8f5f1-ffffff */

:root {
  --black: #000000;
  --dark-coffee: #2e1b0f;
  --brandy: #78371d;
  --faded-copper: #ad8052;
  --sandy-clay: #d6ac73;
  --dark-teal: #005557;
  --parchment: #f8f5f1;
  --white: #ffffff;
  --light-grey: #efeeed;

  --black-a80: #00000080;
  --parchment-a80: #f8f5f180;

  --font-heading: "Rowdies";
  --font-subheading: "Rowdies";
  --font-body: "Sansation";
  --font-mono: "IBM Plex Mono";
  --font-arabic: "Scheherazade New";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--parchment);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

body.nav-drawer-open {
  overflow-y: hidden;
}

@font-face {
  font-family: "Rowdies";
  src: url("assets/fonts/Rowdies-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rowdies";
  src: url("assets/fonts/Rowdies-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sansation";
  src: url("assets/fonts/Sansation-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sansation";
  src: url("assets/fonts/Sansation-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sansation";
  src: url("assets/fonts/Sansation-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sansation";
  src: url("assets/fonts/Sansation-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Scheherazade New";
  src: url("assets/fonts/ScheherazadeNew-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 300;
}

p {
  font-family: var(--font-body);
}

small {
  font-size: 0.9rem;
}

a {
  text-decoration: none;
}

.body1 {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.25;
}

.arabic {
  font-family: var(--font-arabic);
  font-size: 1.55rem;
  line-height: 1;
}

.show-sm, .show-lg {
  display: none;
}

/* width >= 400px */
@media (min-width: 25rem) {
}

/* width >= 640px */
@media (min-width: 40rem) {
  .show-sm {
    display: initial;
  }

  .hide-sm {
    display: none;
  }
}

/* width >= 768px */
@media (min-width: 48rem) {
  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  h4 {
    font-size: 2rem;
  }

  .body1 {
    font-family: 1.25rem;
  }
}

/* width >= 1024px */
@media (min-width: 64rem) {
  .show-lg {
    display: initial;
  }

  .hide-lg {
    display: none;
  }
}

/* width >= 1280px */
@media (min-width: 80rem) {
  h2 {
    font-size: 4.5rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2.5rem;
  }

  .body1 {
    font-size: 1.35rem;
  }

  .arabic {
    font-size: 1.75rem;
  }
}

/* width >= 1536px */
@media (min-width: 96rem) {
  h2 {
    font-size: 5rem;
  }

  h3 {
    font-size: 3.5rem;
  }

  h4 {
    font-size: 3rem;
  }
}

/* width >= 1920px */
@media (min-width: 120rem) {
}

