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

body{
  overflow-x: hidden;
}



/* AGE GATE */
#ageGate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
}

.age-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,    
    rgba(0,0,0,0.5) 0%,    
    rgba(4, 17, 35, 0.8) 100%  
    );
  z-index: 1;
}

.age-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.age-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.age-box {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.brand {
  font-family: serif;
  font-style: italic;
  margin-bottom: 5px;
}

.logo {
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.logo span {
  font-size: 14px;
  letter-spacing: 6px;
}

.age-box h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 4rem;
font-family: 'Alverta-bold', serif;
}

.age-box p {
  letter-spacing: 2px;
  font-size: 1.594rem;
  font-family: 'Alverta-bold', serif;

}

.age-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.age-buttons button {
  min-width: 120px;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  font-size: 0.938rem;
  letter-spacing: 2px;
  cursor: pointer;
  background: #caa35c;
  color: #fff;
  transition: all 0.3s ease;
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
}

.age-buttons button:hover {
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .age-buttons {
    flex-direction: column;
  }
}





/* HEADER */
/* HEADER */
.sites-header {
  z-index: 100;
}

/* 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;
}
.shop-now-btn:hover {
  color: #ffffff;
}

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

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

  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: 18px;
  font-weight: 300;
}

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


[type=button]:not(:disabled){
    border-color: none;
    background: transparent;
    padding: 7px 7px 10px 7px;
}


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

.content-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;
  min-height: 100vh;
    padding-top: 130px;
    z-index: 50;
}

.content-section h1,
.content-section p {
  position: relative;
  z-index: 100;
  color: #ffffff;
}

.content-section h1 {
    font-family: 'Footspring', serif;
  font-size: 56px;
  margin: 2rem 0;
  text-align: center;
}

.content-section p {
  font-family: 'Avenir', sans-serif;
  font-size: 1rem;
  line-height: 1.6;}

.decor-lines {
  text-align: center;
  margin: 40px auto;
  max-width: 350px;
}

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

@media (max-width: 768px) {
  .decor-line {
    max-width: 140px;
  }
}





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

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;

}

.gallery-perform::after {
  content: "";
  position: absolute;
  inset: 0;


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



/* .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: 2px;

  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 8px 3px 10px;
  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;
}

@media (max-width: 991px) {
  .gallery-cards {
    text-align: center;
  }

  /*.signup-content {*/
  /*  margin-top: 80px;*/
  /*}*/

  .card-overlay span {
    font-size: 18px;
  }
}




.kohinoor-footer {
  position: relative;
  padding: 0px 0 40px;
background: linear-gradient(
     to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,1) 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 ul {
  display: flex;
  align-items: center;
  gap: 35%;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

}

@media (max-width: 768px) {
  .footer-nav-inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  /* UL becomes vertical list */
  .footer-nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* List items */
  .footer-nav-links ul li {
    margin: 0;
  }
}

.wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    direction: ltr;
    width: 30%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 4px;
    color: #fff;
}
.content-section h4 {
  font-family: 'Avenir', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #dec470;
}
