* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

/* Header Styles */
.header {
  background-color: whitesmoke;
/*  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/

}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: bold;
  background-color: lightskyblue;

}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  font-style: Brush Script MT;
}
.nav__icons{
  font-size: 20px;
}
.nav__icons:hover{
  color:blue;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* Add this to your CSS file */
.nav__links li a.active {
  color: #f1c40f; /* You can change this to whatever color you want for the active link */
  font-weight: bold;
}





.nav__links li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #007bff;
   text-decoration: underline;
}

.nav__menu__btn {
  display: none;
}

/* Header Content */
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFF;

}

.header__content p {
  font-size: 1rem;
  color: #007bff;
  font-weight: 600;
}

.header__content h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* Header Image */
/*.header__image {
  position: relative;
}
.header__image img {
  max-width:400px;
  position: absolute;
  bottom: -10rem;
  margin-left: ;
}
*/
.header__image img {
  width: 100%;
  max-width: 500px;


}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.categories {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.category {
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.categories .category:hover {
    text-decoration: underline;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product img:hover{
   -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;

}

.product h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: normal;
}

.product .price {
    font-size: 16px;
    color: #888;
}

.product .price span {
    font-weight: bold;
    color: #333;
}

.product .price span:first-child {
    text-decoration: line-through;
    color: #aaa;
}

.product .price span:last-child {
    color: blue;
}




/* General Section Styling */
.section__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.banner__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* Individual Card Styling with Background Images */
.banner__card {
  background-size: cover;
  background-position: center;
  color: white;  /* Text color for visibility */
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  width: 30%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.banner__card :hover{
  color:blue;
} 

.banner__card p {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banner__card h4 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
}

/* Add background images for each banner card */
.banner__card:nth-child(1) {
  background-image: url('images/cta-1.jpg');
}

.banner__card:nth-child(2) {
  background-image: url('images/sale-3.jpg');
}

.banner__card:nth-child(3) {
  background-image: url('images/bag.jpg');
}


#menu {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#menu .container {
  max-width: 1140px;
}

#menu .title h2 {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
  text-decoration: underline;
}

#menu .lead {
  color: #6c757d;
}

#menu .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

#menu .col-lg-6 img {
  width: 70%;
  height: auto;
  border-radius: 29PX;
}





/* News Section */
.news {
  background-color: var(--extra-light);
  padding: 50px 20px;
}

.section__title {
  font-family: 'Rye', cursive; /* Set Rye font for section title */
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

/* News Section */
.news {
  padding: 50px 20px;
  background-color: #ffffff;
}


h2.section__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
   text-decoration: underline;
}

/* News Grid */
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* News Card */
.news__card {
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* News Card Details */
.news__details {
  padding: 20px;
}

.news__details p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.news__details p i {
  margin: 0 5px;
  font-size: 0.6rem;
  color: #999;
}

.news__details h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.news__details hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}

.news__details a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news__details a:hover {
  color: #0056b3;
}



.brands__container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.brand__image {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.brand__image img {
  max-width: 100px;
}

.brand__image:hover {
  opacity: 1;
}


.gg{
  background-color: #FFF;
}


 .newsletter {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.newsletter input[type="text"],
.newsletter input[type="email"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter input[type="text"]:focus,
.newsletter input[type="email"]:focus {
    border-color: #007bff;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #0056b3;
}



.footer__container {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1;
  margin: 0 15px;
}

.footer__heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer__col p {
  font-size: 14px;
  margin: 5px 0;
  color: #bbb;
}

.footer__col p i {
  margin-right: 8px;
  color: #fff;
}

.footer__col p:hover {
  color: #007bff;
  cursor: pointer;
}













/* For Phones (smaller than 600px) */
@media screen and (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav__links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .header__container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .header__image img {
    width: 100%;
    max-width: 400px;
  }

  .product {
    padding: 15px;
    text-align: center;
  }

  .banner__card {
    width: 100%;
    margin-bottom: 20px;
  }

  .section__container {
    flex-direction: column;
    gap: 20px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
  }

  .footer__col {
    margin-bottom: 15px;
  }

  .brands__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    max-width: 300px;
  }
}

/* For Tablets (up to 768px) */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav__links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .header__container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .header__image img {
    width: 100%;
    max-width: 400px;
  }

  .product {
    padding: 15px;
    text-align: center;
  }

  .banner__card {
    width: 100%;
    margin-bottom: 20px;
  }

  .section__container {
    flex-direction: column;
    gap: 20px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
  }

  .footer__col {
    margin-bottom: 15px;
  }

  .brands__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter {
    max-width: 350px;
  }
}

/* For Desktops (min-width 1024px and larger) */
@media screen and (min-width: 1024px) {
  .product {
    padding: 20px;
    text-align: center;
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }

  .brands__container {
    grid-template-columns: repeat(6, 1fr);
  }

  .newsletter {
    max-width: 400px;
  }
}
