@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: 5px 9px 5px 16px;
  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: 500;

  transition: all 0.3s ease;
}

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

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

  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: 18px;

  transition: all 0.3s ease;
}

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

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



@media (min-width: 1400px) {
  .container {
    max-width: 1200px; /* or 1140px */
  }
}





.buy-now-section {
  position: relative;
  background:  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;
  overflow: hidden;
}

/* GLOBAL DARK VIGNETTE */
.buy-now-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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%
    );
  z-index: 1;
}

/* BOTTLE */
.buy-bottle {
  position: absolute;
  left: -13%;
  top: 20%;
  z-index: 2;
  pointer-events: none;
}

/* Strong black gradient around the bottle */
.buy-bottle::before {
  content: "";
  position: absolute;
  left: -100px;
  right: -100px;
  top: -90px;
  bottom: -180px; /* extend further below for stronger bottom shadow */
  background:
   /* Bottom emphasis */
    linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 55%),
    /* Core halo */
    radial-gradient(
      ellipse at 100% 70%,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.72) 49%,
      rgba(0, 0, 0, 0.9) 94%,
      rgba(0, 0, 0, 0.9) 100%
    );
  filter: blur(2px);
  z-index: 1; /* behind the bottle image */
}

.buy-bottle img {
  position: relative;
  display: inline-block;
  width: 50%;
    filter: drop-shadow(0 0 80px rgba(0,0,0,0.9));

}

.buy-title::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -30%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: -1;
}
 

/* CENTER WRAPPER (true center of screen) */
.buy-center {
  position: relative;
  z-index: 10;
  padding: 200px 20px 200px 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

/* BUY NOW TEXT (behind buttons) */
.buy-title {
  position: relative;
  display: block;
  width: clamp(220px, 80vw, 75%);
  max-width: 90vw;
  height: auto;
  margin: 0 auto;
  pointer-events: none;
}

/* BUTTONS */
.region-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.region {
  padding: clamp(6px, 1.5vw, 8px) clamp(16px, 4vw, 22px);
  border-radius: 30px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #a9905b 0%, #c9a85c 50%, #6e45204d 100%) border-box;  color: #fff;
  font-size: clamp(13px, 3vw, 15px);
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.85;
  text-decoration: none;
}

.region:active, .region:hover {
  border-color: #fff;
  opacity: 1;
}

/* Persistent active state if .active class is toggled */
.region-tabs .region.active {
  border-color: #fff;
  opacity: 1;
}
.buy-links {
margin-top: 3rem;
}

/* LINKS */
.buy-links a {
  display: block;
  color: #fff;
  text-decoration: underline;
  font-size: clamp(13px, 3vw, 15px);
  font-weight: 400;
}

.buy-links a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .buy-bottle {
    display: none;
  }

  .buy-center {
    padding: 180px 20px 40px;
  }

  .buy-title {
    font-size: 8rem;
    /* letter-spacing: 6px; */
    margin-bottom: 0;
  }

  .region-tabs {
    gap: 10px;
    margin-bottom: 28px;
  }

  .buy-links {
    margin-top: 2.5rem;
  }
}

@media (max-width: 768px) {
  .buy-center {
    padding: 150px 15px 30px;
  }

  .buy-title {
    font-size: 5rem;
    /* letter-spacing: 4px; */
    margin-bottom: 0;
  }

  .region-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }

  .buy-links {
    margin-top: 2rem;
  }

  .heritage-decor {
    width: 50%;
    margin-bottom: 12%;
}
}
  .decor-lines .heritage-decor {
  width: 320px;
  max-width: 80%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
    margin-bottom: 5%;
}

@media (max-width: 767.98px) {
  .decor-lines .heritage-decor {
    width: 140px;
    max-width: 70%;
  }
}





.hertage-decor{
    width: 20%;
}

.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;
}

}