  /* Global */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url('../img/Header\ background\ img.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
  }


  header #logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }

  div.header-content {
    margin-top: 20vh;
    text-align: center; 
    line-height: 30px;
  }

  div.header-paragraph {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  header ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header ul li {
    list-style-type: none;
    margin: 0 20px;
  }

  header ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    word-spacing: 10px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
  }

  header ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
  }


  /* coffee */
  #heading {
    font-size: 25px;
    text-align: center;
    margin-top: 210px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: underline;
  }

  .coffee-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 70px;
    padding: 0 20px;
  }

  .coffee-cup {
    border: 2px solid gray;
    width: 195px;
    height: auto;
    margin: 0 5px;
    text-align: center;
    border-radius: 10px;  
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url('../img/body\ img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 50px;
    color: #fff;
    transition: all 0.5s ease;
  }


  .coffee-cup:hover {
    transform: scale(1.05);
    cursor: pointer;
  }

  .coffee-cup img {
    width: 200px;
    height: 200px;
    position: relative;
    top: -70px;
  }

  .coffee-cup h2 {
    margin-top: -70px;
  }

  .coffee-cup p {
    font-size: 13px;
    padding: 10px;
  }

  
/* img text */
.img-text {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top:20px;
  padding: 0 20px;
  color: #fff;
  text-align: justify;
  
}

.img-text img {
  width: 350px;
  height: auto;
}

.img-text p {
  font-size: x-large;
  font-weight: 500;
  padding: 30px 30px;
  text-align: justify;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)); 
  border-radius: 5px;
}

/* cold coffee section */
.cold-coffee-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 90px;
 
}


.cold-coffee {
  border: 5px solid #fff;
  width: 200px;
  height: auto;
  margin: 0 5px;
  text-align: center;
  color: black;
  background-color: rgba(185, 117, 83, 0.583);
  margin-bottom: 70px;
  transition: all 0.5s ease;
}

.cold-coffee:hover {
  transform: translateY(-10px)
}

.cold-coffee img {
  padding: 30px 0;
  width: 100px;
  height: 150px;
}

.cold-coffee .text-body {
  background-color: #fff;
  padding: 12px;
}

.cold-coffee.text-body h4 {
  font-size: 20px;
}

/* beans section */
.beans-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 130px;
}

.beans-container div {
  text-align: center;
  width: 200px;
  height: 230px;
  margin: 0 5px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid rgba(219, 218, 217, 0.589);
  box-shadow: 2px 2px 10px 10px rgba(77, 48, 34, 0.589);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  margin-bottom: 70px;
  transition: all 0.5s ease;
}

.beans-container div:hover {
  transform: translateY(-10px);
}


.beans-container div img {
  width: 185px;
  position: relative; 
  top: -120px; 
}

.beans-container div p {
  margin-top: -120px;
  font-size: 18px;
}

/* footer */
footer {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/footer bg img.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-evenly;
  margin-top: 150px;
  padding-top: 50px;
  color: #fff;
}

footer ul {
  margin-bottom: 20px;
}

footer h4 {
  margin-bottom: 20px;
}

footer ul li {
  list-style-type: none;
  padding: 5px 0;
}

footer img {
  width: 30px;
  height: 30px;
}


  /* Responsiveness */
  
  /* Beans section */
  @media (max-width: 860px) {
  .beans-container div {
    margin: 60px 60px;
  }
}

  /* text img section*/
  @media (max-width: 785px) {
    .img-text {
      display: flex;
      justify-content: center;
      flex-direction: column;
    }
    .img-text p {
      margin-top: 30px;
    }
    header ul li a {
     padding: 10px;
     font-size: 14px;
    }
  }

  /* header section */
  @media (max-width: 750px) {
    header ul li  {
      margin: 0 6px;
    }


    div.header-paragraph {
      font-size: 14px;
    }

    /* footer */
    footer ul li {
      font-size: small;
    }

  }


  /* header Section */
  @media (max-width: 610px) {
    div.header-paragraph {
      margin-top: -100px;
    }

    header ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    header ul li {
      padding-top: 25px;
    }
  }


  /* footer */
  @media (max-width: 480px) {
    footer {
      width: 100%;
      margin-top: 100px;
      padding-bottom: 30px;
    }
    footer ul li {
      font-size: 1.3vh;
    }
    footer h4 {
      font-size: 1.6vh;
    }
    footer img {
      width: 25px;
      height: 25px;
    }
  }

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




