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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&family=Montserrat&display=swap');
html {
  font-size: 100%;
} /*16px*/

:root {
  /* colors */
  --primary-100: #ccddda;
  --primary-200: #bececb;
  --primary-300: #7ea8a0;
  --primary-400: #689189;
  --primary-500: #517770;
  --primary-600: #3b5e57;
  --primary-700: #284943;
  --primary-800: #1d3f39;
  --primary-900: #102824;

  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* rest of the colors */
  --black: #222;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;

  /* fonts  */
  --headingFont: 'Roboto', sans-serif;
  --bodyFont: 'Nunito', sans-serif;
  --smallText: 0.7em;
  /* rest of the vars */
  --backgroundColor: #d9d2c8;
  --textColor: var(--grey-800);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background: var(--backgroundColor);
  font-family: var(--bodyFont);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--textColor);
}

@media screen and (max-width: 768px) {
  body{
    font-size: 14px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

h1 {
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

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

a {
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}

.img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/* buttons */

.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--primary-500);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transtion);
  text-transform: capitalize;
  display: inline-block;
}
.btn:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-3);
}
.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200);
}
.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700);
}
.btn-block {
  width: 100%;
}

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius);
}

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light);
}
.alert-success {
  color: var(--green-dark);
  background: var(--green-light);
}
/* form */

.form {
  width: 90vw;
  max-width: var(--fixed-width);
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
}
.form-label {
  display: block;
  font-size: var(--smallText);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200);
}

.form-row {
  margin-bottom: 1rem;
}

.form-textarea {
  height: 7rem;
}
::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}
.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
}
/* alert */

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite;
}
.loading {
  margin: 0 auto;
}
/* title */

.title {
  text-align: center;
}

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: -1rem;
}

/*
=============== 
Navbar
===============
*/

.navbar {
    display: flex;
    justify-content: center;
    align-items: center; 
    width: auto;
}

.nav-center {
    width: 90dvw;
    max-width: var(--max-width);    
}

.nav-header {
    height: 6rem;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-header h1 {
    text-decoration: underline;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-header img {
    height: 4rem;
}

.nav-btn {
    padding: 0.15rem 0.75rem;
}

.nav-btn i {
    font-size: 1.25rem;
}

.nav-links {
    display:  flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.show-links {
    height: 310px;
}

.nav-link {
    display: block;
    text-align: center;
    text-transform: capitalize;
    color: var(--grey-700);
    letter-spacing: var(--letterSpacing);
    padding: 1rem 0;
    border-top: 1px solid var(--grey-700);
    transition: var(--transition);

}

.nav-link:hover {
    color: var(--primary-500);
}

.contact-link a {
    padding: 0.15rem 1rem;
}


@media screen and (min-width: 992px){
    .nav-links{
        height: auto;
        flex-direction: row;
        align-items: center;
        width: 95%;
    }

    .nav-link{
        padding: 0;
        border-top: none;
        margin-right: 1rem;
        font-size: 1rem;
    }

}


/*
=============== 
Page
===============
*/
  .page {
    width: 90dvw;
    margin-left: auto;
    margin-right: 3dvw;
    padding-top: 2rem;
    min-height: calc(100vh - (6rem - 4rem));
  }


  .about p {
    text-indent: 2rem;
    
  }

/*
=============== 
Footer
===============
*/
.page-footer {
  height: 4rem;
  background: var(--primary-800);
  color: var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;  
}

.page-footer p {
  margin-bottom: 0;
}

.footer-logo, .page-footer a{
  color: var(--backgroundColor);
  padding-right: 5rem;
  padding-left: 0.5rem;
}


/*
=============== 
Hero 
===============
*/
.hero{
  height: 25dvh;
  background: url('../img/breadOnCounter.png') center/cover no-repeat;
  margin-bottom: 2rem;
  border-radius: var(--borderRadius);
  position: relative;
}

.hero-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.40);
  border-radius: var(--borderRadius);
  align-items: center;
  justify-items: center;  
}

.hero-text{
  padding-top: 2rem;
  text-align: center;
  color: var(--primary-100);
}

@media screen and (min-width: 768px) {
  .hero-text h1{
    font-size: 4rem;
    margin-bottom: 0;    
  }
}

/*
=============== 
Recipes
===============
*/
.recipes-container{
  display: grid;
  gap: 2rem 1rem;
}

.tags-container{
  order: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  color: var(--primary-700);
}

.recipes-list{
  display: grid;
  gap: 2rem 1rem;
  padding-bottom: 3rem;
}

.tags-container h4{
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.tags-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;  
}

.tags-list a {
  text-transform: capitalize;
  display: block;
  color: var(--primary-700);
}

.tags-list a:hover {
  color: var(--primary-300);
}

.recipe {
  display: block;
}

.recipe-img {
  height: 15rem;
  border-radius: var(--borderRadius);
  margin-bottom: 1rem;
}

.recipe h5 {
  margin-bottom: 0;
  line-height: 1;
  color: var(--primary-700);
}

.recipe p{
  margin-bottom: 0;
  margin-top: 0.5rem;
  line-height: 1;
  color: var(--primary-700);
  letter-spacing: var(--letterSpacing);
}

@media screen and (max-width: 576px) {
  .recipes-list {
    grid-template-columns: 1fr;
  }

  .recipe-img {
    height: 15rem;
  }
}


@media screen and (min-width: 576px) {
  .recipes-list{
    grid-template-columns: 1fr 1fr;
  }

  .recipe-img{
    height: 12rem
  }
}

@media screen and (min-width: 992px) {
  .recipes-container{
    grid-template-columns: 200px 1fr;
  }
  .tags-container{
    order: 0;
  }
  .tags-list{
    grid-template-columns: 1fr;
  }
  .recipe p{
    font-size: 0.85rem;
  }

}

@media screen and (min-width: 1200px) {
  .recipe h5{
    font-size: 1.15rem;
  }
  .recipes-list{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/*
=============== 
Error
===============
*/

.error-page{
  text-align: center;
  padding-top: 5rem;
  color: var(--primary-700);
}

.error-page h1{
  font-size: 9rem;
}

.error-page h4{
  font-size: 3rem;
}

/*
=============== 
About
===============
*/

.about{
  color: var(--primary-800);
}

/*
=============== 
Contact page
===============
*/
.contact-form {
  width: 100%;
  margin: 0;
}

.contact-container{
  display: grid;
  gap: 2rem 3rem;
  padding-bottom: 3rem;
  padding-inline: 2rem;
}

@media screen and (min-width: 992px) {
  .contact-container{
    grid-template-columns: 1fr 450px;
    align-items: center;
  }
}

/*
=============== 
Tags
===============
*/
.tag-title{
  text-align: center;

}

.tags-wrapper {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.tag {
  background: var(--primary-500);
  border-radius: var(--borderRadius);
  color: var(--primary-200);
  padding: 0.75rem 0;
}

.tag h5, 
.tag p {
  text-align: center;
  margin-bottom: 0;
}

.tag:hover {
  font-style: italic;
  background-color: var(--primary-900);
}

.tags-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 576px) {
  .tags-list {
    grid-template-columns: 1fr;
  }
}


@media screen and (min-width: 576px) {
  .tags-wrapper{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  .tags-wrapper{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1200px) {
  .tags-wrapper{
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/*
=============== 
Single Recipe Page
===============
*/
.recipe-hero {
  display: grid;
  gap: 3rem;
  color: var(--primary-600)
}

.recipe-hero-img{
  height: 300px;
  border-radius: var(--borderRadius);

}

.recipe-icons{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: center;
}

.recipe-icons i{
  color: var(--primary-500);
  font-size: 1.5rem;
}

.recipe-icons p,
.recipe-icons h5 {
  color: var(--primary-800);
  text-align: center;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.recipe-icon-headers{
  color: var(--primary-800);
}

.recipe-tags{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 600;

}

.recipe-tags a {
  background: var(--primary-500);
  border-radius: var(--borderRadius);
  color:var(--primary-100);
  padding: 0.05rem 0.5rem;
  margin: 0 0.25rem;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}


@media screen and (min-width: 992px) {
  .recipe-hero {
    grid-template-columns: 4fr 5fr;
    align-items: center;
  }
}

.recipe-content {
  padding: 3rem 0;
  display: grid;
  gap: 5rem 2rem;
}

@media screen and (min-width: 992px) {
  .recipe-content {
    grid-template-columns: 1fr 2fr;
  }
}

.single-instruction header{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}


.single-instruction header p{
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary-600)
}

.single-instruction >p {
  color: var(--primary-700);
}

.single-instruction header div{
  height: 2px;
  background: var(--primary-500);
}

.second-colum {
  display: grid;
  row-gap: 2rem;
}

.single-ingredient{
  border-bottom: 2px solid var(--primary-500);
  padding-bottom: 0.5rem;
  color: var(--primary-700);
}

@media screen and (max-width: 576px) {
  .footer-logo,
  .page-footer a {
    padding-right: 1rem;
    padding-left: 0.5rem;
  }
}

.red-but{
  background: rgb(104, 5, 5);
  color: var(--primary-200);
}