@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: black;
    color: white;

}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.current {
  border-bottom: 1px solid white;
}


.links li a {
  position: relative;
}

.links li a::before,
.links li a::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 26%;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease-out;
}

.links li a::before {
  transform: translateX(-50%);
}

.links li a::after {
  transform: translateX(50%);
}

.links li a:hover::before,
.links li a:hover::after {
  width: 50%;
}
/* header */

header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        z-index: 999;
      }

.navbar {
    width: 100%;
    height: 80px;
    padding: 0 3rem;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Add this */
    justify-content: space-between;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
    
}
 header .white {
    background-color: rgb(7, 7, 7);
  }

.logo {
    display: flex; /* Add this */
    align-items: center;
}

.logo img {
    width: 12rem; /* Adjust this to the desired width */
    padding-top: 1.8rem;
}



.navbar .links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;

}

.navbar .links i {
  padding-top: 0.5rem;
}


.navbar .toggle_btn {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: rgb(0, 48, 74);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}

.action_btn:hover{
  color: rgb(0, 58, 105);
  background-color: white;
  transition: 1s;
}



/* drop menu */
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 100%;
    overflow: hidden;
  }

  /* main */
    .wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url(images/hero.webp);
    height: 110vh;
	background-size: cover;
	background-position: center center;
	position: relative;
    margin-top: -5rem;
    padding-top: 21rem;
    }

    .text {
        text-align: center;
     }
     .text h1 {
         color: #fff;
         font-size: 120px;
         font-family: 'Tangerine', cursive;
       /*  color: #819aa1; */
       color: rgba(233, 233, 233, 0.931);
         font-weight: 100;
     }
     
     .text h2 {
        color: rgba(233, 233, 233, 0.931);
         font-weight: 100;
         font-size: 20px;
         font-family: Montserrat;
     }
     
     .text p {
      color: rgba(233, 233, 233, 0.931);
      font-weight: 100;
      font-size: 18px;
      font-family: Montserrat;
     }

     .text .button {
         border: 1px solid #fff;
         padding: 10px 25px;
         text-decoration: none;
         text-transform: uppercase;
         font-size: 14px;
         margin-top: 20px;
         display: inline-block;
         color: rgba(233, 233, 233, 0.931);
     }
     
     .text .button:hover {
      background-color: black;
     }

     /*cards*/
     .card-container {
        display: flex;
        justify-content: space-between;
        border: 1px solid whitesmoke;
      }
      
      .card, .card2, .card3 {
        width: 35%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        padding: 25px;
        height: 200px;
        
      }
      .card {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url(images/_chief_\ .webp);
        background-position: right;
        background-size: cover;
        border-right: 1px solid whitesmoke;
      }
      .card2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url(images/bookus.webp);
        background-position: right;
        background-size: cover;
        border-right: 1px solid whitesmoke;
      }

      .card3 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.486)), url(images/services2.webp);
        background-position: right;
        background-size: cover;
      }


      
      .card h2, .card2 h2, .card3 h2 {
        display: flex;
        justify-content: center;
      }

      .card h2 {
        margin-top: 50px;
        font-size: 30px;
        font-weight: 100;
        font-family: Montserrat;
        
      }
      
      .card2 h2 {
        margin-top: 50px;
        font-size: 30px;
        font-weight: 100;
        font-family: Montserrat;
      }
      
      .card3 h2 {
        margin-top: 50px;
        font-size: 30px;
        font-weight: 100;
        font-family: Montserrat;
      }
      
      .card h2,
.card2 h2,
.card3 h2 {
  transition: all 0.3s ease-in-out;
}

.card h2:hover,
.card2 h2:hover,
.card3 h2:hover {
  transform: scale(0.9);
}
    
/*menu*/
.products {
    display: flex;
    justify-content: space-around;
    padding: 5rem;
    margin-top: 5rem;
  }

  .logo_menu {
    position: absolute;
    margin-top: -7rem;
    width: 35%;
    
  }

  .logo_menu i  {
    margin: 1rem;
    display: flex;
    justify-content: center;
    }

    .logo_menu h1 {
        margin-top: 2rem;
        font-size: 3rem;
        font-family: 'Tangerine', cursive;
        display: flex;
        justify-content: center;
    }

  .logo_menu p {
    margin: 0.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 10px;
    font-family: Montserrat;
  }
  
  .coffee, .espresso, .tea {
    width: 30%;
    margin-top: 1.5rem;
  }
  
  
  
  
  /* Add styles to the product prices */
  .prices span {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Add styles to the product descriptions */
  .description {
    margin-bottom: 10px;
    color: rgb(222, 222, 222);
    padding: 2px 0;
    font-style: italic;
    
  }

  .description p {
    font-size: 14px;
  }
  
  /* Swap the order of tea and espresso */
  .coffee {
    order: 1;
  }
  
  .tea {
    order: 2;
  }
  
  .espresso {
    order: 2;
  }
  
.products dt {
    font-weight: bold;
}

.products h2 {
    font-size: 2rem;
}
  
  svg {
    margin-right: 5px;
    fill: white;
  }

  .prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #50413a;
    padding: 0px 0px;
  }
  
  .prices span {
    padding: 1rem;
  }
  
  .prices i {
    padding: 3px;
  }

/* Responsiveness:End */

  
  /*footer*/
  footer {
    background-color: #121212;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  footer .text_footer {
    max-width: 500px;
    margin: auto;
  }
  
  footer .text_footer h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19px;
    letter-spacing: 1.9px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  footer .text_footer .fa-asterisk {
    font-size: 12px;
    display: grid;
    place-items: center;
    margin: 1rem;
  }
  
  footer .text_footer p {
    line-height: 27px;
    font-size: 13px;
    text-align: center;
  }
  
  footer .contact-container {
    padding: 40px 0;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  

  footer .contact-container > div {
    flex: 1;
  }
  
  footer .contact-container h3 {
    font-size: 19px;
    letter-spacing: 1.9px;
    text-align: center;
    margin-bottom: 10px;
  }

  footer .social-media .links a {
   
    margin: 0 10px;
    font-size: 25px;
    margin-right: 18px;
  }

  
  a i.fab.fa-instagram {
    position: absolute;
    margin-top: 13px;
    font-size: 29px;
  }
  
  
  footer .newsletter input {
    padding: 10px;
    width: 270px;
    background-color: #eee;
    border: none;
    margin-left: -15px;
  }
  
  
  
  /* Copyright */
  
  .copyright {
    padding: 10px 30px 20px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .copyright a {
    font-size: 10px;
  }
  
  
  .info {
    display: flex;

  }
  
  .svg-up {
    display: grid;
    place-items: center;
     margin-top: -44px;
     
   }
   
   .svg-up path {
     fill: black;
   }
   
   .arrow-up {
     position: absolute;
     margin-left: -6px;
     margin-top: -2.7rem;
     color: #fff;
     
   }
  
  .info ul {
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    color: #919191;
    font-size: 14px;
    margin: 0 10px;
  }
  

  /*
  .coffee + .espresso:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0.009) 100%);
    margin: 20px 0;
  }
  
  .tea + .bakery:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.139) 0%,rgba(255, 255, 255, 0.632) 50%,rgba(255,255,255,0) 100%);
    margin: 20px 0;
  }
  8?

  

/* responsive navbar */

@media(max-width:1024px) {
    
    .navbar {
        padding: 0 2rem;
       
    }
    .navbar .logo img {
        width: 9rem;
        position: relative;
        left: -2.4rem; /* Adjust this value */
    }
    
    .navbar .fa-brands{
        display: none;
    }
      
  .navbar .links,
  .navbar .action_btn {
      display: none;
  }

  .navbar .toggle_btn {
      display:block;
  }
  
  

  .dropdown_menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  /*
  background: rgba(0, 0, 0, 0.602);
  backdrop-filter: blur(2rem);*/
  background: black;
  font-size: 1rem;
  transition: var(--animation-smooth);
  width: 90vw;
}

  .dropdown_menu a {
    font-size: 1rem;
  }
  .dropdown_menu.open {
    height: 100vh;
    flex-direction: column;
    padding: min(20vh, 10rem) 2em;
}

.dropdown_menu li {
  padding: 1rem;

}

.toggle_btn{
  z-index: 1;
  margin-top: 9px;
}

.dropdown_menu:before {
  content: "";
  display: block;
  height: 1px;
  width: 70%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0.009) 100%);
  margin: 20px 0;
}

.dropdown_menu ul::after {
  content: "";
  display: block;
  height: 1px;
  width: 70%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0) 100%);
  margin: 20px 0;
}


/*nav footer*/
.contact-footer {
  width: 100%;
  max-width: 200px; /* replace with your desired max width */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0.5rem;
}

.contact-footer h3 {
  font-size: 17px;
  padding-left: 1rem;
  margin: 0.5rem;
}

.links_footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.links_footer a {
  margin: 0 1rem;
  font-size: 18px;
}

.links_footer a i.fab.fa-instagram {
  margin-top: -2px;
  margin-left: -3px;
  font-size: 22px;
}


/* wrapper */
.wrapper {
    height: 35rem;
}

.text {
    margin-top: -6rem;
}

.text h1, h2, p {
    font-size: 4rem;
}

/*cards*/
.card-container {
    flex-direction: column;
    align-items: center;
  }

  .card, .card2, .card3 {
    width: 100%;
    border-bottom: 1px solid whitesmoke;
    border-right: none;
    height: 10.5rem;
  }

/*menu*/
    .products {
      display: block;
      padding: 1rem;
    }

    .logo_menu {
        position: relative;
        padding-top: 3rem;
        padding-bottom: 1rem;
        width: 100%;
        
    }
    
    .coffee, .espresso, .tea {
      width: 100%;
      margin-bottom: 2rem;
    }

  .espresso:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0.009) 100%);
    margin: 20px 0;
  }

  .coffee:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0.009) 100%);
    margin: 20px 0;
  }
    .tea:before {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%,rgba(255, 255, 255, 0.751) 50%,rgba(255, 255, 255, 0.009) 100%);
        margin: 20px 0;
      }
    
      /*footer*/
      footer {
        padding: 30px 20px;
      }
      
      footer .text_footer h2 {
        font-size: 13px;
        margin-bottom: 20px;
      }
      
      footer .text_footer .fa-asterisk {
        font-size: 10px;
      }
      
      footer .text_footer p {
        line-height: 24px;
      }
      
      footer .contact-container {
        padding: 20px 0;
      }
      
      footer .contact-container h3 {
        font-size: 16px;
        margin-bottom: 10px;
      }
      
      footer .social-media .links a {
        font-size: 20px;
        margin-right: 10px;
      }
      
      a i.fab.fa-instagram {
        font-size: 25px;
      }
      
      footer .newsletter input {
        width: 200px;
      }
      footer .text_footer p {
        font-size: 10px;
        margin: 1.2rem;
      }

      .info li {
        font-size: 9px;
      }
    
}


/*Page Loader*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1.5s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
  transition-delay: 1.5s;
}

#loader img {
  width: 200px;
  height: 200px;
  animation: breathe 1.5s ease-out forwards;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

#main-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 1.4s ease;
  transition-delay: 1.4s;
}

body:not(.loading) #main-content {
  opacity: 1;
  visibility: visible;
}