@import url('./font.css');

body{
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  z-index: 10;
}

/* NAVBAR GRADIENT */
.kohinoor-navbar {
  padding: 20px 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 100%
  );
}

/* LOGO */
.logo {
  height: 90px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 400;
  font-family: "Avenir", sans-serif;
  font-size: 1.125rem;
}

.navbar-nav .nav-link:hover {
  color: #d4af37;
}

/* CTA */
.shop-now-btn {
  display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 2px 12px 2px 12px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    border: 1.5px solid transparent;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #A9905B 0%, #c9a85c 50%, #6E45204D 100%) border-box;
    font-family: 'Avenir', sans-serif;
    font-size: 1.165rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

/* TEXT */
.shop-now-btn .btn-text {
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* RIGHT CIRCLE */
.shop-now-btn .btn-icon {
  width: 28px;
  height: 28px;

  border-radius: 50%;

  border: 1.5px solid rgba(255, 255, 255, 0.55);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 18px;

  transition: all 0.3s ease;
}

/* ARROW */
.shop-now-btn .btn-icon i {
  font-size: 14px;
  font-weight: 400;
}

/* HOVER (very subtle, luxury) */
.shop-now-btn:hover .btn-icon {
  border-color: rgba(212, 175, 55, 0.9);
  transform: translateX(3px);
}
@media (max-width: 991px) {
  .kohinoor-navbar {
    background: rgba(0,0,0,0.85);
  }
}


/* HERO */
.hero {
 background:
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%),
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 30%),
    linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 0%),
    linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("media/silk-fibre.jpg") center/cover no-repeat;}

.diamond {
  max-width: 25%;
}
.diamond-section{
    margin-top: 12%;
}

.button-gap{
    gap: 12%;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-btn {
    padding: 10px 22px;
  }

  .hero {
    padding: 120px 16px 80px;
    text-align: center;
  }

  .diamond {
    max-width: 70%;
    margin: 0 auto;
  }

  .diamond-section {
    margin-top: 20%;
  }

  .button-gap {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .shop-now-btn {
    width: 100%;
    max-width: 200px;
    /* justify-content: center; */
    padding: 10px 16px;
  }

  .shop-now-btn .btn-icon {
    width: 26px;
    height: 26px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 48px;
  }

  .carousel-control-prev {
    left: -12px;
  }

  .carousel-control-next {
    right: -12px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 28px;
    height: 28px;
  }

}

.classic-section {
  padding: 100px 0 10px 0;
 background:
     /* subtle watermark overlay */
   /* subtle watermark overlay */
    url("media/background-image.png") center/100% no-repeat,
    linear-gradient(to bottom,
     rgba(0, 0, 0, 1) 0%, 
     rgba(0, 0, 0, 0) 100%
     ),
    linear-gradient(to right,
     rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 0%
      ),
    linear-gradient(to left,
     rgba(0, 0, 0, 1) 0%, 
     rgba(0, 0, 0, 0) 10%
     ),
    linear-gradient(to top, 
    rgba(0, 0, 0, 1) 0%,
     rgba(0, 0, 0, 0) 40%
     ),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    url("media/silk-fibre.jpg") center/cover no-repeat;
      color: #fff;
  overflow: hidden;
}

/* Background big text */
.classic-section::after {
  content: "LORE";
  position: absolute;
  bottom: -40px;
  right: 5%;
  font-size: 180px;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  font-family: 'Footspring', serif;
}

/* Heading */
.section-title {
    font-family: 'Footspring', serif;
  font-size: 3.536rem;
  font-weight: 700;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 4px 18px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #FEE39B 0%,
    #C88122 100%
  );

  color: #000;
  font-family: 'Avenir', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;

  letter-spacing: 0.3px;
  margin-bottom: 2rem;
}

/* black dot */
.about-pill .pill-dot {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.legacy-watermark-img {
  position: absolute;
  right: 0;
  bottom: 40px;

  max-width: 500px;   /* control size */
  width: 100%;
  height: auto;

  pointer-events: none;

  z-index: 1;
}
@media (max-width: 991px) {
  .legacy-watermark-img {
    max-width: 200px;
    right: 20px;
    bottom: 20px;
    opacity: 0.06;
  }
}

@media (max-width: 576px) {
  .legacy-watermark-img {
    max-width: 140px;
    right: 16px;
    bottom: 16px;
    opacity: 0.05;
  }
}
/* Cards */
.classic-card {
  position: relative;
  overflow: visible;
  perspective: 1000px;
  cursor: pointer;
  height: 500px;
  min-height: 500px;
}

.flip-btn-mobile {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FEE39B 0%, #C88122 100%);
  border: none;
  border-radius: 50px;
  color: #000;
  font-family: 'Avenir', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.flip-btn-mobile:active {
  transform: translateX(-50%) scale(0.95);
}

@media (max-width: 991px) {
  .flip-btn-mobile {
    display: block;
  }
  
  .classic-card.flipped .flip-btn-mobile {
    display: none;
  }
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.classic-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
}

.card-front {
  z-index: 2;
  top: 0;
  left: 0;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.card-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  background: #F1CC7F;
  border: 1px solid rgba(202, 168, 92, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  /* padding: 30px; */
}

.back-content {
  position: relative;
  color: #fff;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  padding: 30px;
  padding-bottom: 60px;
}

.back-content h3 {
  font-family: 'Footspring', serif;
  color: #000;
 font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0;
  letter-spacing: 1px;
}


.back-content p {
  font-family: 'Avenir', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.recipe {
  text-align: left;
  width: 87%;
  /* margin-top: 4px; */
}

.recipe h5,
.recipe p,
.recipe li {
  text-align: left;
}
.recipe h5 {
  font-family: 'Avenir', sans-serif;
  font-size: 1.356em;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.recipe p, .recipe li {
  font-family: 'Avenir', sans-serif;
    font-size: 1.356em;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
}

.recipe ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

/* .back-image {
  margin: 20px 0;
} */

.back-image img {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-60%);
  width: 220px !important;
}

.back-description {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.classic-card img {
  width: 100%;
  border-radius: 4px;
}

.spirits{
    font-weight: 600;
    margin-bottom: 10px;
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 1;
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background-size: 39px 25px;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .classic-section::after {
    font-size: 100px;
    bottom: -20px;
  }
}
@media (min-width: 1200px) {
  .container:not(.container-fluid) {
    max-width: 1200px;
  }
}


.decor-line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  /*margin-bottom: 2rem;*/
}

.heritage-decor {
  width: 25%;
  height: auto;
}

@media (max-width: 576px) {
  .decor-line {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .heritage-decor {
    max-width: 60%;
  }
}





.gallery-signup-section {
  position: relative;
  padding: 20px 0 120px 0;
  /* background: url('media/background-image.png') center/cover no-repeat; */
  color: #ffffff;
  overflow: hidden;

  background: radial-gradient(
    ellipse at center,
    #041123 0%,
    #020b18 40%,
    #000000 100%
  );
}
.gallery-signup-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%),
    linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 37%),
    url("media/slik-fabric-background.png") center/cover no-repeat;

  z-index: 1;
}
.gallery-perform::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url("media/background-image.png") center/cover no-repeat;

  z-index: 3; /* 🔥 top layer */
  pointer-events: none; /* content clickable rahe */
}

/* LEFT + RIGHT dark */
/* .gallery-signup-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to right,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0) 80%,
      rgba(0,0,0,0.9) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.9) 100%
    );

  z-index: 0;
} */
.gallery-card {
  position: relative;
  /* border-radius: 16px; */
  overflow: hidden;
  z-index: 5;
}

.gallery-card img {
  width: 100%;
  display: block;
}

/* HOVER OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.85)
  );

  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-overlay span {
  font-family: "Alverata", sans-serif;
  font-size: 2.344rem;
  color: white;
  font-weight: 600;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.signup-content {
  margin-top: 5%;
  position: relative;
  z-index: 5;
}

/* .signup-email {
  opacity: 0.7;
  margin-bottom: 20px;
} */
.signup-email {
  margin-bottom: 4%;
  margin-top: 2%;
}

.signup {
  font-size: 3.281rem;
  font-weight: 300;
  font-family: "Avenir", sans-serif;
}

.signup-link {
  display: inline-flex; /* icon + text act as one unit */
  align-items: center;
  gap: 10px;

  color: #5c5c5c;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;

  padding-bottom: 2px; /* space above underline */
  border-bottom: 1px solid rgba(255, 255, 255, 0.35); /* underline */
}

.signup-link i {
  color: #aa8453;
  font-size: 1.125rem;
}

.shop-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  padding: 3px 7px 3px 12px;
  border-radius: 50px;

  text-decoration: none;
  color: #ffffff;

  /* GOLD GRADIENT BORDER */
  border: 1.5px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #a9905b 0%, #c9a85c 50%, #6e45204d 100%) border-box;

  font-family: "Avenir", sans-serif;
  font-size: 0.938rem;
  font-weight: 300;

  transition: all 0.3s ease;
}

/* TEXT */
.shop-now-btn .btn-text {
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* RIGHT CIRCLE */
.shop-now-btn .btn-icon {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  /* FADED BORDER EFFECT */
  border: 1.5px solid rgba(255, 255, 255, 0.55);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 9px;

  transition: all 0.3s ease;
}

/* ARROW */
.shop-now-btn .btn-icon i {
  font-size: 9px;
}

/* HOVER (very subtle, luxury) */
.shop-now-btn:hover .btn-icon {
  border-color: rgba(212, 175, 55, 0.9);
  transform: translateX(3px);
}

.brand-mark {
  text-align: center;
  position: relative;
  z-index: 5;
}
.brand-mark img {
  max-width: 200px;
  margin: 50px auto 30px;
}

.logo-button {
  position: relative;
  z-index: 6;
}
/* .media-kit {
  color: #AA8453;
  font-family: "Avenir", sans-serif;
  text-decoration: underline;
  font-size: 1.641rem;
} */

.media-kit {
  display: inline-flex;
  align-items: center; /* vertical alignment */
  gap: 10px; /* space between arrow & text */

  color: #aa8453;
  font-family: "Avenir", sans-serif;
  text-decoration: underline;
  font-size: 1.641rem;
  position: relative;
  z-index: 5;
}

.media-kit img {
  width: 1.641rem; /* control arrow size */
  height: auto;
  display: block;
}






.kohinoor-footer {
  position: relative;
  padding: 0px 0 40px;
background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 40%,
    rgba(0,0,0,0.95) 100%
  );   color: rgba(255,255,255,0.75);
  overflow: hidden;
}
.footer-top-nav {
  padding: 0px 0 20px;
}

.footer-nav-inner {
  display: flex;
  align-items: center;
  gap: 12%;
}

.footer-logo img {
  max-width: 160px;
}

.footer-nav-links {
  display: flex;
  gap: 40%;
}

.footer-nav-links a {
  font-family: "Avenir", sans-serif;
  color: #AA8453;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
}
.footer-main {
  padding: 40px 0 30px;
}

.location, .footer-tagline {
   font-family: "Avenir", sans-serif;
  color: #AA8453;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
}


.footer-address {
  display: flex;
  align-items: flex-start; /* icon aligns to top */
  gap: 10px;
  line-height: 1.8;
}

.footer-address i , .footer-link i {
  color: #AA8453;
  font-size: 25px;
}

.footer-link{
  display: flex;
  align-items: flex-start; /* icon aligns to top */
  gap: 10px;
}

.footer-address span, .footer-paragraph {
  display: block;
  font-family: "Avenir", sans-serif;
  color: #ffffff;
  font-size: 0.938rem;
  line-height: 25px;
  font-weight: 300;
}


.footer-link  span{
   display: block;
  font-family: "Avenir", sans-serif;
  color: #ffffff;
  font-size: 0.938rem;
  line-height: 25px;
  font-weight: 300;
  margin-top: 0.5rem;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
}
.copyright{
  font-family: "Avenir", sans-serif;
  color: gray;
  font-size: 0.75rem;
  font-weight: 500;
   display: block;
  text-align: center;
}
.buffalosoldiers{
    font-family: "Avenir", sans-serif;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .footer-nav-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


@media (max-width: 767.98px) {
  .signup {
    font-size: 2.5rem;
            margin-bottom: 1.5rem;

  }
  .brand-mark img {
    max-width: 160px;
    margin: 50px auto 30px;
}
.media-kit {
    font-size: 1.25rem;
}
.media-kit img {
  width: 1.2rem;
}

}

@media (max-width: 576px) {
  .signup {
    font-size: 2rem;
        margin-bottom: 1.5rem;
  }
  .brand-mark img {
    max-width: 160px;
    margin: 50px auto 30px;
}
.media-kit {
    font-size: 1.25rem;
}
.media-kit img {
  width: 1.2rem;
}

}



