/* ---- PRIMARY COLORS ----- */

/* Dark Green: #072523;
Green: #2B8A7F;
Gray: #edebf2;
White: #FAFAFA; */

/* ----- SECONDARY COLORS 

Date: #a67b72
List Border: #C3C2C8;
Hover: #33A38A;

----- */

/* ------- GLOBAL STYLE ------ */
* {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display";
}

@font-face {
  font-family: LilitaOne-Regular;
  src: url(/fonts/LilitaOne-Regular.ttf);
}

body {
  background-color: #fafafa;
}

header,
section {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

.shop-container,
.featured-container,
.news-container,
.footer-container {
  width: 960px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ------- END of GLOBAL STYLE ------ */

/* ------- NAVBAR STYLE ------ */

nav {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
}

.nav-container {
  width: 960px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  width: 300px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
}

.a-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #edebf2;
  transition-duration: 0.5s;
}

.a-link:hover {
  color: #33a38a;
}

#logo {
  width: 120px;
  height: auto;
  margin: 0 60px;
}

/* ------- END of NAVBAR STYLE ------ */

/* ------- HEADER STYLE ------ */

header {
  width: 100%;
  height: auto;
  background-image: radial-gradient(
      circle,
      rgba(43, 138, 127, 0.2) 0%,
      rgba(7, 37, 35, 0.5) 100%
    ),
    url(/img/home-hero-xl.jpg);
  min-height: 720px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
}

.header-container {
  width: 780px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.header-text {
  width: 640px;
  height: auto;
}

h1 {
  font-family: LilitaOne-Regular;
  font-size: 50px;
  font-weight: 900;
  font-style: normal;
  color: #fafafa;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.header-text h4 {
  font-size: 20px;
  color: #a67b72;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
}

.header-text p {
  font-size: 16px;
  color: #fafafa;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 40px;
}

.btn-hero {
  width: 140px;
  height: 40px;
  border-radius: 5px;
  border: none;
  color: #fafafa;
  background-color: #2b8a7f;
  cursor: pointer;
  transition-duration: 0.5s;
}

.btn-hero:hover {
  background-color: #33a38a;
}

/* ------- END of HEADER STYLE ------ */

/* ------- PRODUCT SECTION STYLE ------ */

.product-container {
  width: 960px;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
}

.product-img {
  width: 440px;
  height: auto;
}

.text-container {
  width: 440px;
  height: auto;
  display: block;
}

.text-container h2,
.text-shop h2,
.text-featured h2,
.text-news h2 {
  font-size: 64px;
  color: #072523;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 30px;
}

.text-container h4,
.text-shop h4,
.text-featured h4,
.text-news h4 {
  font-size: 20px;
  color: #2b8a7f;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 40px;
}

.text-container p,
.text-shop p {
  font-size: 16px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 50px;
}

.primary-btn {
  width: 140px;
  height: 40px;
  border-radius: 5px;
  border: none;
  color: #fafafa;
  background-color: #2b8a7f;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: #33a38a;
}

/* ------- END of PRODUCT SECTION STYLE ------ */

/* ------- FEATURED PRODUCTS SECTION STYLE ------ */

.text-shop,
.text-featured,
.text-news {
  width: 640px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.text-featured {
  margin-bottom: 80px;
}

.cards {
  width: 960px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.cards-featured {
  width: 960px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.card {
  width: 460px;
  height: auto;
  background-color: #edebf2;
  border-bottom: 5px solid #2b8a7f;
  padding-bottom: 30px;
}

.card-featured {
  width: 300px;
  height: auto;
  background-color: #edebf2;
  border-bottom: 5px solid #2b8a7f;
  padding-bottom: 30px;
  display: block;
}

.card-featured img {
  margin-bottom: 20px;
}

.text-card-featured {
  display: block;
  text-align: center;
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.text-card-featured .ratings {
  margin-bottom: 20px;
}

.text-card-featured h3,
.text-news-card h3 {
  font-size: 28px;
  color: #072523;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-card-featured p {
  font-size: 16px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 30px;
}

.text-card-featured span {
  font-size: 28px;
  color: #072523;
  font-weight: 800;
  font-style: normal;
}

.card img {
  width: 460px;
  height: auto;
  margin-bottom: 30px;
}

.card h3 {
  font-size: 28px;
  color: #072523;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-left: 20px;
}

.card p {
  font-size: 16px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  margin-left: 20px;
}

.card ul {
  width: 320px;
  height: auto;
  margin: 0 auto;
  list-style-type: none;
  margin-top: 40px;
}

.card ul li {
  width: 100%;
  height: 50px;
  border-top: 1px solid #c3c1c7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card ul li:last-child {
  border-bottom: 1px solid #c3c1c7;
}

.card ul li p {
  color: #2b8a7f;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
}

.card ul li span {
  color: #2b8a7f;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
}

/* ------- END of FEATURED PRODUCTS SECTION STYLE ------ */

/* ------ NEWS SECTION STYLE -----*/
.news-cards {
  width: 960px;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.text-news {
  margin-bottom: 80px;
}

.news-card {
  width: 640px;
  height: auto;
  background-color: #edebf2;
}

.text-news-card {
  width: 560px;
  height: auto;
  margin: 40px;
}

.text-news-card p {
  font-size: 14px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 15px;
}

.text-news-card a,
.event-card a {
  color: #2b8a7f;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  margin-top: 20px;
  text-decoration: none;
}

.text-news-card a:hover,
.text-news-card a:hover span {
  color: #33a38a;
}

.text-news-card a span,
.event-card a span {
  color: #2b8a7f;
  font-size: 30px;
  margin-left: 10px;
}

.event-cards {
  width: 300px;
  height: auto;
  background-color: #edebf2;
  border-top: 5px solid #2b8a7f;
}

.event-card {
  width: 220px;
  height: auto;
  margin: 30px 30px;
}

.event-card:first-child {
  padding-bottom: 30px;
  border-bottom: 1px solid #c3c1c7;
}

.event-card h4,
.text-news-card h4 {
  font-size: 14px;
  color: #a67b72;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.event-card h3 {
  font-size: 20px;
  color: #072523;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 20px;
}

.event-card p {
  font-size: 14px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 15px;
}

.event-card a {
  color: #2b8a7f;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  margin-top: 20px;
  text-decoration: none;
}

.event-card a:hover,
.event-card a:hover span {
  color: #33a38a;
}

.event-card a span {
  color: #2b8a7f;
  font-size: 30px;
  margin-left: 10px;
}

/* ------ END of NEWS SECTION -----*/

/* ------ RECIPE SECTION -----*/

.recipe-section {
  background-image: url(/img/recipe-bg-xl.png);
  min-height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
}

.recipe-container {
  width: 960px;
  height: auto;
  background-color: #edebf2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 5px solid #2b8a7f;
}

.recipe-first-card {
  width: 280px;
  height: auto;
  display: block;
}

.recipe-first-card .ratings {
  height: auto;
  margin: 0 auto 0px auto;
  text-align: right;
}

.recipe-icons {
  width: 160px;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-left: 100px;
}

.recipe-icons img {
  width: 30px;
  height: auto;
}

.recipe-first-card h2 {
  text-align: right;
  margin: 0 auto;
  font-size: 50px;
  color: #072523;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: capitalize;
}

.second-card-img {
  width: 280px;
  height: auto;
}

.list-container {
  width: 280px;
  height: auto;
  display: inline-block;
}

.list-container h3 {
  font-size: 28px;
  color: #072523;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 15px;
}

.list-container ul {
  margin-bottom: 40px;
  margin-left: 20px;
  margin-right: auto;
  width: 200px;
  height: auto;
}

.list-container ul li {
  font-size: 16px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}

.list-container p {
  width: 260px;
  font-size: 16px;
  color: #072523;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}

.list-container p span {
  font-size: 16px;
  color: #2b8a7f;
}

/* ------ END of RECIPE SECTION -----*/

/* ------ FOOTER SECTION -----*/

footer {
  width: 100%;
  height: auto;
}

.footer-banner {
  width: 100%;
  height: 200px;
  margin-top: 80px;
  border-top: 5px solid #2b8a7f;
  border-bottom: 1px solid #c3c1c7;
  background-color: #edebf2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-banner ul {
  width: 480px;
  height: 100%;
  border-right: 1px solid #c3c1c7;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-banner ul li {
  width: 100px;
  height: 100px;
  display: block;
  align-items: center;
  text-align: center;
}

.footer-banner ul li img {
  margin-bottom: 20px;
}

.form-container {
  width: 480px;
  height: auto;
}

.form-container h3 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 28px;
  color: #072523;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 20px;
}

form {
  width: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

form input {
  width: 280px;
  height: 38px;
  outline: none;
  border-color: #2b8a7f;
  border-style: solid;
  border: 1px 1px 0 1px;
  border-radius: 5px 0 0 5px;
  padding-left: 15px;
  margin-right: -1px;
}

form input::placeholder {
  color: #c3c1c7;
}

#btn-footer {
  width: 80px;
  height: 42px;
  border: 2px solid #2b8a7f;
  border-radius: 0 5px 5px 0;
  background-color: #2b8a7f;
  color: #fafafa;
  cursor: pointer;
}

#btn-footer:hover {
  background-color: #33a38a;
  border-color: #33a38a;
}

.footer-nav {
  width: 80%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav-left,
.footer-nav-right {
  width: 320px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style-type: none;
}

.footer-nav-left li a,
.footer-nav-right li a {
  text-decoration: none;
  color: #a67b72;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
}

.footer-nav img {
  width: 60px;
  height: auto;
  margin-left: 40px;
  margin-right: 40px;
}
