
/* ================== */
/* RESET              */
/* ================== */
/* Core Default */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  text-rendering: optimizeSpeed;
}


/* other element core behavior */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* REMOVE ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




:root {
  /* COLORS */

  /* main text color: grey */
  --clr-primary-400: hsl(0, 0%, 25%);

  /* white */
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-off-white: #f0f0f0;

  /* black */
  --clr-neutral-900: hsl(232, 12%, 13%); 

  /* extra colors */
  --clr-gray-100: hsl(0, 0%, 25%);
  --clr-gray-900: hsl(0, 0%, 19%);

  --clr-green-100: hsl(134, 61%, 60%);
  --clr-green-900: hsl(134, 61%, 41%);

  --clr-red-100:  hsl(0, 89%, 61%);
  --clr-red-900:  hsl(0, 89%, 41%);

  --clr-yellow-100: hsl(63.4,81.5%,74.5%);
  --clr-yellow-900: hsl(63, 90%, 53%);

  --clr-purple-100: hsl(240,43.3%,73.7%);
  --clr-purple-900: hsl(240,43.3%,53.7%);

  --clr-orange-500: hsl(30, 100%, 54%);

  /* gradients */
  --gradient-olive-green: linear-gradient(to right bottom, #edf389, #d6e071, #bfcd5a, #a9ba42, #92a829);
  --gradient-redish-gray: linear-gradient(to right top, #f44343, #d43a5f, #aa3e6c, #7d416b, #553f5a, #463c50, #3b3843, #333335, #333337, #333339, #33333b, #33333d); 
  --gradient-red-orange-yellow: linear-gradient(to right, #e71414, #eb4409, #ee6000, #ef7900, #f08f0d, #f09c10, #f0a917, #efb620, #eebf1c, #ecc919, #e9d219, #e5dc1b); 

  

  /* FONT FAMILY */
  --ff-primary: 'Radio Canada', sans-serif;
  --ff-display: 'Lilita One', sans-serif;

  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  /* FONT SIZE */
  --fs-100: 0.4rem;
  --fs-200: 0.65rem;
  --fs-300: 0.75rem;
  --fs-400: 1rem;
  --fs-500: 1.5rem;
  --fs-600: 1.75rem;
  --fs-700: 2rem;
  --fs-800: 3.5rem;
  --fs-900: 5rem;
  --fs-hero: 6rem;

  --fs-body: var(--fs-400);
  --fs-hero-heading: var(--fs-hero);
  --fs-primary-heading: var(--fs-900);
  --fs-secondary-heading: var(--fs-600);
  --fs-text-small: var(--fs-300);

  /* FONT WEIGTH */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-semi-bold: 600;
  --fw-bold: 900;

  /* LINE HEIGHT */
  --line-height-100: 1;
  --line-height-200: 1.07;
  --line-height-300: 1.2;
  --line-height-400: 1.6;
  --line-height-900: 2.2;

  
  --lh-display: var(--line-height-100);
  --lh-small: var(--line-height-200);
  --lh-medium: var(--line-height-300);
  --lh-body: var(--line-height-400);
  --lh-extra-tall: var(--line-height-900);

  /* TEXT ALIGN */
  --t-align-center: center;
  --t-align-right: right;
  --t-align-left: left;

  /* LETTER SPACING */
  --ls-200: 0.6px;
  --ls-300: 0.8px;
  --ls-400: 1px;

  /* BORDER RADIUS */
  --border-radius-400: 10px;
  --border-radius-900: 25px;
  --border-radius-circle: 50%;

  /* UNDERLINE */
  --text-underline: underline;
  
  /* MAX WIDTH CHARACHERS */
  --max-width-ch-25 : 25ch;
  --max-width-ch-35 : 35ch;
  
  /* SPACING & SIZING: REM UNITS */
  /* (Font size for titles, body, text, padding between sections, marging, border, border-radius) */
  --size-100: 0.55rem;
  --size-200: 0.75rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
  --size-950: 6rem;
  --size-xxl: 8rem;

  /* SPACING & SIZING: EM UNITS */
  /* (Local scoped spacing: Spacing & Size based on Font size eg buttons */
  --size-em-100: 0.25em;
  --size-em-200: 0.5em;
  --size-em-300: 0.75em;
  --size-em-400: 1em;
  --size-em-500: 1.5em;
  --size-em-600: 2em;
  --size-em-900: 3em;
  --size-em-accent: ;

  /* SPACER: takes care the margin top of */
  /* --flow-spacer-900: 5rem;
  --flow-spacer-800: 4.5rem;
  --flow-spacer-700: 4rem; */
  --flow-spacer-600: 3rem;
  --flow-spacer-500: 2rem;
  --flow-spacer-400: 1rem;
  --flow-spacer-300: 0.8rem;
  --flow-spacer-200: 0.5rem;
  --flow-spacer-accent-sm: ;
  --flow-spacer-accent-lg: ;

}
/* 600px */
@media (max-width: 30em) {
  :root {
    --fs-primary-heading: var(--fs-800);
    /* --fs-secondary-heading: var(--fs-400); */
  }
}

/* ========================================= */
/* UTILITY CLASSES */
/* ========================================= */
/* TEXT COLORS */
.text-primary-400 {
  color: var(--clr-primary-400);
}
.text-neutral-100 {
  color: var(--clr-neutral-100);
}
.text-neutral-900 {
  color: var(--clr-neutral-900);
}
.text-off-white {
  color: var(--clr-off-white);
}

.text-red-100 {
  color: var(--clr-red-100);
}
.text-red-900 {
  color: var(--clr-red-900);
}
.text-green-900 {
  color: var(--clr-green-900);
}
.text-green-100 {
  color: var(--clr-green-100);
}
.text-gray-900 {
  color: var(--clr-grey-900);
}
.text-purple-900 {
  color: var(--clr-purple-900);
}
.text-purple-100 {
  color: var(--clr-purple-100);
}
.text-yellow-100 {
  color: var(--clr-yellow-100);
}
.text-yellow-900 {
  color: var(--clr-yellow-900);
}

.text-orange-500 {
  color: var(--clr-orange-500);
}


/* BACKGROUND COLORS */
.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}
.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

/* off-white */
.bg-off-white {
  background-color: var(--clr-off-white);
}

/* gray */
.bg-gray-100 {
  background-color: var(--clr-gray-100);
}
.bg-gray-900 {
  background-color: var(--clr-gray-900);
}

/* green */
.bg-green-100 {
  background-color: var(--clr-green-100);
}
.bg-green-900 {
  background-color: var(--clr-green-900);
}

/* red */
.bg-red-100 {
  background-color: var(--clr-red-100);
}
.bg-red-900 {
  background-color: var(--clr-red-900);
}

/* yellow */
.bg-yellow-100 {
  background-color: var(--clr-yellow-100);
}
.bg-yellow-900 {
  background-color: var(--clr-yellow-900);
}

/* purple */
.bg-purple-900 {
  background-color: var(--clr-purple-900);
}
.bg-purple-100 {
  background-color: var(--clr-purple-100);
}

/* orange */
.bg-orange-500 {
  background-color: var(--clr-orange-500);
}


/*  TEXT GRADIENTS */
.text-bg-gradient-red-orange-yellow {
  background-image: var(--gradient-red-orange-yellow);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

/* BACKGROUND GRADIENTS */
.bg-gradient-olive-green {
  background-image: var(--gradient-olive-green);
}
/* red to dark gray */
.bg-gradient-redish-gray {
  background-image: var(--gradient-redish-gray);
}

/* FONT FAMILY */
.ff-display {
  font-family: var(--ff-display);
}

/* FONT SIZE */
.fs-hero-heading {font-size: var(--fs-hero-heading);}
.fs-primary-heading {font-size: var(--fs-primary-heading);}
.fs-secondary-heading {font-size: var(--fs-secondary-heading);}
.fs-tertiary-heading {font-size: var(--fs-tertiary-heading);}

.fs-100 {font-size: var(--fs-100);}
.fs-200 {font-size: var(--fs-200);}
.fs-300 {font-size: var(--fs-300);}
.fs-400 {font-size: var(--fs-400);}
.fs-500 {font-size: var(--fs-500);}
.fs-600 {font-size: var(--fs-600);}
.fs-700 {font-size: var(--fs-700);}
.fs-800 {font-size: var(--fs-800);}
.fs-900 {font-size: var(--fs-900);}
.fs-xxl {font-size: var(--fs-xxl);}
/* FONT WEIGHT */
.fw-light {font-weight: var(--fw-light);}
.fw-regular {font-weight: var(--fw-regular);}
.fw-semi-bold {font-weight: var(--fw-semi-bold);}
.fw-bold {font-weight: var(--fw-bold);}

/* LINE HEIGHT */
.line-height-small {
  line-height: var(--line-height-200);
}
.line-height-medium {
  line-height: var(--line-height-300);
}
.line-height-body {
  line-height: var(--lh-body);
}
.line-height-display {
  line-height: var(--lh-display);
}
.line-height-extra-tall {
  line-height: var(--lh-extra-tall);
}



/* TEXT ALIGN */
.text-align-center {text-align: center;}
.text-align-right {text-align: right;}
.text-align-left {text-align: left;}

/* LETTER SPACING */
.letter-spacing-400 {
  letter-spacing: var(--ls-400);
}
.letter-spacing-300 {
  letter-spacing: var(--ls-300);
}
.letter-spacing-200 {
  letter-spacing: var(--ls-200);
}

/* BORDER RADIUS */
.border-radius-400 {
  border-radius: var(--border-radius-400);
}
.border-radius-900 {
  border-radius: var(--border-radius-900);
}
.border-radius-circle {
  border-radius: var(--border-radius-circle);
}

/* UNDERLINE */
.underline {
  text-decoration: underline;
}

/* SPACING & SIZING           */
/* 1. for general spacing padding (size 100-900) */
/* padding block = top and bottom */
/* padding inline = left and right */
/* padding space around = all sides (top, right, bottom, left) */
.padding-block-400 {
  padding-block: var(--size-400);
}
.padding-block-600 {
  padding-block: var(--size-600);
}
.padding-block-700 {
  padding-block: var(--size-700);
}
.padding-block-800 {
  padding-block: var(--size-800);
}
.padding-block-900 {
  padding-block: var(--size-900);
}
.padding-block-950 {
  padding-block: var(--size-950);
}
/* right - left */
.padding-inline-200 {
  padding-inline: var(--size-200);
}
.padding-inline-400 {
  padding-inline: var(--size-400);
}
/* all around */
.padding-space-around-200 {
  padding: var(--size-200);
}
.padding-space-around-300 {
  padding: var(--size-300);
}
.padding-space-around-400 {
  padding: var(--size-400);
}
.padding-space-around-500 {
  padding: var(--size-500);
}
.padding-space-around-600 {
  padding: var(--size-600);
}
.padding-space-around-700 {
  padding: var(--size-700);
}
.padding-space-around-800 {
  padding: var(--size-800);
}
/* top */
.padding-top-400 {
  padding-top: var(--size-400);
}
.padding-top-400 {
  padding-top: var(--size-400);
}
.padding-top-500 {
  padding-top: var(--size-500);
}
.padding-top-600 {
  padding-top: var(--size-600);
}
.padding-top-700 {
  padding-top: var(--size-700);
}

.margin-auto {
  margin: 0 auto;
}


.margin-block-400 {
  margin-block: var(--size-400);
}
.margin-block-900 {
  margin-block: var(--size-900);
}
.margin-block-700 {
  margin-block: var(--size-700);
}
.margin-inline-400 {
  margin-inline: var(--size-400);
}
.margin-space-around-500 {
  margin: var(--size-500);
}


.margin-bottom-400 {
  margin-bottom: var(--size-400);
}
.margin-bottom-600 {
  margin-bottom: var(--size-600);
}
.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

/* 3. Margin Top Spacer */
:where(.flow-spacer-900 :not(:first-child)) {
  margin-top: var(--flow-spacer-900);
}
:where(.flow-spacer-800 :not(:first-child)) {
  margin-top: var(--flow-spacer-800);
}
:where(.flow-spacer-700 :not(:first-child)) {
  margin-top: var(--flow-spacer-700);
}
:where(.flow-spacer-600 :not(:first-child)) {
  margin-top: var(--flow-spacer-600);
}
:where(.flow-spacer-500 :not(:first-child)) {
  margin-top: var(--flow-spacer-500);
}
:where(.flow-spacer-400 :not(:first-child)) {
  margin-top: var(--flow-spacer-400);
}
:where(.flow-spacer-300 :not(:first-child)) {
  margin-top: var(--flow-spacer-300);
}
:where(.flow-spacer-200 :not(:first-child)) {
  margin-top: var(--flow-spacer-200);
}

/* LAYOUT */
/* main container */
.container {
  --max-width: 960px;
  --horizontal-margin: 2rem;

  width: min(var(--max-width), 100% - (var(--horizontal-margin) * 2));
  /* width: min(600px, 100%); */
  margin-inline: auto;
}

@media (max-width: 550px) {
  .container {
    --horizontal-margin: 1rem;
  }
}




.even-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  /* the 2 columns kick in when we hit 700px  */
  /* grid-template-columns: repeat(2, 1fr); */
  /* the standart 2 columns was 720px */
}

.gap-400 {
  gap: var(--size-400);
}
.gap-500 {
  gap: var(--size-500);
}
.gap-600 {
  gap: var(--size-600);
}
.gap-700 {
  gap: var(--size-700);
}
.place-items-center {
  place-items: center;
} 


/* width maximum charachters */
.max-width-ch-25 {
  max-width: var(--max-width-ch-25);
}
.max-width-ch-35 {
  max-width: var(--max-width-ch-35);
}
/* width minimum content */
.width-fit-content {
  width: fit-content;
  margin-inline: auto;
}
.max-width-1100 {
  max-width: 1100px;
}


/* ACCESSIBLE HIDING  */
/* This class .visually-hidden does not display the text Menu on the screen. All we want here is not to show it but when the screen reader gets there they will say the word menu */
.visually-hidden {
  position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
	white-space: nowrap !important; /* added line */
	border: 0 !important;
}


/* ========================== */
/* Reusuable Components */
/* =========================== */
/* BUTTONS */
.btn {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 30px;
  color: var(--clr-neutral-100);
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  border: none;
  border-radius: 5px;
}
.btn-version-green {
  background-color: var(--clr-green-900);
}
.btn-version-green:hover {
  background-color: var(--clr-green-100);
}
.btn-version-red {
  background-color: var(--clr-red-100);
}
.btn-version-red:hover {
  background-color: var(--clr-red-900);
}
.btn-version-yellow {
  background-color: var(--clr-yellow-900);
}
.btn-version-yellow:hover {
  background-color: var(--clr-yellow-100);
}
.btn-version-purple {
  background-color: var(--clr-purple-900);
}
.btn-version-purple:hover {
  background-color: var(--clr-purple-100);
}
.btn-version-outline {
  color: var(--text-primary-400);
  border: 2px solid var(--clr-primary-400);
}
.btn-version-outline:hover {
  background-color: var(--clr-primary-400);
  color: var(--clr-yellow-100);
}




/* ============================= */
/* BODY CORE DEFAULT STYLING */
/* ============================= */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background-color: var(--clr-body-bg);
  color: var(--clr-primary-400);
}


/* =============================== */
/* GENERAL STYLING */
/* =============================== */
a {
  color: inherit;
}




/* ====================== */
/* 1. PRIMARY HEADER      */
/* ====================== */

/* LOGO */
.logo {
  width: 200px;
  cursor: pointer;
}


/* PRIMARY NAVIGATION */
/* button */
.mobile-nav-toggle {
  display: none;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.primary-navigation__list {
  display: flex;
  gap: 2rem;

}
.primary-navigation__list a {
  text-decoration: none;
  font-weight: var(--fw-bold);
  position: relative;
}

/* LINK HOVER STATE (underline) */
.primary-navigation__list a::before, 
.primary-navigation__list a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color:var(--clr-primary-400);
  left: 0;
  transform: scaleX(0);
  transition: transform 300ms;
}
.primary-navigation__list a::after {
  bottom: -4px;
  transform-origin: left;
}
.primary-navigation__list a:hover::after {
  transform: scaleX(1);
}



/* PRIMARY NAVIGATION: equal or LESS than 640px */
@media (max-width: 50em) {

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    background: transparent;
  }
  /* the first 2 lines of the menu */
  .mobile-nav-toggle::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--clr-primary-400);
    border-radius: 10px;
    transition: 0.2s;
    transform: translateY(-10px);
    box-shadow: 0 10px 0 var(--clr-primary-400);
  }
  /* the third line of the menu */
  .mobile-nav-toggle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--clr-neutral-100);
    background-color: var(--clr-primary-400);
    transition: 0.2s;
    transform: translateY(10px);
  }
  /* .active for the button */
  .mobile-nav-toggle.active::before {
    transform: translateY(0px) rotate(45deg);
    box-shadow: 0 0 0 var(--clr-neutral-100);
  }
  .mobile-nav-toggle.active::after {
    transform: translateY(0px) rotate(-45deg);
  }
 

  .primary-header {
    position: relative;
    z-index: 1000;
  }
  .primary-navigation  {
    display: none;
    background-image: var(--clr-olive-green);

  }
  .primary-navigation.active {
    display: block;
    position: fixed;
    inset: 7rem var(--size-400) auto;
    background-color: var(--clr-neutral-100);
    border-radius: var(--size-200);
    padding: var(--size-700);
    box-shadow: 0 0 0.75em rgb(0,0,0, 0.2);
  }

  .primary-header.active::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 1));
    background-repeat: repeat;
    opacity: 0.6;
  } 
  .primary-navigation__list {
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: var(--size-500);
    text-align: center;
  }  
  .primary-navigation__list a {
    text-decoration: none;
    color: var(--clr-primary-400)
  }
}


/* ====================== */
/* 2. HERO                */
/* ====================== */
.hero__text--slogan  {
  margin-top: 0.5rem;
}

/* WE STAND OUT button */
.hero__text--tag {
  font-family: var(--ff-display);
  font-size: var(--fs-400);
  letter-spacing: var(--ls-400);
  color: var(--clr-primary-400);
  width: fit-content;
  margin-inline: auto;
  padding: .3rem 1rem;
  border: 2px solid ;
  border-radius: 30px;
  margin-top: 2rem;
}

/* 3 ICONS */
.grid-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  max-width: fit-content;
  margin-inline: auto;
  margin-top: 0.5rem;
}
/* ICONS > TEXT */
.icon-card {
  display: flex;
  flex-direction: column;
  max-width: 25ch;
  padding: 1rem;
  font-size: var(--fs-300);
}
.icon-card i {
  margin-bottom: 0.5rem;
}





/* ============================= */
/* 3. MEDIA SCROLLER     */
/* ============================= */

/* TEXT */
.products__text i {
  font-size: 1.5rem;
}
.products__text--title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON */
.fa-carrot {
  font-size: var(--fs-900);
  /* cursor: pointer; */
  color: var(--clr-orange-500);
}

/* MEDIA SCROLLER */
.media-scroller {
  --_spacer: .8rem;

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 41%;
  gap: var(--_spacer);

  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--clr-gray-900) #ddd;
  padding: calc(var(--_spacer) * 2); 

 
}

/* 640 and below */
@media (max-width: 40em) {
  .media-scroller {
    grid-auto-columns: 71%;
  }
}

.media-scroller__element {
  display: grid;
  grid-template-rows: min-content;
  gap: var(--_spacer);

  padding: var(--_spacer);
  background-color: var(--clr-gray-900);
  border-radius: 10px;
}
/* or
.media-scroller > * { */
.media-scroller__element > img {
  inline-size: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-scroller__element figcaption {
  color: var(--clr-neutral-100);
  font-weight: var(--fw-bold);
  text-align: center;
  font-size: var(--fs-200);
}

.snaps-inline {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: var(--_spacer, 1rem);
}
/* select all my direct children of my snaps inline */
.snaps-inline > * {
  scroll-snap-align: start;
}


/* ====================== */
/* 3. CARDS */
/* ====================== */
.card {
  border-radius: var(--border-radius-900);
  background-color: var(--clr-neutral-100);
  box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  -webkit-box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  -moz-box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  padding: var(--size-500);
}


/* ====================== */
/* 4. HISTORY             */
/* ====================== */
/* nothing yet (only utility classes) */


/* ====================== */
/* 5. NEW ARRIVAL         */
/* ====================== */
.new-arrival-section {
  max-width: 1100px;
  margin-inline: auto;
  background-color: var(--clr-gray-100);
  margin-block: 5rem;
  -webkit-box-shadow: 2px 7px 37px 0px rgba(244,67,67,0.61);
  -moz-box-shadow: 2px 7px 37px 0px rgba(244,67,67,0.61);
  box-shadow: 2px 7px 37px 0px rgba(244,67,67,0.61);
}
/* 1100px */
@media (min-width: 68.75em) {
  .new-arrival-section {
    border-radius: 20px;
  }
}
.new-arrival__tag {
  font-family: var(--ff-display);
  font-size: var(--fs-600);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-400);
  color: var(--clr-red-100);
  width: fit-content;
  padding: .3rem 1rem;
  border: 4px solid var(--clr-red-100);
  transform: rotate(-5deg);
  margin-bottom: 2rem;
}

/* ===================== */
/* 6. OUR BLOG */
/* ===================== */
/* nothing yet (only utility classes) */

/* ==================== */
/* 7. DELIVERY          */
/* ==================== */
/* nothing yet (only utility classes) */


/* ==================== */
/* 8. FOOTER            */
/* ==================== */
.footer-grid {
  display: grid;
  gap: var(--size-600);
  grid-template-columns: 1fr 2fr 2fr;
}

.footer__socia-icons {
  display: flex;
  flex-direction: column;
  gap: var(--size-300);
}
/* 960px  */
@media (max-width: 60em) {
  .footer-grid {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }
  .footer__socia-icons {
    flex-direction: row;
    justify-content: center;
  }
}


/* ICONS */
.fa-facebook-square {
  font-size: var(--fs-900);
  /* cursor: pointer; */
  /* color: #17A9FD; */
}
.fa-instagram {
  font-size: var(--fs-900);
}
.fa-youtube {
  font-size: var(--fs-900);
  /* color: #FF0000; */
}
/* ALL OTHER ICONS */
.footer ul li {
  list-style: none;
}
.footer ul li i {
  margin-right: 0.4rem;
}
.footer__copyright a {
  text-decoration: none;
}
.footer__copyright a:hover {
  color: var(--clr-orange-500);
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* OTHER PAGES */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* =============== */
/* Blog Page       */
/* =============== */

/* BLOG HEADER */
.blog-hero {
  /* margin-inline: auto; */
  /* background-color: var(--clr-gray-900); */
  background-image: linear-gradient(to right top, #f44343, #d43a5f, #aa3e6c, #7d416b, #553f5a, #463c50, #3b3843, #333335, #333337, #333339, #33333b, #33333d);
}


/* CARDS */
.grid-blog-card-wrapper {
  display: grid;
  gap: var(--size-700);
  grid-template-columns: repeat(3, 1fr);
}
/* 912px */
@media (max-width: 57em) {
  .grid-blog-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 600px */
@media (max-width: 37.5em) {
  .grid-blog-card-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-card {
    max-width: 350px;
    margin-inline: auto;
  }
}

.blog-card {
  border-radius: var(--border-radius-900);
  background-color: var(--clr-neutral-100);
  box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  -webkit-box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  -moz-box-shadow: -2px 9px 19px 0px rgba(221,221,221,1);
  transition: transform 1000ms;
  cursor: pointer;
}

.blog-card__link-wrapper {
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-0.75rem);
  transition: transform 250ms;
}

.blog-card__main-img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.blog-card__tag {
  /* background-color: var(--clr-green-100); */
  color: var(--clr-neutral-100);
  font-weight: var(--fw-bold);
  font-size: var(--fs-300);
  width: fit-content;
  padding: 0.1em 1.5em;
  border-radius: 5px;
}

/* author */
.blog-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.blog-card__author--img {
  width: 2.5rem;
}

.blog-card__author--text,
.blog-card__author--date {
  font-weight: var(--fw-bold);
  font-size: var(--fs-300);
}

.blog-card__author:nth-child(2) > * {
  line-height: var(--line-height-100);
}

/* ======================== */
/* BLOG POST */
/* ======================== */
/* >> HEADER */
.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-header__title {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.blog-post-header__img {
  width: 2.5rem;
}
.blog-post-header__author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: var(--lh-small);
  font-weight: var(--fw-bold);
  font-size: var(--fs-300);
  margin-top: 1rem;
}


.blog-post__intro p {
  margin-bottom: 1rem;
  max-width: 63ch;
}
.blog-post__intro--title,
.fruit-section__title,
.vegi-section__title {
  width: fit-content;
  font-weight: var(--fw-light);
  line-height: var(--line-height-300);
  font-size: var(--fs-primary-heading);
  margin-bottom: 3rem;
}


.fruit-section__content img,
.vegi-section__content img {
  width: 3rem;
}

.fruit-section__content h5,
.vegi-section__content h5 {
  font-size: var(--fs-secondary-heading);
  font-weight: var(--fw-light);
}
.fruit-section__content p,
.vegi-section__content p {
  margin-top: 1rem;
}
.align-horizontal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}