/* Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap') ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tektur:wght@400..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=M:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rochester&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Playwrite+AU+SA:wght@100..400&family=Rochester&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap" ) ;


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family:'cookie', cursive;
    text-align: center;
    /* background-color: rgb(45, 43, 43);   */
}

/* Navbar */
.header {
  background-color: rgba(0, 0, 0, 0.7);
    color:#D4AF37,;
    padding: 10px 30px;
    /* text-align: center; */
    position: fixed;
    height: 100px;
    width: 100%;
    top: 0;
    transition: top 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* box-sizing: border-box; */
}

.header.hidden {
    top: -100px;
}
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.sub-menu {
  display: none;
  position: absolute;
  background-color: #000000ee;
  min-width: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.219);
  z-index: 1;
  list-style-type: none;
  padding: 20px 0;
  margin: 0;
  /* height: 80px; */
  width: 20%;
  /* left: 0; */
  top: 60%;
  border-radius: 50px;
}

.menu-item a {
  padding: 10px 10px;
  display: block;
  text-decoration: none;
  color: #333;
}

.menu-item a:hover {
  background-color: #000000b9;
  color: #000;
  padding: 10px 20px;
}

.container-collection:hover .sub-menu {
  display: block;
}
.container-help:hover .sub-menu {
  display: block;
}
/* top navigation bar */
.top-nav {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: center;
    gap: 50px; 
    padding: 25px 0;
    overflow: visible;
    
}

.top-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  /* background-image: url("champagne.jpg"); */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.top-nav a:hover {
    transform: scale(1.1); /* Text grows slightly */
    color: rgb(255, 255, 255);
}
.top-nav a:hover::after {
    transform: scaleX(1);
}
.top-nav div {
    display: flex;
    align-items: center;
}

.top-nav img {
    width: 30px; /* Adjust size */
    height: 30px;
    margin-right: 5px;
}
.top-nav, .navbar {
    overflow: visible; /* Prevent clipping */
}
/* ===== DROPDOWN ===== */
.container-gallery {
    position: relative;
    z-index: 1001;
}
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 215, 111); /* Adjust for better contrast */
    overflow: hidden; /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: background-image 1s ease-in-out; */
}

.image-fill-text {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background-image: url("gold.jpg");
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
  }
  
  .image-fill-text1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background-image: url("champagne.jpg");
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
  }

  .logo-glitter-wrapper {
    position: relative;
    width: 12vw;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
  }
  
  /* Gold glitter background */
  .glitter-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('goldglitterbg.jpg'); /* Replace with any gold glitter image or GIF */
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
  }
  
  /* Logo sits above glitter */
  .logo-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
  }
  

  @media (max-width: 768px) {
    .hero {
      background-position: center top;
    }
}
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
} */
/* Content on top of the video */
.hero-content {
    position: relative;
    z-index: 100; /* Ensure text is above the video */
    padding: 40px;
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a slight background to improve readability */
    border-radius: 10px;
}

.hero h1 {
    font-size: 6rem;
    font-variant: small-caps;
    font-weight: lighter;
    margin-bottom: -30px;
    font-family: 'Bebas Neue',sans-serif;
}

.hero p {
    font-size: 1.3rem;
    font-variant: small-caps;
    margin-bottom: 20px;
    font-family: 'Playfair dispaly',serif;
}

.bn {
    font-family: 'Bebas Neue',sans-serif ;
    display: inline-block;
    padding: 10px 40px;
    background:rgb(203, 167, 8);
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 27px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.bn:hover {
    background: rgb(123, 122, 122);
    color: rgb(246, 241, 241);
    transform: scale(1.05);
}

.categories p {
    margin-top: 25px;
    font-family: 'Bebas Neue';
    font-size: 45px;
    
  
}
/* Categories */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.category img {
    max-width: 100%;
    height: 29vw;
    object-fit: cover;
    border-radius: 5%;
    border: 1px solid #ccc;
}
/* ===== FEATURED PRODUCTS ===== */
.featured {
    width: 100%;
    position: relative;
    white-space: nowrap;
    /* background: #f5f5f5; */
    padding: 40px 0;
    overflow: hidden;
}
.featured h2 {
    text-decoration: underline ;
    text-decoration-thickness: 3px;
    margin-bottom: 10px;
    font-size: 4rem;
    font-weight: lighter;
    font-family: 'Bebas Neue',sans-serif ;

}

 .featured p {
    font-family:'tektur';
    font-size: 25px;
    font-weight: lighter;
    margin-bottom: 20px;
}

/* Product Image Slider */
.product-slider {
    display: flex;
    width: max-content; 
    animation: slide 10s linear infinite;
}

/* Individual Product Items */
.product {
    /* gap: 10px; */
    min-width: 300px; 
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Product Images */
.product img {
    width: 100%;
    margin: 10px;
    height: 25vw;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover Effect: Slight Scale */
.product img:hover {
    transform: scale(1.2);
}

/* Sliding Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== GALLERY ===== */  
  .masonry {
    column-count: 2;
    margin-bottom: 50px;
  }

  .masonry-item {
    break-inside: avoid;
    /* margin-bottom: 1.2rem; */
    overflow: hidden;
    padding-left: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .masonry-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }
  
  .masonry-item img {
    width: 100%;
    display: block;
    border-radius: 14px;
    transition: transform 0.7s ease;
    /* transition: transform 0.8s ease-in-out; */
  }
  
  .masonry-item:hover img {
    transform: scale(1.03);
  }
  
  @media (max-width: 500px) {
    .masonry {
      column-count: 3;
    }
  }
  
  @media (max-width: 100px) {
    .masonry {
      column-count: 3;
    }
  }
  

/* about content  */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    /* background-color: #0000003e; */
    flex-wrap: wrap;
  }
  
  .about-image img {
    max-width: 100%;
    height: 30vw;
    border-radius: 20px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .about-image img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .about-content {
    max-width: 600px;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
  }
  
  .about-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    font-family:'playwrite au sa', sans-serif;
    text-transform: lowercase;
    text-align: justify;
  }
  

  .quotes-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-column {
    flex: 1;
}

.quote-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    /* background: rgba(0, 0, 0, 0.118); */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0);
}

.author-image {
    max-width: 100%;
    height: 5vw;
    border-radius: 50%;
    object-fit: cover;
    align-self: flex-start;
    border: 2px solid #f0f0f0;
}

.quote-content {
    flex: 1;
}

.quote-text {
  color: #f4f4f4;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.quote-author {
  color: #f4f4f4;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Newsletter */
.newsletter {
    padding: 30px;
}
.newsletter button {  
    background-color: rgba(236, 244, 13, 0.812);
    color: black;
    padding: 10px ;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: lowercase;
    font-family: 'bebas neue', sans-serif;
}
.newsletter h2 {
    font-family: 'Montserrat';
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;

}
/* body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
} */

.premium-container {
  display: flex;
  align-items: flex-start;
  padding: 80px 5%;
  gap: 60px;
}

.premium-left-content {
  flex: 1;
  position: sticky;
  top: 100px;
}

.premium-left-content h1 {
  font-size: 48px;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 20px;
  color: #ffffff;
}

.premium-left-content p {
  font-size: 18px;
  text-align: left;
  color: #555;
  font-family: 'playwrite au sa', sans-serif;
  margin-bottom: 30px;
  line-height: 1.6;
  text-transform: lowercase;
}

.explore-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #3d3b3b;
}

.premium-right-gallery {
  flex: 2;
  columns: 2 250px; /* Masonry effect */
  column-gap: 20px;
}

.masonry-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px whitea(0, 0, 0, 0.2);
}

.masonry-item img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When in viewport, add this class dynamically */
.masonry-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* feedback */
.testimonials-section {
  padding: 50px 20px;
  /* background: linear-gradient(135deg, #f7f7f7, #e1f0ff); */
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  background-image: url("gold.jpg");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-in-out;
}


.testimonial-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: calc(280px * 10);
  animation: scroll 40s linear infinite;
}

.testimonial {
  background: rgba(0, 0, 0, 0.492);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin: 0 10px;
  width: 280px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.05) translateY(-10px);
}

.testimonial p {
  text-align: left;
  font-size: 1rem;
  /* color: white; */
  margin-bottom: 15px;
  font-family: 'playwrite au sa', sans-serif;
  background-image: url("champagne.jpg");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.testimonial h4 {
  font-family: playwrite au sa;
  font-weight: 300;
  /* color: white; */
  font-size: 0.8rem;
  background-image: url("gold.jpg");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Footer */
footer.foot {
    background-color:#5a5959d5;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 40px 20px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-top {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #faf9f5;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffd700;
  }
  
  .payment-methods {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .payment-methods p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
  }
  
  .payment-methods img {
    width: 50px;
    margin: 5px 10px;
    vertical-align: middle;
  }
  
  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #e3e1e1;
  }
  

body {
    font-family: Cookie;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-container {
    max-width: 400px;
    margin: 70px auto;  
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-container h2 {
    /* font-family: Cookie; */
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bolder;
}

/* Mobile view adjustments for .contact-container */
@media (max-width: 768px) {
  .contact-container {
      max-width: 90%; /* Adjust width to fit smaller screens */
      margin: 20px auto; /* Reduce margin for better spacing */
      padding: 15px; /* Adjust padding for smaller screens */
      border-radius: 8px; /* Slightly smaller border radius */
  }

  .contact-container h2 {
      font-size: 24px; /* Reduce font size for better readability */
      margin-bottom: 15px; /* Adjust spacing */
  }

/* General Mobile Styles */
  body {
      font-size: 14px; /* Adjust base font size for smaller screens */
      line-height: 1.5;
  }

  /* Navbar */
  .header {
      flex-direction: column; /* Stack items vertically */
      height: 20vw;
      padding: 20px; /* Adjust padding */
  }

  .top-nav {
      flex-direction: row;
      gap: 20px; /* Reduce gap between items */
      padding-left: 50px;
  }

  .top-nav a {
      font-size: 1rem; /* Adjust font size */
  }

  /* Hero Section */
  .hero {
      height: 79vh; /* Reduce height for smaller screens */
      padding: 20px 10px;
  }

  .hero h1 {
      font-size: 3rem; /* Adjust font size */
  }

  .hero p {
      font-size: 1rem; /* Adjust font size */
  }

  /* Categories */

  .category-grid {
      flex-direction: row; /* Stack categories vertically */
      gap: 10px;
      padding-top: 20px;
  }

  .category img {
      height: 30vw; /* Adjust image height */
  }

  /* Featured Products */
  .featured h2 {
      font-size: 2rem; /* Adjust font size */
  }

  .product {
      width: 100%; /* Make products stack vertically */
      height: auto;
  }

  .product img {
      height: 30vw; 
  }

  /* Gallery */
  .masonry {
      column-count: 1; 
  }

  /* About Section */
  .about-container {
      flex-direction: column; /* Stack items vertically */
      gap: 20px;
  }

  .about-image img {
      height:40vw; /* Adjust image height */
  }

  .about-content h2 {
      font-size: 1.5rem; /* Adjust font size */
  }

  .about-content p {
      font-size: 1rem; /* Adjust font size */
  }
  .featured p{
    font-size:1.3rem;
  }

  .quote-content p{
    font-size: 1rem;
  }
  .author-image{
    width: 20%;
    height: 8vw;
  }

  .premium-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .premium-left-content {
    position: static;
    top: auto;
    text-align: center;
  }

  .premium-left-content h1 {
    font-size: 36px;
  }

  .premium-left-content p {
    font-size: 16px;
    text-align: center;
  }

  .explore-btn {
    padding: 10px 24px;
    font-size: 16px;
  }

  .premium-right-gallery {
    columns:1 80%; /* 1 column on mobile */
    column-gap: 0;
  }

  .masonry-item {
    border-radius: 15px;
  }
  /* Testimonials */
  .testimonial {
      width: 10%; /* Make testimonials take full width */
  }

  .testimonial p {
      font-size: 0.9rem; /* Adjust font size */
  }

  .testimonial h4 {
      font-size: 0.7rem; /* Adjust font size */
  }

  /* Footer */
  footer.foot {
      padding: 20px; /* Reduce padding */
  }

  .footer-top {
      flex-direction: row; /* Stack footer columns vertically */
      gap: 20px;
  }

  .footer-column {
      min-width: 50%; /* Make columns take full width */
  }

  .footer-links ul {
      text-align: center; /* Center-align links */
  }

  .payment-methods img {
      width: 40px; /* Adjust image size */
  }
}

@media (min-width: 480px) and (max-width: 1028px){
  /* medium phones */
    .contact-container {
      max-width: 90%; /* Adjust width to fit smaller screens */
      margin: 20px auto; /* Reduce margin for better spacing */
      padding: 15px; /* Adjust padding for smaller screens */
      border-radius: 8px; /* Slightly smaller border radius */
  }

  .contact-container h2 {
      font-size: 24px; /* Reduce font size for better readability */
      margin-bottom: 15px; /* Adjust spacing */
  }

/* General Mobile Styles */
  body {
      font-size: 14px; /* Adjust base font size for smaller screens */
      line-height: 1.5;
  }

  /* Navbar */
  .header {
      flex-direction: row; /* Stack items vertically */
      height: 15vw;
      padding: 20px; /* Adjust padding */
  }

  .top-nav {
      flex-direction: row;
      gap: 10px; /* Reduce gap between items */
      padding-left: 50px;
  }

  .top-nav a {
      font-size: 1rem; /* Adjust font size */
  }

  /* Hero Section */
  .hero {
      height: 79vh; /* Reduce height for smaller screens */
      padding: 20px 10px;
  }

  .hero h1 {
      font-size: 2.9rem; /* Adjust font size */
  }

  .hero p {
      font-size: .89rem; /* Adjust font size */
  }

  /* Categories */

  .category-grid {
      flex-direction: row; /* Stack categories vertically */
      gap: 10px;
      padding-top: 20px;
  }

  .category img {
      height: 30vw; /* Adjust image height */
  }

  /* Featured Products */
  .featured h2 {
      font-size: 2rem; /* Adjust font size */
  }

  .product {
      width: 100%; /* Make products stack vertically */
      height: auto;
  }

  .product img {
      height: 30vw; 
  }

  /* Gallery */
  .masonry {
      column-count: 1; 
  }

  /* About Section */
  .about-container {
      flex-direction: column; /* Stack items vertically */
      gap: 20px;
  }

  .about-image img {
      height:40vw; /* Adjust image height */
  }

  .about-content h2 {
      font-size: 1.5rem; /* Adjust font size */
  }

  .about-content p {
      font-size: 1rem; /* Adjust font size */
  }
  .featured p{
    font-size:1.3rem;
  }

  .quote-content p{
    font-size: 1rem;
  }
  .author-image{
    width: 20%;
    height: 8vw;
  }

  .premium-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .premium-left-content {
    position: static;
    top: auto;
    text-align: center;
  }

  .premium-left-content h1 {
    font-size: 36px;
  }

  .premium-left-content p {
    font-size: 16px;
    text-align: center;
  }

  .explore-btn {
    padding: 10px 24px;
    font-size: 16px;
  }

  .premium-right-gallery {
    columns:1 80%; /* 1 column on mobile */
    column-gap: 0;
  }

  .masonry-item {
    border-radius: 15px;
  }
  /* Testimonials */
  .testimonial {
      width: 10%; /* Make testimonials take full width */
  }

  .testimonial p {
      font-size: 0.9rem; /* Adjust font size */
  }

  .testimonial h4 {
      font-size: 0.7rem; /* Adjust font size */
  }
  .newsletter h2{
    font-size: 1.5rem;
  }
  /* Footer */
  footer.foot {
      padding: 20px; /* Reduce padding */
  }

  .footer-top {
      flex-direction: row; /* Stack footer columns vertically */
      gap: 20px;
  }

  .footer-column {
      min-width: 50%; /* Make columns take full width */
  }

  .footer-links ul {
      text-align: center; /* Center-align links */
  }

  .payment-methods img {
      width: 40px; /* Adjust image size */
  }
}

@media (min-width: 1028px) and (max-width: 1440) {
  /* small phones */
    .contact-container {
      max-width: 90%; /* Adjust width to fit smaller screens */
      margin: 20px auto; /* Reduce margin for better spacing */
      padding: 15px; /* Adjust padding for smaller screens */
      border-radius: 8px; /* Slightly smaller border radius */
  }

  .contact-container h2 {
      font-size: 24px; /* Reduce font size for better readability */
      margin-bottom: 15px; /* Adjust spacing */
  }

/* General Mobile Styles */
  body {
      font-size: 14px; /* Adjust base font size for smaller screens */
      line-height: 1.5;
  }

  /* Navbar */
  .header {
      flex-direction: column; /* Stack items vertically */
      height: 20vw;
      padding: 20px; /* Adjust padding */
  }

  .top-nav {
      flex-direction: row;
      gap: 10px; /* Reduce gap between items */
      padding-left: 25px;
  }

  .top-nav a {
      font-size: 1rem; /* Adjust font size */
  }

  /* Hero Section */
  .hero {
      height: 70vh; /* Reduce height for smaller screens */
      padding: 20px 10px;
  }

  .hero h1 {
      font-size: 2rem; /* Adjust font size */
  }

  .hero p {
      font-size: .7rem; /* Adjust font size */
  }

  /* Categories */
 .category-grid {
      flex-direction: row; /* Stack categories vertically */
      gap: 10px;
      margin-top: 20px 20px;
  }
  .categories p{
   padding-bottom:10px;
    font-size: 2.3rem;
  }
  .category img {
      height: 35vw;
      width: 100%; /* Adjust image height */
  }

  /* Featured Products */
  .featured h2{
      font-size: 2.5rem; /* Adjust font size */
  }
  .product {
      width: 100%; /* Make products stack vertically */
      height: auto;
  }

  .product img {
      height: 190vw; 
  }

  /* Gallery */
  .masonry {
      column-count: 1; 
  }

  /* About Section */
  .about-container {
      flex-direction: column; /* Stack items vertically */
      gap: 20px;
  }

  .about-image img {
      height:70vw; /* Adjust image height */
  }

  .about-content h2 {
      font-size: 1.5rem; /* Adjust font size */
  }

  .about-content p {
      font-size: 1rem; /* Adjust font size */
  }
  .featured p{
    font-size:1.05rem;
  }

  .quote-content p{
    font-size: .6rem;
  }
  .author-image{
    width: 34%;
    height: 10.5vw;
  }

  .premium-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .premium-left-content {
    order: 1;
    text-align: center;
    margin-bottom: 40px;
  }

  .premium-left-content h1 {
    font-size: 2.5rem;
  }

  .premium-left-content p {
    font-size: 0.9rem;
  }

  .explore-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
  }

  .premium-right-gallery {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .masonry-item {
    width: 100%;
  }

  .masonry-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
      transition: transform 0.5s ease;
  }
  .masonry-item.wide {
    grid-column: span 1;
  }

  /* Testimonials */
  .testimonial {
      width: 10%; /* Make testimonials take full width */
  }
 .section-title{
    font-size: 2.5rem;
 }
  .testimonial p {
      font-size: 0.9rem; /* Adjust font size */
  }

  .testimonial h4 {
      font-size: 0.7rem; /* Adjust font size */
  }
  .newsletter h2{
    font-size: auto;
  }
  /* Footer */
  footer.foot {
      padding: 20px; /* Reduce padding */
  }

  .footer-top {
      flex-direction: row; /* Stack footer columns vertically */
      gap: 20px;
  }
.contact-info p{
  font-size: .7rem;
}
  .footer-column {
      min-width: 50%;
      height: 40vw; /* Make columns take full width */
  }

  .footer-links ul {
      text-align: center; 
      font-size: .7em;/* Center-align links */
  }
.payment-methods p{
  padding-top: 100px;
}
  .payment-methods img {
      width: 20px; /* Adjust image size */
  }
}

@media (min-width: 328px) and (max-width: 580px)  {
  /* large phones */
    .contact-container {
      max-width: 90%; /* Adjust width to fit smaller screens */
      margin: 20px auto; /* Reduce margin for better spacing */
      padding: 15px; /* Adjust padding for smaller screens */
      border-radius: 8px; /* Slightly smaller border radius */
  }

  .contact-container h2 {
      font-size: 24px; /* Reduce font size for better readability */
      margin-bottom: 15px; /* Adjust spacing */
  }
    /* medium phones */
    .contact-container {
      max-width: 90%; /* Adjust width to fit smaller screens */
      margin: 20px auto; /* Reduce margin for better spacing */
      padding: 15px; /* Adjust padding for smaller screens */
      border-radius: 8px; /* Slightly smaller border radius */
  }

  .contact-container h2 {
      font-size: 24px; /* Reduce font size for better readability */
      margin-bottom: 15px; /* Adjust spacing */
  }

/* General Mobile Styles */
  body {
      font-size: 14px; /* Adjust base font size for smaller screens */
      line-height: 1.5;
  }

  /* Navbar */
  .header {
      flex-direction: row; /* Stack items vertically */
      height: 15vw;
      padding: 20px; /* Adjust padding */
  }

  .top-nav {
      flex-direction: row;
      gap: 10px; /* Reduce gap between items */
      padding-left: 50px;
  }

  .top-nav a {
      font-size: .5rem; /* Adjust font size */
  }

  /* Hero Section */
  .hero {
      height: 49vh; /* Reduce height for smaller screens */
      padding: 5px 10px;
      padding-top: 190px;
  }

  .hero h1 {
      font-size: 2rem; /* Adjust font size */
  }

  .hero p {
      font-size: .89rem; /* Adjust font size */
  }
.bn{
  height: 7vw;

}
.bn{
  font-size: 1rem;
  margin-bottom: 40px;
}
  /* Categories */

  .category-grid {
      flex-direction: row; /* Stack categories vertically */
      gap: 10px;
      padding-top: 20px;
  }
  .categories p{
      font-size: 2rem;

  }
  .category img {
      height: 25vw; /* Adjust image height */
  }

  /* Featured Products */
  .featured h2 {
      font-size: 1.5rem; /* Adjust font size */
  }
   .featured p{
    font-size: .8rem;
   }
  .product {
      width: 100%; /* Make products stack vertically */
      height: auto;
  }

  .product img {
      height: 40vw; 
  }

  /* Gallery */
  .masonry {
      column-count: 1; 
  }

  /* About Section */
  .about-container {
      flex-direction: row; /* Stack items vertically */
      gap: 20px;
  }

  .about-image img {
      height:80vw; /* Adjust image height */
  }

  .about-content h2 {
      font-size: 1.5rem; /* Adjust font size */
  }

  .about-content p {
      font-size: 1rem; /* Adjust font size */
  }
  .quotes-container{
    flex-direction: column;
    gap: 20px;
  }
  .quote-content p{
    font-size: 1.56rem;
  }
  .author-image{
    width: 10%;
    height: 8vw;
  }

  .premium-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .premium-left-content {
    order: 1;
    text-align: center;
    margin-bottom: 40px;
  }

  .premium-left-content h1 {
    font-size: 2.5rem;
  }

  .premium-left-content p {
    font-size: 0.9rem;
  }

  .explore-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
  }

  .premium-right-gallery {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .masonry-item {
    width: 100%;
  }

  .masonry-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
      transition: transform 0.5s ease;
  }
  .masonry-item.wide {
    grid-column: span 1;
  }
  /* Testimonials */
  .testimonial {
      width: 10%; /* Make testimonials take full width */
  }

  .testimonial p {
      font-size: 0.9rem; /* Adjust font size */
  }

  .testimonial h4 {
      font-size: 0.7rem; /* Adjust font size */
  }
  .newsletter h2{
    font-size: 1.5rem;
  }
  /* Footer */
  footer.foot {
      padding: 20px; /* Reduce padding */
  }

  .footer-top {
      flex-direction: row; /* Stack footer columns vertically */
      gap: 20px;
  }

  .footer-column {
      min-width: 50%; /* Make columns take full width */
  }

  .footer-links ul {
      text-align: center; /* Center-align links */
  }

  .payment-methods img {
      width: 40px; /* Adjust image size */
  }
}