/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600&family=Unbounded:wght@700&display=swap");

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(30, 100%, 58%);
  --black-color: hsl(220, 12%, 8%);
  --white-color: hsl(48, 90%, 90%);
  --text-color: hsl(220, 8%, 28%);
  --body-color: hsl(48, 80%, 90%);
  --shadow-img: drop-shadow(0 16px 24px hsla(0, 0%, 0%, .2));

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --second-font: "Unbounded", sans-serif;
  --biggest-font-size: 3rem;
  --bigger-font-size: 2.5rem;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

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

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 6rem;
    --bigger-font-size: 4.5rem;
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
  font-family: var(--second-font);
}

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 1rem;
}

.section__title, 
.section__subtitle {
  text-align: center;
  font-family: var(--second-font);
}

.section__title {
  font-size: var(--big-font-size);
  margin-bottom: 1rem;
}

.section__subtitle {
  display: block;
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.main {
  overflow: hidden;
}

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

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

.nav__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
}

.nav__logo img{
  width: 1.5rem;
}

.nav__logo span{
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

.nav__toggle,
.nav__close{
  display: inline-flex;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu{
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--first-color);
    width: 80%;
    height: 100%;
    padding: 8rem 3.5rem 0;
    box-shadow: -4px 0 16px hsla(0,0%,0%, .1);
    transition: right .4s;
  }

}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
}

.nav__link{
  color: var(--black-color);
  font-family: var(--second-font);
  transition: color .4s;
}

.nav__link:hover{
  color: var(--white-color);
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
/* Show menu */
.show-menu{
  right: 0;
}

/* Add shadow header */
.shadow-header{
  box-shadow: 0 4px 16px hsl(0, 0%, 0%, .1);
}

/* Active link */


/*=============== HOME ===============*/
.home{
  background-color: var(--first-color);
}

.home__container{
  padding-block: 4rem 1rem;
  row-gap: 3rem;
}

.home__date{
  position: relative;
  text-align: center;
}

.home_title{
  font-size: var(--bigger-font-size);
  margin-bottom: .5rem;
}

.home_title span{
  color: var(--white-color);
}

.home_description{
  margin-bottom: 2rem;
}

.home__dam1,
.home__dam2,
.home__dam3,
.home__dam4,
.home__dam5{
  position: absolute;
}

.home__dam1{
  width: 60px;
  top: 4.5rem;
  right: -1.5rem;
}

.home__dam2{
  width: 80px;
  top: -3.5rem;
  left: -2.5rem;
}

.home__images{
  position: relative;
  justify-self: center;
}

.home__img{
  width: 280px;
  filter: var(--shadow-img) ;
}

.home__dam3{
  width: 60px;
  top: -2rem;
  right: -1rem;
}

.home__dam4{
  width: 60px;
  right: .75rem;
  bottom: -1.25rem;
}

.home__dam5{
  width: 80px;
  top: 5rem;
  left: -2.5rem;
}

/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  border-radius: 0.75rem;
  transition: box-shadow .4s;
}

.button:hover{
  box-shadow: 0 8px 24px hsl(0, 0%, 0%, .2);
}

/*=============== ABOUT ===============*/
.about{
  background-color: var(--first-color);
}

.about__container{
  padding-bottom: 3rem;
  row-gap: 9rem;
}

.about__data{
  text-align: center;
}

.about__data .section__subtitle{
  color: var(--white-color);
}

.about__description{
  margin-bottom: 2rem;
}

.about__images{
  position: relative;
  justify-self: center;
  margin-right: 2rem;
}

.about__img-1{
  width: 280px;
  position: relative;
  z-index: 10;
  filter: var(--shadow-img);
}

.about__img-2{
  width: 210px;
  position: absolute;
  top: -6.5rem;
  right: -2rem;
  filter: var(--shadow-img);
}

.about_tooltip-1,
.about_tooltip-2{
  position: absolute;
  display: inline-block;
  padding: .25rem 1.5rem;
  border-radius: .75rem;
  font-weight: var(--font-semi-bold);
}

.about_tooltip-1{
  background-color: var(--white-color);
  top: -4rem;
  left: 0;
}

.about_tooltip-2{
  background-color: var(--black-color);
  color: var(--white-color);
  right: -3rem;
  bottom: 3rem;
  z-index: 10;
}

.about_tooltip-1::after,
.about_tooltip-2::after{
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  rotate: 45deg;
  border-radius: .25rem;
  background-color: red;
}

.about_tooltip-1::after{
  right: -8px;
  background-color: var(--white-color);
}

.about_tooltip-2::after{
  left: -8px;
  background-color: var(--black-color);
}
/*=============== ORDER ===============*/
.order .section__title span{
  color: var(--first-color);
}

.order__container{
  padding-block: 1.5rem 3rem;
}

.order__card{
  position: relative;
  display: grid;
}

.order__img-1{
  width: 190px;
  filter: var(--shadow-img);
}
.order__img-2{
  width: 250px;
  justify-self: flex-end;
  filter: var(--shadow-img);
}

.order__shape-1,
.order__shape-2{
  background-color: var(--first-color);
  border-radius: 1rem;
  align-self: center;
  position: absolute;
}

.order__shape-1{
  width: 130px;
  height: 100px;
  left: -3rem;
}

.order__shape-2{
  width: 180px;
  height: 140px;
  right: -3rem;
}

.order__tooltip-1,
.order__tooltip-2{
  position: absolute;
  background-color: var(--first-color);
  align-self: center;
  padding: .75rem 2rem .75rem .75rem;
  border-radius: 1.5rem;
  z-index: 5;
}

.order__tooltip-1{
  right: 0;
}

.order__tooltip-2{
  left: 0;
}

.order__tooltip-1::after,
.order__tooltip-2::after{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--first-color);
  margin: auto 0;
  rotate: 45deg;
  border-radius: .25rem;
  z-index: -1;
}


.order__tooltip-1::after{
  left: -8px;
}

.order__tooltip-2::after{
  right: -8px;
}

.order__title{
  font-size: var(--normal-font-size);
  color: var(--white-color);
}

.order__subtitle{
  display: inline-block;
  font-size: var(--small-font-size);
  margin-bottom: 1.25rem;
}

.order__price{
  font-size: var(--h2-font-size);
}

.order__button{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: .5rem;
  background-color: var(--black-color);
  color: var(--first-color);
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  cursor: pointer;
}
/*=============== COMBO ===============*/
.combo{
  background-color: var(--first-color);
}

.combo .section__title span{
  color: var(--white-color);
}

.combo__container{
  padding-block: 4rem 9rem;
}

.combo__content{
  position: relative;
  display: grid;
}

.combo__img{
  width: 320px;
  justify-self: center;
  filter: var(--shadow-img);
  z-index: 5;
}

.combo__numbers{
  position: absolute;
  top: -3rem;
  justify-self: center;
  display: flex;
  column-gap: 4rem;
}

.combo__number{
  display: grid;
  row-gap: .25rem;
  text-align: center;
}

.combo__number span{
  font-size: var(--h3-font-size);
  font-family: var(--second-font);
}

.combo__number i{
  font-size: 1.25rem;
}

.combo__title{
  font-size: var(--biggest-font-size);
  color: var(--white-color);
  line-height: 110%;
  letter-spacing: 10px;
  
}

.combo__titles{
  position: absolute;
  top: 0;
  justify-self: center;
}

.combo__data{
  position: absolute;
  bottom: -3.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-self: center;
}

.combo__info{
  background-color: var(--white-color);
  padding: .75rem;
  border-radius: .5rem;
  font-size: var(--small-font-size);
}

.combo__info b{
  font-family: var(--second-font);
}

.combo__price{
  background-color: var(--black-color);
  color: var(--first-color);
  padding: 1.25rem;
  border-radius: 1rem;
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
}
/*=============== CONTACT ===============*/
.contact__container{
  padding-block: 4rem 3rem;
  row-gap: 3rem;
  justify-content: center;
}

.contact__data{
  position: relative;
}

.contact__title{
  font-size: var(--bigger-font-size);
}

.contact__title span{
  color: var(--first-color);
}

.contact__img-1,
.contact__img-2{
  position: absolute;
  filter: var(--shadow-img);
}

.contact__img-1{
  width: 110px;
  top: 1.5rem;
  right: 4rem;
}

.contact__img-2{
  width: 90px;
  top: 3rem;
  right: 2rem;
}

.contact__dam-1,
.contact__dam-2,
.contact__dam-3,
.contact__dam-4{
  position: absolute;
}

.contact__dam-1{
  width: 60px;
  top: -4rem;
  right: 1rem;
}

.contact__dam-2{
  width: 80px;
  right: -2rem;
  bottom: -6rem;
}

.contact__dam-3{
  width: 60px;
  left: 0;
  bottom: -4rem;
}

.contact__dam-4{
  width: 80px;
  top: -6rem;
  left: -2rem;
}

.contact__info{
  text-align: center;
}

/*=============== FOOTER ===============*/


/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
