/* Custom Properties */

:root {
  /* color */

  --clr-primary: #ff0000;
  --clr-dark: #1E1E24;
  --clr-secondary: #ff4e4e;
  --clr-alternative: #0E3B43;
  --clr-light: #f5d7d5;
  --clr-gray: #444140;
  --clr-bg: #ffff;
  /* Taupe */
  --clr-white: #ffffff;
  /* Pure White */
  --clr-accent: #3e200a;
  /* Warm Tan */
  
  --shadow: 0 3px 5px 1px rgb(0 0 0 / 0.2), 0 1px 3px 1px rgb(0 0 0 / 0.2);


  --clr-gray: 0 0% 86.3%;
  --clr-gray-light: 0 0% 93.3%;
  --clr-red: 356.7 90.1% 56.5%;
  --clr-black: 0 0% 21.2%;
  --clr-yellow: 43.8 99% 58.8%;
  --clr-very-light-gray: 300 2.7% 92.7%;
  --clr-green: 144.3 64.4% 49.6%;
  --clr-blue: 214.5 100% 53.9%;
  --clr-white: 0 0% 100%;

  /* font family */
  --font-montserrat: "Montserrat", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}


/* ====================Part 1----------------------------------------------- */

/* Default Reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

/* Removing Default Margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Removing List Style */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set Core Root Default */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set Core Body Default */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A Element That Don't Have a class get Default Style */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make image easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for input and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

::-webkit-scrollbar {
  display: none;
}

/* Remove all animation, transition & smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::after,
  *::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}



/* ===================================================== */
/* Some Important Utility Classes  */
/* ===================================================== */

body {
  overflow-x: hidden;
}

/* Background Color Utility Classes */
.bg-red {
  background-color: hsl(var(--clr-red));
}

.bg-black {
  background-color: hsl(var(--clr-black));
}

.bg-blue {
  background-color: hsl(var(--clr-blue));
}

.bg-gray {
  background-color: hsl(var(--clr-gray));
}

.bg-green {
  background-color: hsl(var(--clr-green));
}

.bg-gray-light {
  background-color: hsl(var(--clr-gray-light));
}

.bg-very-light-gray {
  background-color: hsl(var(--clr-very-light-gray));
}

.bg-white {
  background-color: hsl(var(--clr-white));
}

.bg-yellow {
  background-color: hsl(var(--clr-yellow));
}


/* Text Utility Class */
.text-red {
  color: hsl(var(--clr-red));
}

.text-black {
  color: hsl(var(--clr-black));
}

.text-blue {
  color: hsl(var(--clr-blue));
}

.text-gray {
  color: hsl(var(--clr-gray));
}

.text-green {
  color: hsl(var(--clr-green));
}

.text-gray-light {
  color: hsl(var(--clr-gray-light));
}

.text-very-light-gray {
  color: hsl(var(--clr-very-light-gray));
}

.text-white {
  color: hsl(var(--clr-white));
}

.text-yellow {
  color: hsl(var(--clr-yellow));
}


/* Font Size */
.fs-900 {
  font-size: var(--fs-bf-194);
}

.fs-800 {
  font-size: var(--fs-bf-109);
}

.fs-700 {
  font-size: var(--fs-bf-80);
}

.fs-600 {
  font-size: var(--fs-bf-65);
}

.fs-500 {
  font-size: var(--fs-bf-50);
}

.fs-400 {
  font-size: var(--fs-bf-45);
}

.fs-300 {
  font-size: var(--fs-bf-30);
}

.fs-200 {
  font-size: var(--fs-bf-20);
}

.fs-100 {
  font-size: var(--fs-bf-16);
}

.fs-50 {
  font-size: var(--fs-bf-15);
}

/* Font Bold */
.bold-100 {
  font-weight: 100;
}

.bold-200 {
  font-weight: 200;
}

.bold-300 {
  font-weight: 300;
}

.bold-400 {
  font-weight: 400;
}

.bold-500 {
  font-weight: 500;
}

.bold-600 {
  font-weight: 600;
}

.bold-700 {
  font-weight: 700;
}

.bold-800 {
  font-weight: 800;
}

.bold-900 {
  font-weight: 900;
}

.bold-bold {
  font-weight: bold;
}

.bold-bolder {
  font-weight: bolder;
}


/* Font Family */
.fs-poppins {
  font-family: 'Poppins', sans-serif;
}

.fs-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* ============Media Queries For Font Size================ */
@media (max-width: 35rem) {
  :root {
    /* font-size */
    /* --fs-bf-194: 12.125rem; */
    --fs-bf-194: 10.3vw;
    --fs-bf-109: 6.8125rem;
    --fs-bf-65: 4.065rem;
    --fs-bf-80: 3rem;
    --fs-bf-50: 2.525rem;
    --fs-bf-45: 2rem;
    --fs-bf-30: 1.575rem;
    --fs-bf-20: 1rem;
    --fs-bf-16: 0.8rem;
    --fs-bf-15: 0.8rem;
  }
}

@media (min-width: 35rem) and (max-width: 59rem) {
  :root {
    /* font-size */
    /* --fs-bf-194: 12.125rem; */
    --fs-bf-194: 10.3vw;
    --fs-bf-109: 6.8125rem;
    --fs-bf-65: 4.065rem;
    --fs-bf-80: 3.5rem;
    --fs-bf-50: 2.5rem;
    --fs-bf-45: 2.125rem;
    --fs-bf-30: 1.85rem;
    --fs-bf-20: 1.25rem;
    --fs-bf-16: 1rem;
    --fs-bf-15: 0.8375rem;
  }
}

@media (min-width: 59rem) {
  :root {
    /* font-size */
    /* --fs-bf-194: 12.125rem; */
    --fs-bf-194: 12.3vw;
    --fs-bf-109: 6.8125rem;
    --fs-bf-65: 4.065rem;
    --fs-bf-80: 5rem;
    --fs-bf-50: 3.125rem;
    --fs-bf-45: 2.8125rem;
    --fs-bf-30: 1.8125rem;
    --fs-bf-20: 2rem;
    --fs-bf-16: 1rem;
    --fs-bf-15: 0.9375rem;
  }
}

/* Component Utility Class */

.uil {
  cursor: pointer;
}

.flex {
  display: flex;
  gap: var(--flex-gap, 1rem);
}

.grid {
  display: grid;
  gap: var(--flex-gap, 1rem);
}

.container {
  width: 96vw;
  margin-inline: auto;
  padding-inline: 2rem;
}

.block {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.lineheight {
  line-height: var(--line, 3rem);
}

.lineheight2 {
  line-height: var(--line2, 4rem);
}

.large-btn {
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 250ms ease-in-out;
}

.large-btn:hover {
  background-color: hsl(var(--clr-black));
  box-shadow: 3px 2px 37px -6px rgba(255, 255, 255, 0.69);
}

.hide-link {
  text-decoration: none;
}