/* Font: Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Universal Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Makes the default HTML size 10px */
html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #102a42;
}

/* RESUSABLE FLEX BOX */
.app {
  max-width: 120rem;
  /* text-align: center; */
  margin: 7.2rem auto;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;

  margin-bottom: 3.6rem;
}

.heading {
  font-size: 4rem;
  letter-spacing: 0.2rem;
  /* margin-bottom: 1.2rem; */
}

hr {
  /* text-align: center; */
  width: 10%;
  border-radius: 2rem;
  background-color: #c59d5f;
  height: 0.5rem;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 6rem;
}

.btn {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  border: 0.2rem solid #c59d5f;
  background-color: #fff;
  color: #c59d5f;
  transition: all 400ms ease;
  cursor: pointer;

  /* 3D effect for button - by changing the color of the */
  border-color: #c59d5f #715a36 #715a36 #c59d5f;
}

.btn:hover {
  background-color: #c59d5f;
  color: #fff;
}

.btn:active {
  border-color: #715a36 #c59d5f #c59d5f #715a36;
}

/* =============================================================== */
/* =============================================================== */

/* STYLES FOR RECIPE */
.recipe-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.4rem;
  row-gap: 3.6rem;
}

.recipe {
  display: grid;
  grid-template-columns: 22.5rem 1fr;
  column-gap: 2rem;
}

.recipe--img {
  width: 100%;
  height: 15rem;
  border: 0.4rem solid #c59d5f;
  border-radius: 1rem;
}

.info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  letter-spacing: 0.4rem;
  border-bottom: 0.05rem dotted #343a40;
  line-height: 1;
}

.recipe--cost {
  font-size: 1.6rem;
}

.recipe--name {
  text-transform: capitalize;
}

.recipe--cost,
.recipe--name {
  margin-bottom: 0.8rem;
}

.recipe--cost {
  font-weight: 600;
  color: #c59d5f;
}

.recipe--description {
  justify-self: end;
  padding-top: 1.2rem;
  line-height: 1.5;
  font-size: 1.5rem;
  color: #617d98;
}

/* =============================================================== */
/* =============================================================== */
