* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--bg-light);
  color: var(--black-color);
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

:root {
  /* Colors */
  --white-color: #fff;
  --black-color: #000000;
  --primary-color:#EE0202; 
  --secondary-color: #4d81db ;
  --tertiary-color :#FFECDB; 
  --quaternary-color : #fffb00; 
    
  /* Font Size */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-size-xxxl: 74px;
}

body {
  width: 100%;
  overflow-x: hidden;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

/*------------------------------------------------Hero Section Styling------------------------------------------------*/
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px); 
}

.hero-content {
  position: absolute;
  bottom: 110px;
  z-index: 2;
  padding: 40px;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  
  border: 1px solid rgba(255, 255, 255, 0.3); 
  border-radius: 10px; 
  box-shadow: 0 4px 30px rgba(255, 0, 0, 0.1); 
}


.hero-content h1 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 15px;
  color: var(--black-color);
}

.hero-content p {
  font-size: var(--font-size-l);
  margin-bottom: 30px;
  color: var(--black-color);
}

.btn {
  background: var(--primary-color);
  color:var(--white-color);
  padding: 14px 30px;
  width:150px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px);
  transform: scale(1.2);
}

/*-------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------Service Section Styling------------------------------------------------*/

#services {
  background-color: var(--primary-color);
  padding: 100px 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top:25px;
}

.service-tile {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  z-index: 2;
}

.service-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--white-color);
}

.service-content p {
  font-size: 16px;
  margin: 0;
  color:var(--white-color);
  font-style: italic;
}

/*-------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------About Section Styling------------------------------------------------*/

#about {
  background-color: #FFA8B8;
  padding: 80px 0px;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: auto;
  height: 598px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: var(--font-size-xxxl);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 4px solid var(--primary-color); 
  padding-bottom: 8px; 
}

.about-content p {
  font-size: var(--font-size-l);
  line-height: 1.6;
  color: var(--black-color);
  margin-bottom: 25px;
}

.read-more-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color:var(--white-color); 
  text-decoration: none;
  transition: color 0.3s ease;
  
}

.read-more-btn:hover {
  border-bottom: 4px solid var(--primary-color); 
  color:var(--primary-color);
}

/*-------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------Just-Landed Section Styling------------------------------------------------*/
#just-landed {
  background-color: var(--white-color);
  padding: 50px 40px;
  text-align: center;
}

.just-landed-container {
  max-width: 1200px;
  margin: 0 auto;
}

#just-landed h2 {
  font-size: var(--font-size-xxxl);
  color: var(--primary-color);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 18px;
  color: var(--black-color);
  margin-bottom: 10px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 300px;
  height: 330px;
  margin: 0 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: transform 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-btn i {
  font-size: 20px;
  color: var(--primary-color);
}

.shop-now-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 14px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
  position: relative;
  bottom: 15px;
}

.shop-now-btn:hover {
  background: #dc424a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}
/*-------------------------------------------------------------------------------------------------------------*/

/* ======================================== MEDIA QUERIES FOR NAVBAR ======================================== */
   
   
/* ================== 992px ================== */
@media (max-width: 992px) {
  /* Carousel */
  .carousel-slide {
    min-width: 250px;
    height: 320px;
  }

  /* About */
  .about-container {
    gap: 40px;
  }
  .about-content h2 {
    font-size: 32px;
  }

  /* Hero */
  .hero-content {
    max-width: 600px;
    padding: 30px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }

  /* Services */
  .services-container {
    gap: 20px;
  }
  .service-tile {
    height: 250px;
  }
}

/* ================== 768px ================== */
@media (max-width: 768px) {
  /* Just Landed */
  #just-landed {
    padding: 60px 20px;
  }
  #just-landed h2 {
    font-size: 32px;
  }
  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .carousel-slide {
    min-width: 220px;
    height: 280px;
    margin: 0 10px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  /* About */
  #about {
    padding: 60px 20px;
  }
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-content p {
    font-size: 15px;
  }

  /* Header & Navbar */
  .logo {
    height: 55px;
  }
  #header {
    padding: 15px 30px;
  }
  #navbar li {
    padding: 0 12px;
  }

  /* Hero */
  .hero-content {
    max-width: 85%;
    padding: 25px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 25px;
  }

  /* Services */
  #services {
    padding: 60px 20px;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-tile {
    height: 220px;
  }
  .service-content {
    padding: 20px;
  }
  .service-content h2 {
    font-size: 24px;
  }
  .service-content p {
    font-size: 14px;
  }
}

/* ================== 480px ================== */
@media (max-width: 480px) {
  /* Just Landed */
  #just-landed {
    padding: 40px 15px;
  }
  #just-landed h2 {
    font-size: 28px;
  }
  .subtitle {
    font-size: 15px;
  }
  .carousel-slide {
    min-width: 200px;
    height: 250px;
  }
  .shop-now-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* About */
  #about {
    padding: 40px 15px;
  }
  .about-content h2 {
    font-size: 24px;
  }
  .about-content p {
    font-size: 14px;
  }
  .read-more-btn {
    font-size: 16px;
  }

  /* Header & Navbar */
  .logo {
    height: 50px;
  }
  #header {
    padding: 12px 20px;
  }
  #navbar li a {
    font-size: 14px;
  }

  /* Hero */
  .hero-content {
    padding: 20px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Services */
  #services {
    padding: 40px 15px;
  }
  .service-tile {
    height: 200px;
  }
  .service-content {
    padding: 15px;
  }
  .service-content h2 {
    font-size: 22px;
  }
}
