/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue-color: 206;
  --black-color: hsl(var(--hue-color), 4%, 4%);
  --black-color-alt: hsl(var(--hue-color), 4%, 8%);
  --title-color: black;
  --text-color: black;
  --text-color-light: rgb(45, 43, 43);
  --white-color: #FFF;
  --body-color: #eeece2;
  --container-color: #eeece2;
  --text-gradient: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
  --scroll-thumb-color: hsl(var(--hue-color), 4%, 16%);
  --scroll-thumb-color-alt: hsl(var(--hue-color), 4%, 20%);
  /*========== Font and typography ==========*/
  --body-font: 'Outfit', sans-serif;
  --biggest-font-size: 5rem;
  --bigger-font-size: 3.5rem;
  --big-font-size: 2.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --text-line-height: 2rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== Margenes Bottom ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 7.5rem;
    --bigger-font-size: 4.5rem;
    --big-font-size: 4rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input {
  border: none;
  outline: none;
}

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

img {
  max-width: 200%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4rem 0 2rem;
}

.section__title {
  font-size: var(--bigger-font-size);
  text-align: center;
  margin-bottom: var(--mb-2-5);
  color:#995b00;
}

.section__title-gradient {
  color:#995b00;
  -webkit-background-clip: text;
  background-clip: text;
}

/*=============== LAYOUT ===============*/
.main {
  overflow: hidden;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  width: 1.5rem;
}

.nav__toggle {
  font-size: 1.2rem;
  color: black;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: -100%;
    left: 0;
    width: 100%;
    padding: 4rem 0 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.nav__link {
  color: var(--black-color);
  font-size: var(--h2-font-size);
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  transition: .4s;
}

.nav__link:hover {
  filter:opacity(0.5);
}

.nav__close {
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1rem;
  color: var(--black-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
}

/* Active link */
.active-link {
 
  color: #995b00;
  -webkit-background-clip: text;
  background-clip: text;
}

/*=============== HOME ===============*/


.home__data {
  padding-top: 5rem;
}

.home__header {
  position: relative;
}


  
.home__title {
  position: absolute;
  top: -3rem; /* Adjust the top position */
  left: 1rem;
  line-height: 4rem; /* Reduce the line height */
  font-size: 24px; /* Reduce the font size */
  background: var(--text-gradient);
  color: #995b00;
  -webkit-background-clip: text;
  background-clip: text;
}
  


  .home__subtitle {
    font-family: 'League Spartan', sans-serif;
    font-size:7rem;
    margin-bottom: 0rem;
    color : #995b00;
    letter-spacing: -0.3rem;
  }

.home__title-description {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
  padding-top: 2rem;
}

.home__description {
  margin-bottom: var(--mb-2-5);
  line-height: var(--text-line-height);
}

.home__price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-left: var(--mb-0-75);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  transition: .3s;
  display: inline-block;
 
 
 
  border: none;
 
  cursor: pointer;
}

.button:hover {
  background-color: var(--black-color-alt);
}

.button__icon {
  font-size: 1.2rem;
  margin-right: 10px;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .75rem;
}
.button-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px; /* Increase the gap between buttons */
  margin-top: 20px;
  padding-top: 1rem;
}
.button-form {
  margin: 0; /* Remove default form margins */
}






/*=============== SPONSOR ===============*/
.sponsor__img {
  width: 50px;
}

.sponsor__img:hover{
  filter:opacity(0.5);
  cursor: pointer;
}

.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  row-gap: 5rem;
  justify-items: center;
  align-items: center;
  padding-top: 4rem;
}

/*=============== SPECS ===============*/
.specs__container {
  flex-direction: column;
  display: flex;
  position: relative;
}

.specs__content {
  padding-bottom: 2rem;
  row-gap: 1.5rem;
}

.specs__data {
  display: grid;
  row-gap: .25rem;
  padding: 0.5rem;
}

.specs__data.highlighted {
  background-color: #d4cdbb50;
  opacity: 1;
  border-radius: 15px;
}

.specs__img-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specs__icon {
  font-size: 1.2rem;
  color: var(--white-color);
}

.specs__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.specs__subtitle {
  font-size: var(--smaller-font-size);
}

.specs__data:nth-child(1), .specs__data:nth-child(3) {
  margin-left: 1.5rem;
}

.specs__data:nth-child(2) {
  margin-right: 1.5rem;
}

.specs__img {
  height: 200px;
  top: 2rem;
  right: -1rem;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.specs__img.visible {
  opacity: 1;
}

/*=============== CASE ===============*/
.case__container {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}

.case__data {
  padding: 5rem 0 3rem;
}

.case__img {
  width: 250px;
  position: absolute;
  left: -7rem;
}

.case__description {
  margin-bottom: var(--mb-1-5);
  line-height: var(--text-line-height);
}

/*=============== DISCOUNT ===============*/
.discount__container {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem;
  border-radius: .75rem;
}

.discount__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
}

.discount__description {
  margin-bottom: var(--mb-1);
}

.discount__img {
  width: 300px;
  position: absolute;
  top: 4rem;
  right: -11rem;
}

/*=============== PRODUCTS ===============*/
.products__line {
  line-height: 4rem;
}

.products__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
  padding-top: 3rem;
}

.products__card {
  position: relative;
  height: 132px;
  background-color: var(--container-color);
  padding: .75rem;
  border-radius: .5rem;
  display: grid;
}

.products__img {
  width: 80px;
  position: absolute;
  inset: 0;
  margin-right: auto;
  margin-left: auto;
  top: -3rem;
}

.products__content {
  align-self: flex-end;
}

.products__title, .products__price {
  font-size: var(--small-font-size);
}

.products__price {
  font-weight: var(--font-semi-bold);
}

.products__button {
  position: absolute;
  right: .5rem;
  bottom: .5rem;
  padding: .5rem;
  border-radius: .35rem;
}

/*=============== FOOTER ===============*/
/* Footer Styles */

.waves {
  position:relative;
  width: 100%;
  height:80px;
  margin-bottom:-7px; /*Fix for safari gap*/
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
}

.footer {
  color:black; /* Set the text color to white */
  padding: 20px 0 0; /* Add padding to the top and bottom of the footer */
  text-align: center;
  background-color: var(--container-color); /* Center align text within the footer */
}

.footer__container {
  background-color: #995b00;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.footer__title {
  color: burlywood;
  font-size: clamp(40px, 10vw, 70px); /* Set the font size to larger */
  margin: 0; /* Remove default margins */
  line-height: 1.2em; /* Ensure the line height is normal */
}

.footer__content {
  margin-bottom: 2rem; /* Add margin below the content for spacing */
}



/*=============== SCROLL UP ===============*/
.scrollup {
  border: 1px solid #995b00;
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  background-color: #d4cdbb50;
  border-radius: .25rem;
  padding: .45rem;
  opacity: 9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: #d4cdbb;
  opacity: 1;
}

.scrollup__icon {
  color: #995b00;
  font-size: clamp(0.75rem, 2vw, 1.35rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-color-alt);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .section__title {
    font-size: var(--big-font-size);
  }
  
  .home__title {
    top: -4rem;
    font-size: var(--bigger-font-size);
  }
  .home__data {
    padding-top: 1rem;
  }
  .home__description {
    font-size: var(--small-font-size);
  }
  .specs__img {
    width: 200px;
  }
  .case__container {
    grid-template-columns: .6fr 1fr;
  }
  .case__img {
    width: 220px;
    top: -2rem;
    left: -9rem;
  }
  .case__data {
    padding: 0;
  }
  .products__container {
    grid-template-columns: 142px;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  
  .home__data {
    padding-top: 2rem;
  }
 
  .specs__img {
    width: 300px;
    position: initial;
  }
  /* .specs__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  } */
  .specs__container {
    margin: auto;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}
  .case__img {
    position: initial;
  }
  .case__data {
    padding: 0;
  }
  .case__container {
    grid-template-columns: max-content 250px;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
  }
  .discount__img {
    position: initial;
  }
  .discount__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }
  .products__container {
    grid-template-columns: repeat(3, 142px);
    justify-content: center;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 6rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__logo {
    width: 2rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }
  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .home__container {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
   
  }
  
  .home__data {
    padding-top: 3rem;
  }
  .specs__img {
    width: 380px;
  }
  .case__container {
    column-gap: 5rem;
  }
  .case__img {
    width: 300px;
  }
  .case__description {
    margin-bottom: var(--mb-2);
  }
  .discount__container {
    grid-template-columns: 250px max-content;
    justify-content: center;
    column-gap: 5rem;
    padding: 3rem 0;
  }
  .discount__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
  }
  .discount__description {
    margin-bottom: var(--mb-2);
  }
  .products__container {
    grid-template-columns: repeat(3, 162px);
    gap: 6rem 3rem;
    padding-top: 5rem;
  }
  .products__card {
    height: 152px;
    padding: .85rem;
  }
  .products__img {
    width: 95px;
  }
  .footer__container {
    grid-template-columns: .4fr .7fr .7fr 1fr;
  }
}




/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .home__title {
    top: -5rem;
    left: 3.5rem;
  }
  .home__description {
    padding-right: 5rem;
  }
  .sponsor__img {
    width: 70px;
    max-width: 50px; /* Adjust the value as needed */
    height: auto;
  }
  
  .discount__img {
    width: 350px;
  }
  .footer__container {
    padding-top: 3rem;
  }
  .footer__copy {
    margin-top: 9rem;
  }
}
body {
  background-color: #eeece2;
}
body {
  font-size: 16px; /* or your desired font size */
}
/* Button Styles */
/* Button Placeholder */
.user-button {
  width:194px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 19px;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-right: 10px;
}

.user-signup {
  background-color: #995b00;
}

.author-signup {
  background-color: #995b00;
}

.user-button:hover {
  opacity: 0.8;
}

.user-button .button__icon {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .user-button {
    /* width: 100%; */
    justify-content: center;
  }
  .image-container{
    display: none !important;
  }
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem; /* Add some spacing at the bottom */
}

.image-container img {
  max-width: 200px;
  height: auto;
}

@media (min-width: 768px) {
  .image-container img {
    max-width: 230px; /* Set the maximum width for larger screens */
  }
}
@media screen and (max-width: 2030px) and (min-width: 320px) {
  .home__container {
    justify-items: center;
    text-align: center;
  }

  .home__data {
    order: 1;
  }

  .image-container {
    order: 2;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 2030px) and (min-width: 770px) {
  .home__container {   
      justify-items: center;
      text-align: center;
  }
  

}
@media (max-width:770px) {
  .img-conatiner {   
     display:none important!;
  }
  

}



