@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root{
    --primary-color: #64656f;
    --text-dark :#000000;
    --text-light: #d3d3d3;
    --extra-light: #f4f6f6;
    --white:#ffffff;
    --max-width:1200px;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  position: relative;
  isolation: isolate;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
}

.section__header::before {
  position: absolute;
  bottom: -10px;
  right: -20px;
  height: 60px;
  width: 150px;
  background-image: url("img/header-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
  background-color: var(--text-dark);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

header {
  padding-top: 5rem;
  padding-inline: 1rem;
  margin-bottom: 5rem;
  overflow: hidden;
}

.header__container {
  padding: 0;
  max-width: calc(var(--max-width) - 2rem);
  display: grid;
  background-color:#b8b7b7;
  border-radius: 2.2rem;
}

.header__content {
  padding: 5rem 2rem;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 5.5rem;
  color: var(--text-dark);
  text-align: center;
}

.header__content h1 span {
  position: relative;
  isolation: isolate;
}

.header__content h1 span::before {
  position: absolute;
  content: "";
  top: 0;
  left: -1rem;
  height: 100%;
  width: calc(100% + 4rem);
  transform: rotate(-2deg);
  z-index: -1;
}

.header__content h1 span:nth-child(1)::before {
  background-color: var(--white);
}

.header__content h1 span:nth-child(4)::before {
  background-color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
}

.header__btns {
  text-align: center;
}

.header__image img {
  max-width: 500px;
  margin-inline: auto;
}

.banner__container {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: black;
  animation: scroll 30s linear infinite;
}

.banner__container img {
  height: 45px;
}

.arrival__container .section__header {
  margin-bottom: 4rem;
  max-width: fit-content;
}

.arrival__container .section__header::before {
  content: "";
}

.arrival__grid {
  display: grid;
  gap: 2rem;
}

.arrival__card {
  max-width: 400px;
  margin-inline: auto;
}

.arrival__image {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

.arrival__image img {
  transition: 0.3s;
}

.arrival__card:hover .arrival__image img {
  transform: scale(1.1);
}

.arrival__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.arrival__content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.arrival__content a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

.arrival__content a:hover {
  color: var(--primary-color);
}

.arrival__content span {
  font-size: 1.5rem;
  color: var(--text-light);
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 4rem));
  }
}

.sale-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    justify-content: center;
}
.sale-image{
    height: 21.875rem;
    width: 18.75rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(70, 69, 69, 0.2);
}
.sale-image:hover {
  transform: translateY(-12.5px);
}

.btn2{
    background-color: black;
    color:white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0 0 0;
    font-size: 1rem;
    font-weight: 650;
}
.btn2:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    scale: 1.25;
    transition: all 0.3s ease;
    color: black;
}
.wrap{
    margin: 25px 50px 25px 50px;
}
div ul li h4{
    text-align: center;
    margin: 10px 0 0 0;
}
.Sales ul li p{
    text-align: center;
    margin: 10px 0 0 0;
}
.Containerbtn{
    display: flex;
    justify-content: center;
}

.cata{
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  color:var(--primary-color);
  margin-top: 2rem;     
  margin-bottom: 4rem; 
}
.cata:hover{
  color: var(--text-dark);
  transition: all 0.6s ease;
}

.About{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 5% 0;
  min-height: 100vh;
  text-align: center;
}
.section-title{
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  color:var(--primary-color);
}
.section-title:hover{
  color: var(--text-dark);
  transition: all 0.6s ease;
}
.map{ 
    position: relative;
    border-radius: 7.5%;
    max-height: 400px;
    max-width: min(90vw, 600px);
    width: 100%;
    display: block;
    margin: 0 auto;
}
.About p{
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0 15%;
    position: static;
    letter-spacing: 1.8pt;
    text-align: center;
    color: black;
}
.text{
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 750;
}
.dunes{
    font-size: 1.2rem;
    font-weight:600;
}

footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo a {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.footer__col p {
  max-width: 300px;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 5px 10px;
  font-size: 1.5rem;
  color: var(--text-dark);
  background-color: var(--primary-color);
  border-radius: 10px;
}

.footer__socials a:hover {
  color: var(--white);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}
@media(width<600px)
{
    .cata{
        font-size:2.8rem;
    }
    .section-title{
        font-size:2.2rem;
    }
}
@media (width>540px){
    .header_content h1{
        font-size:5rem;
        line-height: 6.5rem;
    }

    .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<480px){
  .header__content h1 {
    font-size: 2.8rem;
  }
  .header__image img {
  max-width: 480px;
}
    
}
@media (width>768px) {
   nav {
    position: static;
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    font-size: 1.75rem;
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  header {
    padding-top: 0;
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    isolation: isolate;
  }
  .header__bg{
    display: flex;
  }

  .header__content :is(h1, p, .header__btns) {
    text-align: left;
  }

.header__image {
    position: relative;
    height: 100%;
  }

  .header__image img {
    position: absolute;
    width: unset;
    max-width: unset;
    height: 100%;
    right: 1rem;
    top: 1rem;
    z-index: -1;
  }
  
  .arrival__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map {
    max-height: 550px;
    max-width: 750px;
  }
  .text{
  font-size: 2.2rem;
}
.dunes{
    font-size: 1.6rem;
}

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
  }

}
