:root {
    --primary-color: #032e36;
    --secondary-color: #A3B899;
    --dark-text: #333;
    --light-text: #f8f9fa;
}


h1, h2, h3, .section-title {

  font-family: 'Playfair Display', serif;
}

body, p {
  font-family: 'Merriweather', serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    color: var(--dark-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 3rem !important;
    text-transform: capitalize;
}

.header-top {
   background-color: var(--primary-color);
   color: var(--light-text);
   text-align: center; 
   padding: 10px 0;
   font-weight: 500;
   font-size: 0.9rem;
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.nav-link {
    font-size: 1.05rem;
    margin-right: 15px;
    color: var(--dark-text) !important;
    transition: color 0.3s ease;
    font-weight: 500;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}
.nav-icons {
  /* gap: 12px; */
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #222;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon-btn i {
  font-size: 20px;
  line-height: 1;
}

.icon-btn:hover {
  color: #fff;
  background-color: #0d3b66; /* match your header/nav color */
  box-shadow: 0 3px 10px rgba(13, 59, 102, 0.3);
  transform: translateY(-2px);
}



.offcanvas-body .navbar-nav .nav-link {
    padding: 0.75rem 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.offcanvas-body .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
}
.offcanvas-body .d-flex .icon-btn {
    font-size: 1.5rem;
    margin: 0 15px;
}

.hero-section {
    position: relative;
}
.carousel-item {
    height: 700px;
    background-color: #f2f2f2;
}
.carousel-banner-img {
  
   
    filter: brightness(0.7);
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    bottom: 20%;
    left: 10%;
    right: 10%;
    width: 80%;
    margin: 0 auto;
}
.carousel-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.carousel-caption p {
    font-size: 1.3rem;
    color: var(--light-text);
}
.carousel-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 7px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    background-color: #032e36;
    border-color: #032e36;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.splide__slide,.gallery img{
   height: 400px;
}

@media (max-width: 992px) {
    .carousel-item {
        height: 500px;
    }
    .carousel-caption {
        bottom: 10%;
        width: 90%;
        padding: 15px;
    }
    .carousel-caption h3 {
        font-size: 2.2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-btn {
        padding: 8px 20px;
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .carousel-item {
        height: 400px;
    }
    .carousel-caption {
        display: none !important;
    }
}
@media (max-width: 767px){
    .splide__slide{
        height: 900px;
    }
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}
.splide__arrow {
    background: var(--primary-color) !important;
    opacity: 0.8;
}
.splide__arrow svg {
    fill: white !important;
}
 .splide__slide{
         height:300px;
      }
  @media (max-width: 767px){
      .splide__slide, .splide__slide img{
         height:500px;
      }

  }

.collection-container {
    padding: 30px 0;
}

.collection-card {
    height: 380px;
    background-size: cover;
  
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.img-text {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    text-align: center;
    color: var(--light-text);
}
.img-text h5 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.img-btn {
    background-color: var(--primary-color);
    border: none;
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.img-btn:hover {
    background-color: #032e36;
    transform: scale(1.05);
}

.collection-img1 { background-image: url(img/img\ \(20\).webp); }
.collection-img2 { background-image: url(img/img\ \(5\).jpg); }
.collection-img3 { background-image: url(img/img\ \(27\).jpg); }
.collection-img4 { background-image: url(images/label-\ \(9\).jpg); }

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.grid-item img {
    width: 100%;
    height: 100%;
    
    transition: transform 0.3s ease;
}
.grid-item:hover img {
    transform: scale(1.08);
}
.grid-item.full-img {
    height: 100%;
}

.grid-item:not(.full-img) {
    aspect-ratio: 3/4;
}
@media (max-width: 575.98px) {
    .grid-item:not(.full-img) {
        aspect-ratio: 4/3;
    }
}
.full-img {
    aspect-ratio: 4/4;
}
@media (min-width: 768px) {
    .col-md-6 > .row > div:nth-child(1) .grid-item:nth-child(1) { aspect-ratio: 3/4; }
    .col-md-6 > .row > div:nth-child(1) .grid-item:nth-child(2) { aspect-ratio: 2/3; }
    .col-md-6 > .row > div:nth-child(2) .grid-item:nth-child(1) { aspect-ratio: 2/3; }
    .col-md-6 > .row > div:nth-child(2) .grid-item:nth-child(2) { aspect-ratio: 3/4; }
    .col-md-6 > .row > div:nth-child(3) .grid-item:nth-child(1) { aspect-ratio: 3/4; }
    .col-md-6 > .row > div:nth-child(3) .grid-item:nth-child(2) { aspect-ratio: 2/3; }
    .full-img { aspect-ratio: 1/1; }
}

.product-content {
    padding-top: 50px;
    padding-bottom: 50px;
}
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-text);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.product-img {
    height: 300px;
    width: 100%;
 
    transition: transform 0.3s ease;
}
 @media (max-width: 767px){
   .product-img {
    height: 450px;

   } 

 }
 
.product-card:hover .product-img {
    transform: scale(1.05);
}
.price-tag {
    text-align: center;
    padding: 15px 10px 10px;
    flex-grow: 1; 
}
.price-tag h6 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-text);
}
.price-tag p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}
.add-to-cart-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 0;
    border-radius: 0 0 8px 8px; 
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.add-to-cart-btn:hover {
    background-color: #032e36;
    border-color: #5a7057;
    color: var(--light-text);
}
.logo{
    width: 50px;
    height: 50px;
}
 .section-title {
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

   .section-title {
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* Product card look */
    .product-card {
      overflow: hidden;
      border-radius: 12px;
      position: relative;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    /* Lazy image fade-in animation */
    .lazy-img {
      display: block;
      width: 100%;
      height: 350px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .lazy-img.loaded {
      opacity: 1;
      transform: translateY(0);
    }

    .price-tag {
      text-align: center;
    }
.story-content {
    padding: 40px;
    background-color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.story-img {
    width: 95%; 
    height: 599px; 
    margin: auto;
}
.story-para {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 30px;
}
.story-para h4 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}
.story-para p {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}
.story-button{
    background-color: #032e36;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 5px ;
    width: 50%;
    margin: auto;
}
.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}
.btn-outline-success:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    .story-content {
        padding: 20px;
    }
    .story-img {
        height: 450px ; 
        margin-bottom: 20px;
    }
    .story-para {
        padding-left: 0;
        text-align: center;
    }
    .story-para h4 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .story-para p {
        font-size: 1rem;
    }
}@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

.site-footer {
  background: #032e36;
  color: #f1f1f1;
  padding: 50px 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  font-weight: 600;
}

.footer-column h3::after {
  /* content: ""; */
  display: block;
  width: 40px;
  height: 2px;
  background: #f1f1f1;
  margin-top: 6px;
}

.footer-column p {
  font-size: 0.95rem;
  /* line-height: 1.6; */
  color: #c8d3d8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-family: 'Merriweather', serif;

  text-decoration: none;
  list-style: none;
  color: #c8d3d8;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css'); */

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.15);
  background: #fff;
}

/* Specific platform colors on hover */
.social-icons a.instagram:hover {
  color: #E1306C; /* Instagram pink */
}

.social-icons a.facebook:hover {
  color: #1877F2; /* Facebook blue */
}

.social-icons a.whatsapp:hover {
  color: #25D366; /* WhatsApp green */
}

.social-icons a.mail:hover {
  color: #EA4335; /* Gmail red */
}

.footer-bottom {
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #c8d3d8;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }
}

