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

:root {
  --font-rob: "Roboto", sans-serif;
  --font-mons: "Montserrat", sans-serif;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.5rem;
  font-family: var(--font-mons);
  overflow-x: hidden;
  color: rgb(88, 86, 86);
}

/* ------------------------------- */

a {
  text-decoration: none;
  display: inline-block;
}

li {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.link {
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  background: linear-gradient(to left bottom, #f94904, #fd972a);
  border-radius: 1rem;
}

/* ----------------------------------- */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.nav-brand {
  font-size: 2.5rem;
  font-family: var(--font-rob);
  color: #f98404;
}

.nav-links {
  display: flex;
}

.link-item {
  padding: 0.7rem 1rem;
  margin-left: 0.5rem;
  font-family: var(--font-mons);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
  transition: all 0.3s ease;
}

.link-item:hover {
  color: #f98404;
}

/* ------------- Hero ------------- */

.hero-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-text-title {
  font-size: 5rem;
  font-family: var(--font-rob);
  margin-bottom: 3rem;
}
.hero-text-title span {
  color: #f98404;
}

.hero-text p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 5rem;
}

.hero-img img {
  width: 90%;
}

/* ---------- About ------------ */

.section-about {
  background-image: url(img/Frame.png);
  background-repeat: no-repeat;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
  align-items: center;
  padding: 5rem 0 0;
}

.about-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-img > img {
  height: auto;
  width: 20rem;
  display: block;
}

.about-text {
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ----------- recipes -------------- */

.recipe-container {
  padding: 5rem 0 8rem;
}

.recipe-title {
  text-align: center;
  padding: 0 10rem;
}

.recipe-title h2 {
  margin-bottom: 2rem;
  font-size: 2.3rem;
}

.recipe-title p {
  margin-bottom: 5rem;
}

.recipe-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
}

.recipe-box {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.15);
}

.recipe-img {
  height: 20rem;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 1.5rem;
}

.recipe-img img {
  height: 100%;
  width: 100%;
}

.recipe-box h3 {
  font-weight: 700;
  font-family: var(--font-rob);
  margin-bottom: 1.5rem;
}

.recipe-box p {
  line-height: 1.5;
}

/* ---------- Gallery ------------- */

.section-gallery {
  margin-bottom: 7rem;
}

.gallery-title {
  text-align: center;
}

.gallery-title h3 {
  font-size: 2.6rem;
  font-family: var(--font-rob);
  margin-bottom: 5rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  padding: 1rem;
  gap: 0.5rem;
  border-radius: 1.5rem;
  background-color: rgb(194, 191, 191);
  box-shadow: 0 0 1.5rem 1rem rgba(0, 0, 0, 0.15);
}

.gallery-img {
  border-radius: 2rem;
  overflow: hidden;
  height: 20rem;
}

.gallery-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------- Analytics ------------ */

.analytics-container {
  display: flex;
  justify-content: space-around;
  padding: 5rem 0;
  border-radius: 1rem;
  box-shadow: 0 0 1.5rem 1rem rgba(0, 0, 0, 0.25);
  margin: 5rem 0 7rem;
}

.analytics-box {
  text-align: center;
}

.analytics-box h3 {
  margin-bottom: 1rem;
}

.analytics-box p {
  font-size: 1.2rem;
}

/* --------- Footer ------------ */

footer {
  background-color: #010129;
  padding: 7rem 0;
  text-align: center;
}

.footer-brand {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-mons);
}

.footer-brand span {
  color: #f98404;
}

.last-para {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
}
