/* / Google Fonts Link / */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* / Colors / */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  /* / Font size / */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* / Font weight / */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* / Border radius / */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* / Site max width / */
  --site-max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}
/* 
/ Stylings for whole site / */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.logo a{
  max-width: 100%;
  display: block;
  color: var(--white-color);
  font-size: var(--font-size-xl);
}

:where(section, footer) .section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

section .section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}

section .section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background: var(--secondary-color);
  border-radius: var(--border-radius-s);
}

/* / Navbar styling / */
header {
  z-index: 5;
  width: 100%;
  position: fixed;
  background: var(--primary-color);
}

header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
    /* max-width: var(--site-max-width);  
  */

  max-width: 1200px;
}




.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
  gap: 10px;
  display: flex;
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color:var(--primary-color);
  /* 
   */
   background-color: var(--secondary-color)
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}

/* / Hero section styling / */




.container{
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;

}


.banner_row{
display: flex;
flex-wrap: wrap;
}

.col80{
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 15px;
}

.banner{ 
   position: relative; 
        
     background-image: url(images/coffee-hero-section.png); 
   
   background-repeat: no-repeat;
    /* background-size: cover;   */
  background-position: center;    
    /* min-height: 100vh;   */
background-color: #3b141c;
    height: 100vh;
  max-width: 100%; 
   left: 0;
  top: 0;
  /* opacity: 1;  */
  display: flex; 
  justify-content: center;
  align-items: center; 
   z-index: 1;
  object-fit: cover;
  
} 




 /* .banner   {
  height: auto;

  background: url(images/bg1.jpg);
  background-repeat: no-repeat;
   background-size: cover; 
  background-position: center center;   
    min-height: 100vh;  
 
  max-width: 100%;
  background-position: center;
  position: relative;
  background-size: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}    */

/* .banner-content {
  position: absolute;
  top: 17%;
  left: 5%;
}   */

.banner-content p {
  color: rgb(251, 244, 168);
  font-weight: 800;
  padding-bottom: 20px;
  letter-spacing: 1.5px;
  font-size: 30px;
}

.banner-content h2 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 53px;
  letter-spacing: 3px;
  font-weight: 600;
  color: white;
}

.banner-content .banner_label p {
  color: grey;
  font-size: 14px;
  padding-top: 10px;
}

.banner-content a {
  text-decoration: none;
  color: var(--white);
}




.banner-content button {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;  
}

.button{
  padding: 10px 26px;
display: block;
border: 2px solid transparent;
border-radius: var(--border-radius-m);
background: var(--secondary-color);
color: var(--primary-color);
font-size: var(--font-size-m);
font-weight: var(--font-weight-medium);
transition: 0.3s ease;
}


.buttons{


  display: flex;
  gap: 23px;
}

.button:hover,
.button.contact-us {
color: var(--white-color);
border-color: var(--white-color);
background: transparent;
}


.button.contact-us:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}



/* 

@media(max-width:991px){
  .banner_row > .col80{
      max-width: 100%;
      flex: 0 0 100%;
  }
}
@media(max-width:768px){
  .banner_row > .col80{
      max-width: 100%;
      flex: 0 0 100%;
  }

}
@media(max-width:575px){
  .banner_row{
      padding:0 50px;
  }
  .banner_row{
      max-width: 100%;
      flex: 0 0 100%;
  }

}
@media(max-width:480px){
  .banner_row{
      padding:0 20px;
  }


  .banner_row{
      max-width: 100%;
      flex: 0 0 100%    
  }
}
@media(max-width:375px){
  .banner_row > .col80{
      max-width: 100%;
      flex: 0 0 100%;
  }
  .banner_row{
      padding:0 10px;
  }


}

 */










.about_container{
  
 
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding:0 15px;
  width: 100%;
 
} 

.about_row{
	display: flex;
	flex-wrap: wrap;
}

.col80{
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}


.about-section {
  padding: 120px 0;
  background: var(--light-pink-color);
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.about-section .about-details {
  max-width: 50%;
}

.about-section .about-details .section-title {
  padding: 0;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: center;
  font-size: var(--font-size-m);
}

.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-l);
  transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
  color: var(--secondary-color);
}






.container{
  
 
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding:0 15px;
  width: 100%;

 
} 

.menu_row{
	display: flex;
	flex-wrap: wrap;
}

.col33{
  max-width: 33.33%;
  flex:0 0 33.33%;
  padding:0 15px;
}
.menu-image{
  max-width: 100%;
  height: auto;
}

/* 
/ Menu section styling / */
.menu-section {
  color: var(--white-color);
  background: var(--dark-color);
  padding: 50px 0 100px;
}

.menu-section .menu-list {
  display: flex;
/* gap:10px; */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.menu-section .menu-list .menu-item {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* width: calc(100% / 3 - 110px); */
}

.menu-section .menu-list .menu-item {
  width: 83%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: contain;
}

.menu-section .menu-list .menu-item .name {
  margin: 12px 0;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
  margin-left: 20px;
}

.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
  margin-left: 20px;
}

/* / Testimonials section styling / */
.testimonials-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}

.testimonials-section .testimonial {
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonials-section .testimonial .user-image {
  width: 180px;
  height: 180px;
  margin-bottom: 50px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
  line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
  color: var(--secondary-color);
  margin-top: -50px;
  transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
  color: var(--primary-color);
}

/* / Gallery section styling / */


.gallery_container{
  
 
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding:0 15px;
  width: 100%;

 
} 


.gallery_row{
	display: flex;
	flex-wrap: wrap;
}

.col33{
  max-width:33.33%;
  flex:0 0 33.33%;
  padding:0 15px;
}

.gallery-image{
  max-width: 100%;
  height: auto;
  /* margin-left: 35px; */
}


.gallery-section {
  padding: 50px 0 100px;
}

.gallery-section .gallery-list {
  display: flex;
  /* gap: 62px; */
  flex-wrap: wrap;
}

.gallery-section .gallery-list .gallery-item .gallery-image{
  overflow: hidden;
  border-radius: var(--border-radius-s);
   /* width: calc(100% / 3 - 32px);  */
}

.gallery-section .gallery-item {
  width: 100%;
  height: 100%;
  cursor: zoom-in;

}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.3);
}

/* / Contact section styling / */
.contact-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  font-size: var(--font-size-s);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
  max-width: 50%;
}

.contact-section .contact-form textarea.form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}

.contact-section .contact-form .form-input:focus {
  border-color: var(--secondary-color);
}

.contact-section .contact-form .submit-button {
  padding: 10px 28px;
  outline: none;
  margin-top: 10px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
  color: var(--primary-color);
  background: transparent;
}
/* 
/ Footer section styling / */
.footer-section {
  padding: 20px 0;
  background: var(--dark-color);
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--white-color);
  transition: 0.2s ease;
}

.copyright-text:hover{

  color:var(--secondary-color)

}

.copyright-text a{
  color:#ffffff;
}
.copyright-text a:hover{
  color:var(--secondary-color);
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
  color: var(--secondary-color);
}

.footer-section .policy-text .separator {
  color: #fff;
  margin: 0 5px;
}

/* / Responsive media query code for max width 1024px / */
/* @media screen and (max-width: 1024px) { */
  /* .menu-section .menu-list {
    gap: 60px;
  } */
/* 
  .menu-section .menu-list .menu-item {
    width: calc(100% /2- 2px);
  } */
/* 
} */
/* 
/ Responsive media query code for max width 900px / */
@media screen and (max-width: 991px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }

  body.show-mobile-menu {
    overflow: hidden;
  }

  body.show-mobile-menu header::before {
    content: "";
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: var(--font-size-l);

    display: block;
  }

  .navbar :is(#menu-open-button, #menu-close-button):hover {
    color: var(--secondary-color) !important;
  }

  .navbar #menu-open-button {
    color: #fff;
  }

  .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .navbar .nav-menu {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    transition: left 0.2s ease;
  }

  body.show-mobile-menu .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    display: block;
    margin-top: 17px;
    padding: 10px 22px;
    color: var(--dark-color);
    font-size: var(--font-size-l);
  }

  .banner .section-content {
    text-align: center;
    gap: 50px;
    padding: 30px 20px 20px;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .banner .banner-content :is(.subtitle, .description),
  .about-section .about-details,
  .contact-section .contact-form { 
 
    max-width: 100%;
  }

  .banner .banner-content .buttons {
    justify-content: center;
  }

  .banner .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
  }

  .about-section .section-content {
    gap: 70px;
    flex-direction: column-reverse;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    max-width: 100%;
  }
/* 
  .menu_row > .col33{
    max-width: 33.33%; 
    flex: 0 0 33.33%;
} */

   .menu-section .menu-list {
    gap: 30px;
  } 

   /* .menu-section .menu-list .menu-item {
   
    width: calc(100%/2 - 2px);
  }  */

  .menu-section .menu-list .menu-item .menu-image {
    max-width: 100%;
  }

  /* .gallery-section .gallery-list {
    gap: 30px;
  } */

   /* .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }  */

  .contact-section .section-content {
    align-items: center;
    flex-direction: column-reverse;
  }
}

/* / Responsive media query code for max width 640px / */
@media screen and (max-width: 640px) {

  .menu-section .menu-list .menu-item,
  .gallery-section .gallery-list .gallery-item,.gallery-image{
    max-width: 100%;
  }


   /* .menu-section .menu-list {
    gap: 60px;
  }  */

  .testimonials-section .slider-wrapper {
    margin: 0 0 30px;
  }

  .testimonials-section .swiper-slide-button {
    display: none;
  }

  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
}