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

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

:root {
  /* primary/main color */
  --primaryColor: #ff8c69; /* Light peach color for buttons */
  --primaryLightColor: #ffb69b;
  --primaryDarkColor: #e67a5a;
  --primaryDarkerColor: #cc6a4a;
  /* grey used for paragraphs */
  --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;
  --backgroundColor: #ffdab9; /* Light peach color */
  --textColor: #000000; /* Changed to black */
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;
  --fluid-width: 90vw;
  --nav-height: 6rem;
  /* 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: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--textColor);
}

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

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

h1 {
  margin-top: 0;
  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(--primaryColor);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block;
}
.btn:hover {
  background: var(--primaryDarkColor);
  box-shadow: var(--shadow-3);
}
.btn-hipster {
  color: var(--primaryColor);
  background: var(--primaryLightColor);
}
.btn-hipster:hover {
  color: var(--primaryLightColor);
  background: var(--primaryDarkColor);
}
.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 {
  background: var(--backgroundColor);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-1);
}

.nav-center {
  width: var(--fluid-width);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  width: 10rem;
}

.nav-btn {
  background: transparent;
  border: transparent;
  color: var(--primaryColor);
  cursor: pointer;
  transition: var(--transition);
  font-size: 2rem;
}

.nav-btn:hover {
  color: var(--primaryDarkColor);
  transform: rotate(90deg);
}

.nav-links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  background: var(--backgroundColor);
  z-index: 1;
  box-shadow: var(--shadow-2);
}

.show-links {
  height: auto;
  padding: 1rem 0;
}

.nav-link {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  text-transform: capitalize;
  color: var(--grey-900);
  letter-spacing: var(--letterSpacing);
  padding: 1rem 0;
  border-top: 1px solid var(--grey-300);
  transition: var(--transition);
  width: 100%;
  font-family: 'Instrument Serif', serif;
}

.nav-link:hover {
  color: var(--primaryColor);
  background: var(--primaryLightColor);
}

.search-container {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  width: 100%;
  justify-content: center;
  padding: 0 1rem;
}

.search-input {
  padding: 0.5rem;
  border: 1px solid var(--grey-300);
  border-radius: var(--borderRadius);
  margin-right: 0.5rem;
  width: 100%;
  max-width: 300px;
  transition: var(--transition);
  background: var(--white);
}

.search-input:focus {
  outline: none;
  border-color: var(--primaryColor);
  box-shadow: var(--shadow-1);
}

.search-btn {
  background: var(--primaryColor);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--borderRadius);
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primaryDarkColor);
}

.contact-link {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.contact-link a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primaryColor);
  color: var(--white);
  border-radius: var(--borderRadius);
  transition: var(--transition);
}

.contact-link a:hover {
  background: var(--primaryDarkColor);
}

/*
=============== 
Page
===============
*/

.page {
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page {
  padding-top: 2rem;
  min-height: calc(100vh - (6rem + 4rem));
}
/*
=============== 
Footer
===============
*/

.page-footer {
  text-align: center;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
}
.page-footer h5 {
  margin-top: 0;
  margin-bottom: 0;
}
.page-footer p {
  margin-bottom: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
}
.page-footer .footer-logo,
.page-footer a {
  color: var(--primary-500);
}
/*
=============== 
Hero
===============
*/

.hero {
  height: 40vh;
  position: relative;
  margin-bottom: 2rem;
  background: url('../assets/main.jpeg') center/cover no-repeat;
  border-radius: var(--borderRadius);
}
.hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--borderRadius);
}
.hero-text {
  color: var(--white);
  text-align: center;
}

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

/*
=============== 
Recipes 
===============
*/

.recipes-container {
  display: grid;
  gap: 2rem 1rem;
}

.recipes-list {
  display: grid;
  gap: 2rem 1rem;
  padding-bottom: 3rem;
}
.tags-container {
  order: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  /* background: blue; */
}
.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(--grey-500);
  transition: var(--transition);
}
.tags-list a:hover {
  color: var(--primary-500);
}
.recipe {
  display: block;
}
.recipe-img {
  height: 15rem;
  border-radius: var(--borderRadius);
  margin-bottom: 1rem;
}
.recipe h5 {
  margin-bottom: 0;
  margin-top: 0.25rem;
  line-height: 1;
  color: var(--grey-700);
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
}
.recipe p {
  margin-bottom: 0;
  line-height: 1;
  color: var(--grey-500);
  margin-top: 0.5rem;
  letter-spacing: var(--letterSpacing);
  font-family: 'Instrument Serif', serif;
  font-size: 0.9rem;
}
@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;
    gap: 1rem;
  }
  .recipes-list {
    grid-template-columns: 1fr 1fr;
  }

  .recipe p {
    font-size: 0.85rem;
  }
  .tags-container {
    order: 0;
    /* background: blue; */
  }
  .tags-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@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;
}
.error-page h1 {
  font-size: 9rem;
}
/*
=============== 
About Page
===============
*/

.about-page h2 {
  text-transform: none;
  font-weight: bold;
}
.about-page {
  display: grid;
  gap: 2rem 4rem;
  padding-bottom: 3rem;
}
.about-img {
  border-radius: var(--borderRadius);
  height: 300px;
}

@media screen and (min-width: 992px) {
  .about-page {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px;
    align-items: center;
  }
  .about-img {
    height: 100%;
  }
}

.featured-title {
  text-align: center;
}
/*
=============== 
Contact Page
===============
*/
.contact-form {
  width: 100%;
  margin: 0;
}
.contact-container {
  display: grid;
  gap: 2rem 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 450px;
    align-items: center;
  }
}

/*
=============== 
Tags Page
===============
*/

.tags-wrapper {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}
.tag {
  background: var(--primaryColor);
  border-radius: var(--borderRadius);
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  padding: 0.75rem 0;
}
.tag:hover {
  background: var(--primaryDarkColor);
}
.tag h5,
.tag p {
  margin-bottom: 0;
}
.tag h5 {
  font-weight: 600;
}
@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;
  }
}

/*
=============== 
Recipe Template
===============
*/

.recipe-page {
  padding: 2rem 0;
}

.recipe-hero {
  display: grid;
  gap: 3rem;
}

.recipe-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--borderRadius);
}

.recipe-info h2 {
  text-transform: capitalize;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--textColor);
  font-family: 'Instrument Serif', serif;
}

.recipe-info p {
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
}

.recipe-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

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

.recipe-icons h5 {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--grey-600);
}

.recipe-icons p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--grey-700);
}

.recipe-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-600);
}

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

.recipe-tags a:hover {
  background: var(--primaryDarkColor);
}

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

.recipe-content h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  color: var(--textColor);
  font-family: 'Instrument Serif', serif;
}

.single-instruction {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--borderRadius);
  margin-bottom: 1rem;
}

.single-instruction header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.single-instruction header p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--textColor);
  font-family: 'Instrument Serif', serif;
}

.single-instruction > p {
  color: var(--grey-600);
  line-height: 1.8;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
}

.single-ingredient {
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 0.75rem;
  color: var(--grey-700);
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
}

.single-tool {
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 0.75rem;
  color: var(--grey-700);
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
}

.error {
  text-align: center;
  padding: 2rem;
  color: var(--textColor);
}

.error p {
  margin-bottom: 1rem;
  color: var(--grey-600);
}

@media screen and (min-width: 768px) {
  .nav-center {
    display: flex;
    align-items: center;
  }

  .nav-header {
    padding: 0;
    margin-right: 2rem;
    width: auto;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    height: auto !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .show-links {
    padding: 0;
  }

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

  .nav-link:hover {
    background: transparent;
  }

  .search-container {
    margin: 0 1rem;
    width: auto;
    padding: 0;
  }

  .contact-link {
    margin: 0;
    margin-left: auto;
    width: auto;
  }

  .contact-link a {
    display: inline-block;
  }
}

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

  .recipe-content {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }

  .nav-center {
    width: 95vw;
  }
}

@media screen and (min-width: 1200px) {
  .nav-center {
    width: 95vw;
    max-width: var(--max-width);
  }
}

.search-results {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.recipe-card {
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  transition: var(--transition);
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-4);
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: var(--borderRadius);
  border-top-right-radius: var(--borderRadius);
}

.recipe-card h3 {
  padding: 1rem;
  margin: 0;
  color: var(--textColor);
}

.recipe-card p {
  padding: 0 1rem;
  color: var(--grey-600);
}

.recipe-card .btn {
  margin: 1rem;
  display: inline-block;
}

.no-results, .error {
  text-align: center;
  padding: 2rem;
  color: var(--textColor);
}
