* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

#home {
  background-color: black;
  width: 100%;
  height: 100vh;
  position: relative;
}
.front {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 190, 116, 0.884);
  position: absolute;
}
nav {
  display: flex;
  width: 100%;
  height: 20%;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 2;
}
nav h1 {
  font-size: 2rem;
  color: aliceblue;
}
.navItems {
  transition: all 0.2s ease;
  display: flex;
  gap: 1.5rem;
}

.navItems a {
  transition: color 200ms ease, transform 200ms ease;
  position: relative;
}

.navItems a:hover {
  color: rgb(255, 190, 116);
  transform: translateY(-4px);
}

.navItems a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: rgb(255, 190, 116);
  transition: width 200ms ease;
}

.navItems a:hover::after {
  width: 100%;
}
.navItems a {
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: aliceblue;
}
.menuBtn {
  display: none;
  position: absolute;
  right: 17em;
  top: 5em;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menuBtn .bar {
  width: 25px;
  height: 3px;
  background-color: aliceblue;
  border-radius: 5px;
}


.front {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.front h1 {
  font-size: 16rem;
  color: antiquewhite;
}
#coffeeCan {
  width: 15vw;
  height: auto;
  position: fixed;
  z-index: 9999;
  filter: drop-shadow(2px 2px 10px black);
}
#coffeeBean1, #coffeeBean2, #coffeeBean3, #coffeeBean4, #coffeeBean5 {
  width: 15vw;
}
#coffeeCan {
  width: 15%;
  height: 80%;
  position: absolute;
  z-index: 9999;
  filter: drop-shadow(2px 2px 10px black);
}

#coffeeBean1 {
  width: 15%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  top: 4%;
  left: 32%;
  transform: rotate(20deg);
}
#coffeeBean2 {
  width: 15%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  top: 67%;
  left: 53%;
  z-index: 2;
  transform: rotate(20deg);
}
#coffeeBean3 {
  width: 15%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  top: 37%;
  left: 20%;
  transform: rotate(130deg);
}
#coffeeBean4 {
  width: 15%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  top: 32%;
  left: 70%;
  transform: rotate(120deg);
}
#coffeeBean5 {
  width: 15%;
  position: absolute;
  filter: drop-shadow(2px 2px 10px black);
  top: 12%;
  left: 58%;
  transform: rotate(30deg);
}

/* About start */
#about {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  display: flex;
  position: relative;
  z-index: -1;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 20px;
}
.card {
  width: 26%;
  height: 70%;
  border-radius: 2rem;
  background-color: rgb(241, 241, 241);
  box-shadow: 0px 0px 20px 1px grey;
}
.para {
  width: 70%;
  height: 60%;
  font-size: 2vw;
  color: antiquewhite;
}

.menu {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  display: flex;
  position: relative;
  z-index: -1;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 20px;
}

#cocaCan,
#fantaCan {
  top: -60px;
  width: 99%;
  height: 93%;
  position: absolute;
  z-index: 50;
  filter: drop-shadow(2px 2px 10px black);
}

.card1,
.card2,
.card3 {
  width: 25%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bean1 {
  width: 50%;
  position: absolute;
  top: 200px;
  left: -2px;
  rotate: 30deg;
  z-index: 30;
}
#bean3 {
  width: 50%;
  position: absolute;
  top: 200px;
  left: 180px;
  rotate: 140deg;
  z-index: 30;
}

/* Contact section */

#contact {
  width: 100%;
  height: 100vh;
  background-color: rgb(185, 138, 83);
  display: flex;
  position: relative;
  z-index: -9;
  align-items: center;
  justify-content: start;
  padding: 40px;
  gap: 20px;
}
.form {
  width: 40%;
  height: 60%;
  background-color: rgba(240, 248, 255, 0.678);
  display: flex;
  gap: 3%;
  position: absolute;
  top: 125rem;
  left: 5rem;
  z-index: 20;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 1px 1px 20px saddlebrown;
}
.form input,
.form textarea,
.form button {
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

/* inputs & textarea hover/focus */
.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  background: rgba(185, 138, 83, 0.12);
  border-color: rgb(255, 190, 116);
  color: aliceblue;
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(185, 138, 83, 0.06);
}

/* button hover */
.form button:hover,
.form button:focus {
  background: rgb(185, 138, 83);
  color: aliceblue;
  border-color: rgb(255, 190, 116);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(185, 138, 83, 0.25);
  cursor: pointer;
}
.form input {
  width: 80%;
  height: 10%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
  background: transparent;
  border: 2px solid rgb(185, 138, 83);
  color: rgb(185, 138, 83);
}
.form textarea {
  width: 80%;
  height: 32%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
  background: transparent;
  border: 2px solid rgb(185, 138, 83);
  color: rgb(185, 138, 83);
}
.form h1 {
  position: absolute;
  top: -79px;
  font-size: 4rem;
  text-shadow: 10px 10px 50px black;
  margin-bottom: 20px;
  color: aliceblue;
  -webkit-text-stroke: 2px rgb(185, 138, 83);
}
.form button {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  background: transparent;
  border: 2px solid rgb(185, 138, 83);
  color: rgb(185, 138, 83);
}

footer {
  position: absolute;
  bottom: 1em;
}
footer p {
  color: black;
  font-size: 2em;
}