@font-face {
  font-family: "titr";
  src: url(../fonts/pixelboy-BTitrBold.eot);
  src: url(../fonts/pixelboy-BTitrBold.ttf);
  src: url(../fonts/pixelboy-BTitrBold.woff);
}

@font-face {
  font-family: "jadid";
  src: url(../fonts/pixelboy-BJadidBold.eot);
  src: url(../fonts/pixelboy-BJadidBold.ttf);
  src: url(../fonts/pixelboy-BJadidBold.woff);
}

@font-face {
  font-family: "yekan";
  src: url(../fonts/pixelboy-BYekan.eot);
  src: url(../fonts/pixelboy-BYekan.ttf);
  src: url(../fonts/pixelboy-BYekan.woff);
}

:root {
  --midnight: #0f1c24;
  --gold: #d5b98f;
  --sand: #f2e9dd;
  --blue-tint: #bcd8e6;
  --light: #f8f9fa;
  --overlay: rgba(0, 0, 0, 0.45);
}

body {
  font-family: 'yekan';
  background: var(--light);
  color: var(--midnight);
}

h1, h2, .lux-heading {
  font-family: 'titr';
  letter-spacing: 0.5px;
}

h3, h4, h5, h6 {
  font-family: 'jadid';
}

/* -----------------------------------------
  NAVBAR (Luxury Style)
----------------------------------------- */
.lux-navbar {
  backdrop-filter: blur(10px);
  background: rgba(15, 28, 36, 0.55) !important;
  padding: 0.8rem 0;
  transition: 0.4s ease;
}

.lux-navbar .navbar-brand {
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.lux-navbar .nav-link {
  color: var(--sand) !important;
  margin-left: 1rem;
  font-size: 1.05rem;
  position: relative;
  transition: 0.3s ease;
}

/* Golden underline animation */
.lux-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

.lux-navbar .nav-link:hover::after {
  width: 100%;
}

.lux-navbar .dropdown-menu {
  background: var(--midnight);
  border: 1px solid var(--gold);
}

.lux-navbar .dropdown-item {
  color: var(--sand);
}

.lux-navbar .dropdown-item:hover {
  background: rgba(213, 185, 143, 0.15);
}

/* -----------------------------------------
  HERO SECTION (Luxury Slideshow)
----------------------------------------- */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%) saturate(1.15);
  transition: transform 8s ease-out;
}

/* Smooth zoom-in effect */
.carousel-item.active img {
  transform: scale(1.12);
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}

/* Hero Caption */
.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  color: white;
  max-width: 900px;
  animation: fadeUp 1.6s ease both;
}

.hero-caption h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.hero-caption p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* CTA Buttons */
.lux-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s ease;
  margin: 0 0.3rem;
}

.lux-btn:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* Fade animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, -30%); }
  to { opacity: 1; transform: translate(-50%, -40%); }
}


/* <!-- Styles specific to about section --> */
  /* Compare card focus style */
  .compare-card {
    background: white;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }
  .compare-card[aria-pressed="true"] {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 38px rgba(11,15,18,0.12);
    border-color: rgba(13,18,22,0.06);
  }

  /* Detail area */
  #saltDetails .detail { transition: opacity .28s ease, transform .28s ease; }
  #saltDetails .detail.d-none { display: none !important; }

  /* subtle card text */
  .card .card-body { padding: 1.25rem; }



  /* products */
  /* Product card container */
  .lux-product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
  }

  .lux-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  }

  /* Product image */
  .lux-product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .lux-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(90%) saturate(1.1);
  }

  /* Zoom effect on hover */
  .lux-product-card:hover .lux-product-image img {
    transform: scale(1.14);
  }

  /* Text box */
  .lux-product-body {
    padding: 1.4rem;
  }

  .lux-product-body h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: .55rem;
    color: #0f1c24;
  }

  .lux-product-body p {
    min-height: 62px;
    color: #666;
  }

  /* Luxury button */
  .lux-btn-card {
    display: inline-block;
    margin-top: .8rem;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    border: 1px solid #d5b98f;
    color: #d5b98f;
    font-size: .9rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s ease;
  }

  .lux-btn-card:hover {
    background: #d5b98f;
    color: #0f1c24;
  }


/* shop */
  /* Container link behavior */
  .lux-shop-item { 
    text-decoration:none;
    color:inherit;
  }

  /* Card */
  .lux-shop-card {
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,0.05);
    transition:transform .3s ease, box-shadow .3s ease;
  }

  .lux-shop-card:hover {
    transform:translateY(-6px);
    box-shadow:0 14px 40px rgba(0,0,0,0.12);
  }

  /* Image */
  .lux-shop-card img {
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform 1s ease;
  }

  .lux-shop-card:hover img {
    transform:scale(1.1);
  }

  /* Info */
  .lux-shop-info {
    padding:1.2rem;
  }

  .lux-shop-info h5 {
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
    margin-bottom:.4rem;
    color:#0f1c24;
  }

  .lux-shop-info p {
    margin:0;
    color:#666;
  }

  /* Price */
  .lux-price {
    display:inline-block;
    margin-top:.4rem;
    color:#d5b98f;
    font-weight:600;
    font-size:1.05rem;
  }


  /* Data section */
    /* Cert tags - subtle luxury styling */
    .cert-tag {
      padding: .8rem .9rem;
      border: 1px solid rgba(213,185,143,0.45);
      border-radius: 10px;
      background: #fffdf8;
      box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    }
  
    .cert-tag strong {
      color:#0f1c24;
    }

    /* Blog */
  .blog-card {
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
    transition:.35s ease;
  }
  .blog-card:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 38px rgba(0,0,0,0.12);
  }

  .blog-img img {
    width:100%;
    height:240px;
    object-fit:cover;
    filter:brightness(93%);
    transition:1s ease;
  }
  .blog-card:hover .blog-img img {
    transform:scale(1.08);
    filter:brightness(100%);
  }

  .blog-content {
    padding:1.4rem 1.5rem 1.6rem;
  }

  .lux-btn {
    display:inline-block;
    background:#0f1c24;
    color:#d5b98f;
    padding:.7rem 2rem;
    border-radius:8px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
    border:1px solid #d5b98f;
  }

  .lux-btn:hover {
    background:#d5b98f;
    color:#0f1c24;
  }

    /* Footer */
      .lux-footer {
        background: #0f1c24;
        border-top: 4px solid #d5b98f;
      }
    
      .footer-brand {
        font-family: 'yekan';
        font-size: 1.7rem;
        color: #d5b98f;
      }
    
      .footer-heading {
        font-family: 'yekan';
        color: #d5b98f;
        font-size: 1.2rem;
      }
    
      .footer-link {
        color: #d5b98f;
        text-decoration: none;
        display:block;
        padding:.15rem 0;
        transition:.3s;
      }
      .footer-link:hover {
        color:#fff;
        padding-left:4px;
      }
    
      .lux-social {
        font-size:1.4rem;
        color:#d5b98f;
        transition:.3s;
      }
      .lux-social:hover {
        color:#fff;
        transform:translateY(-3px);
      }
    
      .footer-map iframe {
        border-radius:12px;
        filter:grayscale(20%) contrast(1.1);
      }