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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #eacdbd;
  font-family: "Inter", sans-serif;
}

h2.subtitle {
  color: #250f05;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

p.desc {
  color: #513f37;
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

header {
  position: relative;
  width: 100%;
  height: 85px;
}

header img {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 0;
  top: 10px;
}

header nav ul {
  position: absolute;
  right: 80px;
  top: 40px;
  list-style: none;
}

header nav li {
  display: inline-block;
  margin-right: 60px;
}

header nav li a {
  color: #250f05;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

header button {
  position: absolute;
  right: 35px;
  top: 30px;
  color: #250f05;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
}

main .hero {
  position: relative;
  width: 100%;
}

main .hero img {
  width: 100%;
  height: 650px;
}

main .hero h1 {
  position: absolute;
  top: 160px;
  left: 70px;
  color: #eacdbd;
  font-size: 49px;
  font-weight: 100;
  line-height: 1;
  text-transform: uppercase;
}

main .hero h1 span {
  font-size: 120px;
  font-weight: bold;
}

main .hero a {
  position: absolute;
  bottom: 170px;
  left: 70px;
  color: #250f05;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
}

main .hero a:hover {
  color: #eacdbd;
  background-color: #3b271e;
}

main .categories {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  text-align: center;
}

main .categories .drinks {
  display: inline-block;
  margin: 0 20px;
  width: 360px;
  height: 300px;
  border-radius: 30px;
  padding: 90px 0;
}

main .categories #mocha {
  background: url("images/Mocha-1fc71f7.png");
  background-size: cover;
  background-position: center;
  background-color: #878787;
  background-blend-mode: multiply;
}

main .categories #americano {
  background: url("images/522979505-shutterstock_197353647811.jpg");
  background-size: cover;
  background-position: center;
  background-color: #878787;
  background-blend-mode: multiply;
}

main .categories #cappuccino {
  background: url("images/coffee.png");
  background-size: cover;
  background-position: center;
  background-color: #878787;
  background-blend-mode: multiply;
}

main .categories .drinks .name {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

main .categories .drinks .more {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 100;
  text-decoration: none;
  text-transform: capitalize;
  margin-top: 50px;
}

main .shakes {
  position: relative;
  width: 100%;
  padding: 80px 0 0;
  text-align: center;
}

main .shakes .buy-shake {
  display: inline-block;
  margin: 0 20px;
  width: 300px;
  height: 360px;
  border-radius: 30px;
  background-color: rgba(113, 101, 103, 0.2);
  padding: 20px 15px;
}

main .shakes .buy-shake .likes {
  width: 116px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 20px;
}

main .shakes .buy-shake .likes .like {
  color: #6e6061;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

main .shakes .buy-shake .likes p {
  display: inline;
  color: #6e6061;
  font-size: 18px;
  font-weight: 100;
}

main .shakes .buy-shake img {
  width: 150px;
  height: 170px;
}

main .shakes .buy-shake .name {
  color: #250f05;
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 10px 0 25px;
}

main .shakes .buy-shake .price {
  display: inline-block;
  color: #250f05;
  font-size: 24px;
  font-weight: 500;
  margin-right: 20px;
}

main .shakes .buy-shake .buy-now {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #6e6061;
  padding: 6px 30px;
  border-radius: 20px;
}

main .shakes .buy-shake .buy-now:hover {
  background-color: #635657;
}

main .blogs {
  position: relative;
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

main .blogs .articles {
  display: inline-block;
  text-align: left;
  width: 350px;
  padding: 15px;
  border-radius: 30px;
  background-color: rgba(113, 101, 103, 0.2);
  margin: 0 10px;
}

main .blogs .articles img {
  width: 100%;
  height: 210px;
  border-radius: 20px;
  margin-bottom: 20px;
}

main .blogs .articles h3 {
  color: #250f05;
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 5px;
}

main .blogs .articles .article-text {
  color: #513f37;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}

main .blogs .articles .more {
  display: inline-block;
  color: #513f37;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  background: rgba(113, 101, 103, 0);
  box-shadow: 0px 0px 10px #fff;
  backdrop-filter: blur(20px);
  margin: 5px 0;
}

footer {
  position: relative;
  width: 100%;
  padding: 30px 100px;
  background: #1e1e1e;
}

footer .footer-columns {
  position: relative;
  width: 100%;
  padding: 40px 0 10px;
  border-top: 2px solid #fff;
}

footer .footer-columns .column {
  display: inline-block;
  vertical-align: top;
  margin: 0 62px;
}

footer .footer-columns .column .title {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 30px;
}

footer .footer-columns .column ul {
  list-style: none;
}

footer .footer-columns .column li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 30px;
}

footer .footer-columns .column li .socials {
  display: inline-block;
  color: #eacdbd;
  font-size: 30px;
  margin-bottom: 10px;
}

footer .terms {
  width: 100%;
  background: linear-gradient(
    to left,
    rgba(128, 101, 90),
    rgba(128, 101, 90, 0.3)
  );
  padding: 15px;
  text-align: center;
}

footer .terms ul li {
  display: inline-block;
  list-style: none;
}

footer .terms ul a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  margin: 0 20px;
}
