/* Hero */

.hero-section::before {
  background: transparent !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #985432;
  padding-top: 35%;
  font-family: "Typhone" !important;
}

/* .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: .5rem;
  } */

.shapes-versatile-approved-gia {
  background: linear-gradient(
    180deg,
    #f0e4dd 0%,
    #f0e5de 45%,
    #ffffff 65%,
    #e4cfc5 100%
  );
}

/* Array of Shapes */

.array-of-shapes {
  position: relative;
  color: #985432;
  padding-top: 15%;
}

.array-of-shapes::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, #f1e5de 20%, #fff 80%); */
  opacity: 0.6;
}

.shape-ring {
  position: absolute;
  width: 100%;
  /* max-width: 600px; optional, controls overall size */
  margin: 0 auto;
}

.shapes-image,
.approved-gia-image {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
}

.array-of-shapes .container-fluid,
.array-of-shapes .shapes-content {
  position: relative;
  z-index: 2;
}

.shapes-content {
  text-align: center;
}

.shapes-content h1 {
  font-size: 40px;
}

.shapes-content p {
  font-size: 17px;
  margin-top: 27px;
}

.ring-images {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  height: 100vh;
  align-items: center;
}

.rign-wrapper {
  margin: 0px 20px;
}


/* Position each diamond using percentage */

.diamond1 {
  left: 40%;
}

.diamond2 {
  left: 62%;
  top: 60%;
}

.diamond3 {
  left: 70%;
}

/* The container for the entire image component */
.ring-container {
  /* Use relative positioning to allow the diamond to be positioned within it */
  position: absolute;
  /* Make the container responsive, up to a maximum size */
  width: 100%;
  /* Ensure the container's height scales with its width to maintain aspect ratio */
  aspect-ratio: 1 / 1;
  margin-top: -15%;
}

/* Styling for the background image (the hand with the ring) */
.hand-image {
  display: block;
  width: 100%;
  height: auto;
}

.diamond-image {
  position: absolute;
  top: 26%;
  left: 61%;
  width: 150px;
  height: 200px;
  object-fit: contain;
  opacity: 0;
  transform: translateX(-50px); /* always start off-screen LEFT */
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.diamond-image.slide-in {
  opacity: 1;
  transform: translateX(0); /* move to center */
}

.diamond-image.slide-out {
  opacity: 0;
  transform: translateX(50px); /* move out to RIGHT */
}


.video-box-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.video-box-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: 2; /* make sure it’s above video */
  pointer-events: none; /* allow clicking/interaction with video */
}

.video-box-container .video-box {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
  z-index: 1;
  position: relative;
}

/* Versatile Collection */

.versatile-section {
  color: #000;
  /* margin-top: 5%;    */
  height: 65vh;
}
.versatile-section .hero-title {
  margin-top: 0 !important;
}
.versatile-section h3 {
  color: #985432;
}

.versatile-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.versatile-section p,
ul {
  color: #545454 !important;
  font-size: 22px;
  line-height: 27px;
}

.approved-gia {
  /* background: url("../images/Products/kapu13 2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; */
}

/* Approved Manufacturer */

.approved-section,
.versatile-section {
  padding: 35% 20px;
  /* background: #fff; */
}

.approved-section h3 {
  color: #985432;
}

/* GIA Certified Diamonds */

.gia-section {
  padding: 8%;
}

.gia-section h3 {
  color: #7b3e2c;
}

@media (max-width: 768px) {
  .hero-diamonds {
    content: url("../images/Products/product_mob_bg.png");
    object-fit: fill;
  }
  .hero-content {
    padding-top: 70vh;
  }
  .array-of-shapes {
    padding-top: 8em;
  }
  .shapes-image,
  .hand-image {
    content: url("../images/Products/hand_mob.png");
    object-fit: fill;
  }
  .shapes-content {
    padding-top: 20rem !important;
    padding-bottom: 4rem !important;
    text-align: center;
  }
  .diamond-image {
    top: 30%;
    left: 43%;
    width: 120px;
    height: 150px;
    object-fit: contain;
  }
  .shapes-content p {
    font-size: 12px;
  }
  .shapes-versatile-approved-gia {
    background: linear-gradient(
      180deg,
      #efe3dc 0%,
      #f0e5de 45%,
      #ffffff 65%,
      #e4cfc5 100%
    );
  }
  .versatile-section {
    height: 100vh;
  }
  .versatile-section,
  .gia-section p,
  ul {
    font-size: 12px !important;
  }
  .versatile-section .hero-title, .versatile-section .hero-subtitle{
    text-align: center;
  }
  .approved-section {
    padding-bottom: 0 !important;
  }
  .approved-section .hero-title,
  .approved-section .hero-subtitle {
    text-align: center !important;
  }
  .gia-section .hero-title,
  .gia-section .hero-subtitle {
    text-align: center !important;
  }
  .approved-section p, .gia-section p {
    font-size: 12px !important;
    text-align: center;
  }
}
@media (max-width: 325px) {
  .diamond-image {
    top: 26%;
    left: 38%;
    width: 80px;
    height: 100px;
    object-fit: contain;
  }
}
@media (min-width: 325px) and (max-width: 450px) {
  .diamond-image {
    top: 28%;
    left: 41%;
    width: 80px;
    height: 100px;
    object-fit: contain;
  }
}

@media (min-width: 770px) and (max-width: 1024px) {
  .diamond-image {
    top: 25%;
    left: 62%;
    width: 120px;
    height: 150px;
    object-fit: contain;
  }
}
/* Global Footprint */

/* .footprint-section {
    padding: 60px 20px;
    background: #f6e5dc;
    border-top: 1px solid #e1cfc5;
}

.newsletter-form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.newsletter-form button {
    background: none;
    border: none;
    color: #7b3e2c;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
} */

/* ------------------------------
   GLOBAL FOOTPRINT
   ------------------------------ */

/* .global-footprint {
    background: #FAF1EB;
    width: 70%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: -300px;
}

.global-footprint h4 {
    font-size: 1.4rem;
    color: #210d07;
}

.global-footprint .form-control {
    border-radius: 25px;
    padding: .5rem 1rem;
}

.global-footprint .btn {
    border-radius: 25px;
    padding: .5rem 1.5rem;
    background: #210d07;
    color: #fff;
}

.global-footprint .logos img.logo {
    max-height: 60px;
    transition: filter .3s;
}

.global-footprint .logos img.logo:hover {
    filter: grayscale(0%);
} */

/* ------------------------------
     FOOTER
     ------------------------------ */

/* .footer-section {
    padding-top: 400px !important;
} */
