/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Saira:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

/*========== Colors ==========*/
/*Color mode HSL(hue, saturation, lightness)*/
--first-color: hsl(25, 60%, 40%);        /* Nâu cà phê chính */
--first-color-alt: hsl(25, 55%, 35%);    /* Nâu đậm hơn cho hover */
--title-color: hsl(25, 70%, 20%);        /* Nâu sẫm cho tiêu đề */
--text-color: hsl(25, 15%, 35%);         /* Nâu xám nhẹ cho nội dung */
--white-color: hsl(0, 0%, 100%);         /* Trắng tinh khiết */
--dark-color: hsl(25, 65%, 15%);         /* Nâu rất đậm */
--body-color: hsl(30, 62%, 80%);         /* Be sáng cho nền */
--body-white-color: hsl(0, 0%, 100%);    /* Trắng nền phụ */
--body-first-color: hsl(25, 60%, 40%);   /* Nâu chủ đạo */


  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", serif;
  --second-font: "Saira", serif;
  --biggest-font-size: 4.5rem;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 9.5rem;
    --big-font-size: 4rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  line-height: 110%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 4rem;
}

.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  transition: box-shadow 0.4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--font-semi-bold);
  transition: color 0.4s;
}
.nav__logo:hover {
  color: var(--first-color);
}

.nav__close,
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    width: 100%;
    top: -120%;
    left: 0;
    background-color: var(--body-color);
    padding-block: 4rem;
    box-shadow: 0 8px 16px hsla(166, 85%, 8%, .3);
    transition: top .4s;
  }
}

.nav__list{
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link{
  color: var(--white-color);
  font: var(--font-medium) var(--h1-font-size) var(--second-font);
  line-height: 110%;
  transition: color .4s;
}
.nav__link:hover{
  color: var(--first-color);
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
/* Show menu */
.show-menu{
  top: 0;
}
/* Add shadow header */
.shadow-header{
  box-shadow: 0 4px 16px hsla(25, 60%, 40%, .3);
}
/* Active link */
.active-link{
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home__container{
  position: relative;
  padding-top: 3rem;
  row-gap: 0;
}

.home__title{
  color: var(--white-color);
  font-size: var(--biggest-font-size);
  font-weight: var(--font-semi-bold);
  text-align: center;
}

.home__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}
.home__shape{
  width: 280px;
  height: 280px;
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.home__images img{
  position: absolute;
}

.home__coffee{
  width: 160px;
  top: -3.5rem;
  rotate: 10deg;
}

.home__splash{
  max-width: initial;
  width: 350px;
  rotate: 10deg;
  left: -3rem;
  bottom: .5rem;
}

.home__bean-1,
.home__bean-2{
  width: 40px;
}

.home__bean-1{
  top: 1.5rem;
  left: 1.5rem;
}

.home__bean-2{
  right: 3.5rem;
  bottom: 6.5rem;
  rotate: -90deg;
  filter: blur(2px);
}
.home__ice-1{
  width: 50px;
  left: 1.5rem;
  bottom: 3rem;
}

.home__ice-2{
  width: 40px;
  top: 4rem;
  right: 1.25rem;
  rotate: 60deg;
}

.home__leaf{
  width: 50px;
  right: 6rem;
  bottom: -1rem;
  rotate: -15deg;
}

.home__sticker{
  position: absolute;
  width: 50px;
  right: 0.5rem;
  top: 31rem;
  rotate: 15deg;
}

.home__data{
  margin-top: 2.5rem;
  text-align: center;
}

.home__description{
  color: var(--white-color);
  margin-bottom: 1.5rem;
}
/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: background .4s, box-shadow .4s;
}

.button:hover{
  background-color: var(--first-color-alt);
  box-shadow: 0 8px 24px hsla(25, 60%, 40%, .3);
}

.button-dark{
  background-color: var(--dark-color);
}

.button-dark:hover{
  background-color: var(--dark-color);
}
/*=============== POPULAR ===============*/
.popular{
  background-color: var(--body-white-color);
}

.popular .section__title{
  color: var(--title-color);
}

.popular__swiper{
  padding-top: 1.5rem ;
}

.popular__card{
  width: 270px;
  display: grid;
  row-gap: 1.5rem;
}

.popular__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.popular__shape{
  width: 195px;
  height: 195px;
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.popular__images img{
  position: absolute;
}

.popular__coffee{
  width: 130px;
  top: -1.5rem;
}

.popular__coffee-chua{
  width: 130px;
  top: -2.9rem;
}

.popular__bean-1{
  width: 30px;
  top: 3rem;
  left: 0.5rem;
  transition: transform .5s .1s;
}

.popular__bean-2{
  width: 20px;
  right: 2rem;
  bottom: 2rem;
  rotate: 75deg;
  filter: blur(1px);
  transition: transform .5s .1s;
}

.popular__data{
  text-align:center;
}

.popular__name{
  font-size: var(--h1-font-size);
  color:var(--title-color);
  margin-bottom: .5rem;
}

.popular__description{
  margin-bottom: 1rem;
}

.popular__card:hover .popular__bean-1,
.popular__card:active .popular__bean-1{
  transform: translate(-.5rem, -.25rem);
}

.popular__card:hover .popular__bean-2,
.popular__card:active .popular__bean-2{
  transform: translate(.5rem, -.25rem);
}

/* Touch devices do not have true hover, so animate the focused slide */
@media (hover: none){
  .popular .swiper-slide-active .popular__bean-1{
    transform: translate(-.5rem, -.25rem);
  }

  .popular .swiper-slide-active .popular__bean-2{
    transform: translate(.5rem, -.25rem);
  }
}

/* Swiper class */
.swiper{
  overflow: hidden;
}

.swiper-slide{
  height: auto;
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 3rem;
}

.about__data{
  text-align: center;
}

.about .section__title,
.about__description{
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.about__images{
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.about__shape{
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.about__images img{
  position: absolute;
}

.about__coffee{
  width: 280px;
  filter: drop-shadow(0 8px 16px hsla(25, 60%, 40%, .5));
}

.about__leaf-1,
.about__leaf-2{
  width: 50px;
}

.about__leaf-1{
  top: 0.5rem;
  left: 3.5rem;
  rotate: -105deg;
}
.about__leaf-2{
  top: 7.5rem;
  right: 2.5rem;
  rotate: -15deg;
}
/*=============== PRODUCTS ===============*/
.products{
  background-color: var(--body-first-color);
}

.products .section__title{
  color: var(--dark-color);
}

.products__container{
  grid-template-columns: repeat(2, 1fr);
}

.products__card{
  position: relative;
  background-color: var(--dark-color);
  padding: 1rem .5rem 1.25rem;
}

.products__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.products__shape{
  width: 120px;
  height: 120px;
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.products__images img{
  position: absolute;
}

.products__coffee{
  width: 80px;
  top: 0;
  transition: transform .4s;
}

.products__ice-1{
  width: 30px;
  left: 0.5rem;
  bottom: 0;
  transition: transform .5s .1s;
}

.products__ice-2{
  width: 20px;
  top: 3.25rem;
  right: 0.75rem;
  rotate: 60deg;
  transition: transform .5s .1s;
}

.products__data{
  margin-top: 1.25rem;
}

.products__name{
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: .75rem;
}

.products__price{
  color: var(--first-color);
  font-weight: var(--font-medium);
  font-weight: var(--font-medium);
}

.products__button{
  position: absolute;
  right: 0.5rem;
  bottom: 1.25rem;
  width: 32px;
  height: 32px;
  background-color: var(--first-color);
  color: var(--dark-color);
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px hsla(25, 60%, 40%, .3);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.products__card:hover .products__coffee{
  transform: translateY(-0.5rem);
}

.products__card:hover .products__ice-1{
  transform: translate(-0.25rem, -0.25rem);
}
.products__card:hover .products__ice-2{
  transform: translate(-0.25rem, -0.25rem);
}
/*=============== CONTACT ===============*/
.contact .section__title{
  color: var(--title-color);
}

.contact__container,
.contact__info{
  row-gap: 2rem;
}

.contact__info{
  color: var(--white-color);
  text-align: center;
}

.contact__title{
  font-size: var(--h1-font-size);
  margin-bottom: .5rem;
}

.contact__social{
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link{
  color: var(--first-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.contact__social-link:hover{
  transform: translateY(-0.25rem);
}

.contact__address{
  font-style: normal;
}

.contact__map{
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: .5rem;
  font-size: 1rem;
}

.contact__map span{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__images{
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 3rem;
}

.contact__shape{
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.contact__delivery{
  width: 230px;
  position: absolute;
  top: -2.5rem;
  mask-image: linear-gradient(to bottom, var(--first-color) 80%, transparent 100%);
}
/*=============== FOOTER ===============*/
.footer{
  background-color: var(--body-first-color);
  padding-block: 4rem 2rem;
}

.footer__container{
  row-gap: 3rem;
}

.footer__title{
  font-size: var(--h2-font-size);
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.footer__social,
.footer__pay,
.footer__form{
  display: flex;
  column-gap: 1.5rem;
}

.footer__social-link{
  color: var(--dark-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.footer__social-link:hover{
  transform: translateY(-0.25rem);
}

.footer__pay-card{
  width: 30px;
}

.footer__form{
  background-color: var(--dark-color);
  padding: .5rem;
}

.footer__input{
  width: 100%;
  background: transparent;
  padding-left: .75rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.footer__input::placeholder{
  color: var(--white-color);
}

.footer__button{
  padding: .75rem 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.footer__copy{
  display: block;
  margin-top: 4rem;
  text-align: center;
  color: var(--dark-color);
  font-size: var(--small-font-size);
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(24, 27%, 60%);
}

::-webkit-slider-thumb{
  background-color: hsl(25, 55%, 35%);
}

::-webkit-scrollbar-thumb{
  background-color: hsl(25, 60%, 40%);
}

/*=============== SCROLL UP ===============*/
.scroll-up{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(26, 62%, 7%, 0.3);
  color: var(--white-color);
  border-radius: 50%;
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, background-color .4s;
}

.scroll-up:hover{
  transform: translateY(-.5rem);
}

/* Show scroll up */ 
.show-scroll{
  bottom: 3rem;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 330px){
  .container{
    margin-inline: 1rem;
  }

  .section__title{
    font-size: 2rem;
  }

  .home__title{
    font-size: 3.5rem;
  }

  .home__shape{
    width: 250px;
    height: 250px;
  }
  .home__coffee{
    width: 145px;
  }
  .home__splash{
    width: 310px;
  }
  .home__sticker{
    top: 25rem;
  }

  .about__shape{
    width: 250px;
    height: 250px;
  }
  .about__coffee{
    width: 240px;
  }

  .products__container{
    grid-template-columns: 160px;
    justify-content: center;
  }

  .contact__shape{
    width: 250px;
    height: 250px;
  }
  .contact__delivery{
    width: 190px;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .home__container,
  .about__container{
    grid-template-columns: 400px;
    justify-content: center;
  }

  .products__container{
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }

  .footer__form{
    width: 360px;
  }
}  

@media screen and (min-width: 768px){
  .popular__swiper{
    width: min(100%, 720px);
    overflow-x: clip;
    margin-inline: auto;
  }

  .products__container{
    grid-template-columns: repeat(3, 160px);
  }
  .contact__container{
    justify-content: center;
  }
  .contact__info{
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    column-gap: 6rem;
  }

  .footer__container{
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .footer__container > div:nth-child(3){
    grid-column: 1/3;
  }
  .footer__title{
    text-align: center;
  }
}
/* For large devices */
@media screen and (min-width: 1150px){
  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 7rem 5rem;
  }
  .section__title{
    margin-bottom: 4rem;
  }

  .nav{
    height: calc(var(--header-height) + 2rem);
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__link{
    font-size: var(--normal-font-size);
  }

  .home__container{
    grid-template-columns: 970px;
    max-width: 970px;
    padding-top: 2.5rem;
  }
  .home__images{
    transform: translate(1rem, -2rem);
  }
  .home__shape{
    width: 490px;
    height: 490px;
  }
  .home__coffee{
    width: 280px;
    top: -6rem;
  }
  .home__splash{
    width: 615px;
    left: -5rem;
    bottom: 0.75rem;
  }
  .home__bean-1,
  .home__bean-2{
    width: 70px;
  }
  .home__bean-1{
    left:3rem;
    top: 3.5rem;
  }
  .home__bean-2{
    bottom: 10.75rem;
    right: 6.5rem;
  }
  .home__ice-1{
    width: 90px;
    left: 2.5rem;
    bottom: 5rem;
  }
  .home__ice-2{
    width: 70px;
    top: 6.5rem;
    right: 2rem;
  }
  .home__leaf{
    width: 90px;
    right: 10rem;
    bottom: -2rem;
  }
  .home__data{
    position: absolute;
    top: 20rem;
    left: 0;
    width: 230px;
    text-align: initial;
    margin-top: 0;
  }
  .home__description{
    margin-bottom: 6rem;
  }
  .home__sticker{
    width: 150px;
    top: 23rem;
    right: 0;
  }
  .popular__container{
    padding-bottom: 2rem;
  }
  .popular__swiper{
    width: 1000px;
  }
  .popular__card{
    width: 280px;
  }
  .popular__shape{
    width: 280px;
    height: 280px;
  }
  .popular__coffee{
    width: 185px;
    top: -2rem;
  }
  .popular__bean-1{
    width: 40px;
    top: 4rem;
    left: .75rem;
  }
  .popular__bean-2{
    width: 30px;
    right: 2.5rem;
    bottom: 2.5em;
  }
  
  .about__container{
    grid-template-columns: 430px 500px;
    align-items: center;
    column-gap: 6rem;
    padding-block: 2rem;
  }
  .about__data,
  .about .section__title{
    text-align: initial;
  }
  .about__description{
    margin-bottom: 4rem;
  }
  .about__shape{
    width: 500px;
    height: 500px;
  }
  .about__coffee{
    width: 480px;
  }
  .about__leaf-1,
  .about__leaf-2{
    width: 85px;
  }
  .about__leaf-1{
    left: 6rem;
    top: 0.75rem;
  }
  .about__leaf-2{
    top: 13rem;
    right: 3.5rem;
  }

  .products__container{
    grid-template-columns: repeat(3, 250px);
    gap: 5rem;
    padding-bottom: 2rem;
  }
  .products__card{
    padding: 1.5rem 1rem 2rem;
  }
  .products__shape{
    width: 200px;
    height: 200px;
  }
  .products__coffee{
    width: 130px;
  }
  .products__ice-1{
    width: 50px;
    left: 0.75rem;
  }
  .products__ice-2{
    width: 30px;
    top: 5.5rem;
    right: 1.5rem;
  }
  .products__data{
    margin-top: 1.5rem;
  }
  .products__name,
  .products__price{
    font-size: var(--h2-font-size);
  }
  .products__button{
    right: 1rem;
    bottom: 2rem;
    width: 36px;
    height: 36px;
  }

  .contact.section__title{
    font-size: var(--biggest-font-size);
  }
  .contact__container{
    grid-template-columns: repeat(3, max-content);
    align-items: flex-start;
    column-gap: 3rem;
  }
  .contact__info{
    grid-template-columns: max-content;
    row-gap: 6rem;
    margin-top: 7rem;
  }
  .contact__info:nth-child(2){
    order: 2;
  }
  .contact__title{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
  }
  .contact__social{
    column-gap: 1.5rem;
  }
  .contact__images{
    margin-top: 0;
  }
  .contact__shape{
    width: 500px;
    height: 500px;
  }
  .contact__delivery{
    width: 380px;
    top: -3.5rem;
  }
  
  .footer__container{
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container div:nth-child(3){
    grid-column: initial;
  }
  .footer__container div:nth-child(2){
    order: 1;
    justify-self: end;
  }
  .footer__container div:nth-child(1){
    justify-self: start;
  }
  .footer__social,
  .footer__pay{
    margin-inline: auto;
    justify-content: center;
  }
  .footer__copy{
    margin-top: 5rem;
  }

  .scroll-up{
    right: 3rem;
  }
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px){
  body{
    zoom: 1.3;
  }
  
}