
/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}


.heros{
  widows: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
  position: relative;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-video{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(10px);
}

.logo img{
  width:150px;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  transition:.3s;
}

.nav-links a:hover{
  color:#999;
}

.menu-btn{
  display:none;
  font-size:30px;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  width:100%;
  height:100vh;
}

.heroSwiper,
.swiper-slide{
  width:100%;
  height:100vh;
}

.slide{
  position:relative;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.slide1{
  background:url('P001.jpeg')
  center/cover no-repeat;
}

.slide2{
  background:url('P002.jpeg')
  center/cover no-repeat;
}

.slide3{
  background:url('PO03.jpeg')
  center/cover no-repeat;
}

.slide4{
  background:url('PO04.jpeg')
  center/cover no-repeat;
}

.slide5{
  background:url('PO05.jpg')
  center/cover no-repeat;
}
.slide6{
  background:url('PO06.jpeg')
  center/cover no-repeat;
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.subtitle{
  color:#aaa;
  letter-spacing:4px;
  font-size:14px;
}

.hero-content h1{
  font-size:90px;
  line-height:1;
  margin:20px 0;
  font-weight:900;
}

.hero-content p{
  color:#ddd;
  font-size:18px;
  line-height:1.8;
  max-width:500px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.btn-primary,
.btn-secondary{
  padding:18px 40px;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.btn-primary{
  background:#fff;
  color:#000;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-secondary{
  border:1px solid #fff;
  color:#fff;
}

.btn-secondary:hover{
  background:#fff;
  color:#000;
}

/* ========================= */
/* SWIPER */
/* ========================= */

.swiper-button-next,
.swiper-button-prev{
  color:#fff !important;
}

.swiper-pagination-bullet{
  background:#fff !important;
}

/* ========================= */
/* FEATURED */
/* ========================= */

.featured{
  padding:120px 8%;
}

.section-title{
  margin-bottom:60px;
}

.section-title span{
  color:#888;
  letter-spacing:3px;
}

.section-title h2{
  font-size:60px;
  margin-top:15px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.product-card{
  background:#111;
  border-radius:20px;
  overflow:hidden;
  transition:.4s;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  width:100%;
  height:450px;
  object-fit:cover;
}

.product-info{
  padding:25px;
}

.product-info h3{
  margin-bottom:10px;
}

/* ========================= */
/* BRAND SECTION */
/* ========================= */

.brand-section{
  padding:120px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.brand-image img{
  width:100%;
  border-radius:30px;
}

.brand-text span{
  color:#888;
  letter-spacing:3px;
}

.brand-text h2{
  font-size:60px;
  line-height:1.1;
  margin:20px 0;
}

.brand-text p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:40px;
}

/* ========================= */
/* BENEFITS */
/* ========================= */

.benefits{
  padding:100px 8%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.benefit-card{
  background:#111;
  padding:50px;
  border-radius:25px;
  text-align:center;
}

.benefit-card i{
  font-size:50px;
  margin-bottom:20px;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta{
  padding:140px 8%;
  text-align:center;
  background:#111;
}

.cta span{
  color:#888;
  letter-spacing:4px;
}

.cta h2{
  font-size:100px;
  margin:20px 0;
}

.cta p{
  color:#bbb;
  margin-bottom:40px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  padding:50px 8%;
  text-align:center;
}

footer img{
  width:180px;
  margin-bottom:20px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .benefits{
    grid-template-columns:repeat(2,1fr);
  }

  .brand-section{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .hero-content h1{
    font-size:55px;
  }

  .section-title h2,
  .brand-text h2{
    font-size:40px;
  }

  .cta h2{
    font-size:55px;
  }

  .products-grid,
  .benefits{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

}