@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
work-sans- {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight:weight;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
  .container {
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Header */
    .header-container {
      width: 100%;
      height: 95px;
      /* background-color: black; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      font-size: large;
      color: black;
      position: relative;
      z-index: 999;
    }

    /* Logo Link Style */
    .logo-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      background: #000;
      /* background: linear-gradient(145deg, #ffffff, #e6e6e6); */
      border-radius: 50px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .logo-link:hover {
      transform: scale(1.05);
    }

    .logo-img {
      width: 160px;
      height: auto;
      display: block;
      border-radius: 18px;
      object-fit: contain;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
      transition: all 0.3s ease;
    }

    /* Navbar */
    .navbar {
      display: flex;
      gap: 40px;
    }

    .navbar-list {
      display: flex;
      flex-direction: row;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navbar-list li a {
      color: black;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 6px 12px;
    }

    .navbar-list li a:hover {
      background-color: #00bfff;
      color: white;
      border-radius: 5px;
    }

    /* Toggle Button */
    .nav-toggle-btn {
      display: none;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: black;
    }

    /* =====================
       ✅ Mobile Responsive
    ===================== */
    @media (max-width: 768px) {
      .header-container {
        padding: 0 16px;
      }

      .navbar {
        position: absolute;
        top: 105px;
        left: 0;
        width: 100%;
        /* background-color: black; */
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        background-color: white;
        /* opacity: 0.95; */
      }

      .navbar.active {
        display: flex;
      }

      .navbar-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .nav-toggle-btn {
        display: block;
      }
    }

.bannner img{
    height:650px;
    width: 100%;
}
.herosection {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

.herosection h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #222;
}
.herosection h1:hover{
  color: #00bfff;
  transition: color 0.3s ease;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 0 150px;
}

.card {
  
  overflow: hidden;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  position: relative;
  height: 100%;
  transition: transform 0.1s ease;
  text-align: center;
}

.card-inner {
  transition: transform 0.20s ease;
}

.card img {
  width: 100%;
  height: 240px;
  background-size: cover;
  object-fit: cover;
  display: block;
}
.card img:hover{
  transform: scale(1.09);
  transition: transform 0.3s ease;
}

.product-info {
  padding: 15px 10px;
}

.product-info h3 {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

/* Button at Bottom */
.card-button {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: #000;
  text-align: center;
  transition: bottom 0.1s ease;
}

.card-button button {
  width: 100%;
  padding: 15px;
  border: none;
  background: #000;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 1px;
}
.card-button button:hover{
  background: #00bfff;
  color: white;
  transition: background-color 0.3s ease;
}
/* Hover Effects */
.card:hover .card-inner {
  transform: translateY(-30px);
}
.card:hover .card-button {
    transform: translateY(-20px);
  bottom: 1;
}
/* footer */
.footer {
  background-color: #000;
  width: 100%;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #00bfff;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-contact a {
  color: #00bfff;
  text-decoration: none;
}

.footer-note {
  font-size: 13px;
  color: #aaa;
  margin: 0 auto 30px;
  max-width: 1000px;
  text-align: center;
  line-height: 1.5;
}

.footer-subscribe {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.subscribe-box {
  background-color: #222;
  padding: 20px 30px;
  color: #fff;
  border-left: 4px solid #00bfff;
  max-width: 800px;
  text-align: left;
  border-radius: 4px;
}

.subscribe-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.subscribe-box p {
  font-size: 14px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding-top: 10px;
  border-top: 1px solid #333;
} 
/* Responsive for tablets and below */
@media (max-width: 1024px) {
  .container {
    padding: 10px 40px;
  }

  .card-container {
    margin: 0 40px;
  }

  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .subscribe-box {
    padding: 20px;
  }
}

/* Responsive for mobile devices */
@media (max-width: 768px) {
  .container {
    padding: 10px 20px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card-container {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .herosection h1 {
    font-size: 2rem;
  }

  .subscribe-box {
    text-align: center;
  }

  .subscribe-box h4 {
    font-size: 16px;
  }

  .subscribe-box p {
    font-size: 13px;
  }

  .footer-links {
    width: 100%;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-note {
    padding: 0 10px;
  }
}

/* all collection */
.shop-container {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.shop-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.shop-container h1:hover{
  color: #00bfff;
  transition: color 0.2s ease;
}
/* Grid Layout */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 0 60px;
}

.shop-card {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
}

.card-inner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 15px 10px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.product-info p {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* 🔁 Responsive Media Queries */
@media (max-width: 1024px) {
  .shop-grid {
    padding: 0 30px;
    gap: 20px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .product-info p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .shop-container h1 {
    font-size: 2rem;
  }

  .shop-grid {
    padding: 0 15px;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .card-inner img {
    height: 200px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .product-info p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .shop-container {
    padding: 30px 10px;
  }

  .shop-grid {
    padding: 0 10px;
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .card-inner img {
    height: 180px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-info p {
    font-size: 12px;
  }
}

.product-info p {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
/* 3 rd page */


.contact-section {
  padding: 60px 20px;
  background: #ffffff;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}
.contact-form, .contact-info {
  flex: 1 1 450px;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.contact-form h2, .contact-info h2 {
  margin-bottom: 15px;
  color: black;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.contact-form .send {
  background:black;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.contact-form .send:hover {
  background: #e55d00;
}
.contact-info ul {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}
.contact-info li {
  margin: 10px 0;
  font-size: 16px;
}


