@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,300&display=swap');
body {
  /* padding: 2rem 5rem; */
}
/*fonts*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400');
@import url('/fonts/Nunito-VariableFont_wght.ttf');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,300&display=swap');
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  /* font-size: 100%; */
font-size: calc(15px + 0.390625vw);
} /*16px*/
:root {
  /*primary */
--screen-sm: 768px;
--screen-md: 1024px;
--screen-lg: 1200px;
--screen-xl: 1600px;

  /*From ShadowLord tints & generator tool*/
  --primary-100: #e0deff;
  --primary-200: #c1beff;
  --primary-300: #a29dff;
  --primary-400: #837dff;
  --primary-500: #645cff;
  --primary-600: #504acc;
  --primary-700: #3c3799;
  --primary-800: #282566;
  --primary-800: #141233;
  /*grey from tailwindcss bluegray*/
  --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;

  --black: #222;
  --white: var(--grey-200);
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;
  /*fonts*/
  --headingFont: 'Nunito', sans-serif;
  --bodyFont: 'Nunito', sans-serif;
  --smallText: 0.7em;
  /*rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--grey-900);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;
  /* box shadow tailwindcss library */
  --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;
    line-height: 1.75;
  color: var(--textColor);
}

p {
  margin-bottom: 1.5rem;
  max-width: 40em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--red-dark);
}

}
h4 {
  text-align: center;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
    @media screen and (max-width: 960px) {
        font-size: 6.1vw;
    }
}

h2 {
  font-size: 2.441rem;
@media screen and (max-width: 960px) {
    font-size: 4.8vw;
}
}

h3 {
  font-size: 1.953rem;
    @media screen and (max-width: 960px) {
        font-size: 3.9vw;
    }
}

h4 {
  font-size: 1.563rem;
   @media screen and (max-width: 960px) {
        font-size: 3vw;
    }
}

h5 {
  font-size: 1.25rem;
   @media screen and (max-width: 960px) {
        font-size: 2.5vw;
    }
}
h6 {
  font-size: 1.15rem;
   @media screen and (max-width: 960px) {
        font-size: 2.3vw;
    }
}
small,
.text-small {
  font-size: var(--smallText);
}
a {
  text-decoration: none;
}
/* ul li {
list-style-type: none;
  padding: 0;
} */
ul {
 list-style-type: square;
  /* padding: 0; */
}
.container {
width: 98vw;
 /* padding : 2em; */
 margin-bottom: 2em;
border-bottom: .5px solid #ddd;
  /* border: solid var(--primary-500); */
  /* border-radius: var(--borderRadius); */
@media screen and (max-width: 758px) {
width: 98vw;
 padding : 0em;
}
}
.segment {
    border:.5px solid #ddd;
}
.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-4);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block;
  /* display: block;
  width: 200px;
  margin: 0 auto;*/
}
.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 {
  width: 90vw;
  max-width: var(--fixed-width);
  background: var(--backgroundColor);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-3);
  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);
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 4rem;
  height: 4rem;
  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 {
  text-align: center;
}
.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
}

/*
=== Navbar
*/
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  width: 90vw;
}
.nav-center {
  width: 90vw;
  max-width: var(--max-width);
  background: var(--grey-300);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-header img {
  width: 200px;
  margin-left: 0.75rem;
}
.nav-btn {
  padding: 0.15rem 1.5rem; /* 0.75rem;*/
}
.nav-btn i {
  font-size: 1.25rem;
}
.nav-links {
  display: flex;
  flex-direction: column;
  /* todo h:307.59 */
  height: 0px;
  overflow: hidden;
  transition: var(--transition);
}
.show-links {
  height: 310px;
}
.nav-link {
  display: block;
  text-align: center;
  text-transform: capitalize;
  color: var(--grey-900);
  letter-spacing: var(--letterSpacing);
  line-height-step: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--grey-500);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary-500);
}
.contact-link a {
  padding: 0.15rem 1rem;
}
@media screen and (min-width: 992px) {
  .nav-btn {
    display: none;
    height: 6rem;
    margin-right: 10px;
  }
  .nav-center {
    display: flex;
    align-items: center;
  }
  .nav-header {
    height: 10vh; /*auto*/
    margin-right: 2rem;
  }
  .nav-links {
    height: auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  .nav-link {
    border-top: 0;
    padding: 0;
    margin-right: 1rem;
    font-size: 1rem;
  }
  .contact-link {
    margin-left: auto;
  }
}

/*
=== Main
*/
.page {
  background: var(--white);
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  min-height: calc(100vh - (6rem+4rem));
}
.hero {
  height: 40vh;
  background: url('https://cdn.groevolve.com/compressed/PonteDellAccademiaVenice_MelroyPatch.png') center
    repeat;;
background-position: top right;
transform: 50% 50%;
  margin-bottom: .2rem;
  border-radius: var(--borderRadius);
  position: relative;
}
.hero-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1,
h4 {
  color: #fff;
  text-align: center;
  text-transform: none;
}
.hero-text img {
  height: 40%;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 0;
  }
  .hero-text h1,
  h4 {
    text-transform: none;
  }
}
/*=========
Recipes
*/
.recipes-container {
  display: grid;
  gap: 2rem 1rem;
}
.recipe-img {
  height: 20rem;
  border-radius: var(--borderRadius);
  margin-bottom: 1rem;
}
.recipe h4 {
  margin-bottom: 0;
  line-height: 1;
  color: var(--grey-700);
}
.recipe p {
  margin-bottom: 0;
  line-height: 1;
  margin-top: 0.5rem;
  color: var(--grey-500);
}
.tags-container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding-bottom: 3 rem;
  order: 1;
}
.tags-container h4 {
  margin-bottom: 0rem;
  font-weight: 500;
  color: var(--grey-400);
}
.tags-container h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--grey-400);
}
.tags-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.tags-list a {
  text-decoration: none;
  text-transform: capitalize;
  color: var(--grey-500);
  transition: var(--transition);
  padding-left: 5px;
}
.tags-list a:hover {
  color: var(--primary-500);
}
.recipes-list {
  display: grid;
  gap: 2rem 1rem;
  padding-bottom: 3rem;
  justify-content: center;
}
.recipe {
  min-width: 20rem;
  text-align: center;
}
.page-content{
    width: 700px;
}
.page-content img{
    width: 100%;
    height: auto;
}
.page-content>p> img{
    width: 100%;
    height: auto;
}
@media screen and (min-width: 576px) {
  .recipes-list {
    grid-template-columns: 1fr 1fr;
  }
  .recipe-img {
    height: 10rem;
  }
}
@media screen and (min-width: 992px) {
  .recipes-container {
    grid-template-columns: 200px 1fr;
  }
  .recipe p {
    font-size: 0.85rem;
  }
  .tags-container {
    order: 0;
  }
  .tags-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .recipes-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/*
=== Footer
*/
.page-footer {
  height: 4rem;
  text-align: center;
  background: var(--grey-100);
  color: var(--grey-500);
  display: flex;
  justify-content: center;
}
.page-footer p {
  margin-bottom: 0px;
}
.footer-logo,
.page-footer a {
  color: var(--primary-500);
}
