/* ------------------------------ */
/* 🌐 GLOBAL / BASE STYLES        */
/* ------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(0, 142, 67, 0.9) 0%,
      rgba(84, 144, 86, 0.9) 50%,
      rgba(121, 175, 146, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.diamond {
  position: absolute;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.diamond-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-outline {
  border: 1px solid white;
  background: transparent;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #047857;
}

.btn-primary {
  background: #dc2626;
  color: white;
}

.btn-primary:hover {
  background: #ef4444;
}

/* ------------------------------ */
/* 📱 MOBILE VIEW (default)       */
/* ------------------------------ */
.mobile-layout {
  display: block;
}

.desktop-layout {
  display: none;
}

.diamond-section-mobile {
  position: relative;
  width: 100%;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0rem;
}

.diamonds-container-mobile {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;

}

/* Mobile diamond positions */
.diamond-girl-mobile {
  width: 100px;
  height: 100px;
  top: -59px;
  left: 1rem;
  transform: rotate(46.82deg);
  border-radius: 10px 20px 10px 10px;
  z-index: 1;
}

.diamond-girl-mobile .diamond-inner {
  transform: rotate(-46.82deg) scale(1.5);
}

.diamond-mother-mobile {
  width: 85px;
  height: 85px;
  top: 1rem;
  right: 7rem;
  transform: rotate(-43.05deg);
  border-radius: 10px 20px 10px 10px;
}

.diamond-mother-mobile .diamond-inner {
  transform: rotate(43.05deg) scale(1.5);
}

.diamond-brothers-mobile {

  width: 85px;
  height: 85px;
  right: 6rem;
  bottom: 1rem;

  transform: rotate(136.82deg);
  border-radius: 10px 20px 10px 10px;
}

.diamond-brothers-mobile .diamond-inner {
  transform: rotate(-136.82deg) scale(1.5);
}

.diamond-oldman-mobile {
  width: 85px;
  height: 85px;
  top: -2rem;
  left: 11rem;
  transform: rotate(-133.18deg);
  border-radius: 10px 20px 10px 10px;
}

.diamond-oldman-mobile .diamond-inner {
  transform: rotate(133.18deg) scale(1.5);
}

/* Mobile Text Content */
.text-content-mobile {
  padding: 0 1.5rem 3rem;
  color: white;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.logo-bar {
  height: 24px;
  width: 8px;
  background: #dc2626;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.heading-section {
  margin-bottom: 1.5rem;
}

.heading-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.heading-divider {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

.description {
  margin-bottom: 2rem;
}

.description p {
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.625;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ------------------------------ */
/* 💻 TABLET VIEW (≥ 640px, 768px)*/
/* ------------------------------ */
@media (min-width: 640px) {
  .diamond-section-mobile {
    height: 500px;
    padding-top: 3rem;
  }

  .diamond-girl-mobile {
    width: 192px;
    height: 192px;
    left: -3rem;
    top: -5rem;
  }

  .diamond-mother-mobile {
    width: 128px;
    height: 128px;
    right: 4rem;
    top: 2rem;
  }

  .diamond-brothers-mobile {
    width: 144px;
    height: 144px;
    bottom: 3rem;
    right: 3rem;
  }

  .diamond-oldman-mobile {
    width: 160px;
    height: 160px;
    bottom: 5rem;
    left: 2rem;
  }

  .logo-bar {
    height: 32px;
  }

  .logo-title {
    font-size: 2.25rem;
  }

  .heading-text {
    font-size: 1.25rem;
  }

  .description p {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .diamond-section-mobile {
    height: 600px;
  }

  .diamond-girl-mobile {
    width: 215px;
    height: 215px;
    left: -2rem;
    top: -7rem;
    border-radius: 0px 40px 0px 0px;
  }

  .diamond-mother-mobile {
    width: 175px;
    height: 175px;
    right: -2rem;
    top: -6rem;
    border-radius: 40px 0px 0px 0px;
  }

  .diamond-brothers-mobile {
    width: 175px;
    height: 175px;
    right: 7rem;
    border-radius: 0px 40px 0px 0px;
  }

  .diamond-oldman-mobile {
    width: 175px;
    height: 175px;
    left: 10rem;
    top: 2rem;
    border-radius: 0px 0px 40px 0px;
  }

  .logo-title {
    font-size: 3rem;
  }

  .heading-text {
    font-size: 1.5rem;
  }
}

/* ------------------------------ */
/* 🖥️ DESKTOP VIEW (≥ 1024px)    */
/* ------------------------------ */
@media (min-width: 1024px) {
  .mobile-layout {
    display: none;
  }

  .desktop-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
  }

  .desktop-container {
    width: 100%;
    position: relative;
  }

  .desktop-content {
    position: absolute;
    top: 70px;
    width: 80%;
    color: white;
  }

  .desktop-logo-bar {
    height: 32px;
    width: 8px;
  }

  .desktop-logo-title {
    font-size: 38px;
  }

  .desktop-heading {
    font-size: 24px;
    font-weight: 600;
    margin: 0.5rem 0;
  }

  .desktop-description {
    width: 704px;
    margin-bottom: 2rem;
  }

  .desktop-description p {
    font-size: 14px;
    text-align: justify;
  }

  .desktop-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Desktop Diamond Section */
  .diamond-section-desktop {
    position: absolute;
    right: 250px;
    top: 20px;
    width: 450px;
    height: 100%;

  }

  .diamond-girl-desktop {
    width: 170px;
    height: 170px;
    top: 195px;
    left: 350px;
    transform: rotate(46.82deg);
    border-radius: 10px 40px 10px 10px;
  }

  .diamond-girl-desktop .diamond-inner {
    transform: rotate(-46.82deg) scale(1.5);
  }

  .diamond-mother-desktop {
    width: 130px;
    height: 130px;
    top: 110px;
    left: 500px;
    transform: rotate(-43.05deg);
    border-radius: 10px 10px 10px 40px;

  }

  .diamond-mother-desktop .diamond-inner {
    transform: rotate(43.05deg) scale(1.5);
  }

  .diamond-brothers-desktop {
    width: 130px;
    height: 130px;
    top: 315px;
    left: 500px;
    transform: rotate(136.82deg);
    border-radius: 10px 10px 10px 40px;

  }

  .diamond-brothers-desktop .diamond-inner {
    transform: rotate(-136.82deg) scale(1.5);
  }

  .diamond-oldman-desktop {
    width: 130px;
    height: 130px;
    top: 215px;
    left: 600px;
    transform: rotate(-133.18deg);
    border-radius: 10px 40px 10px 10px;
  }

  .diamond-oldman-desktop .diamond-inner {
    transform: rotate(133.18deg) scale(1.5);
  }
}