/* Source: widgets-folder/widget7.html — keep CSS identical to the HTML. */
.edge-ht6 {
  --edge-ht6-primary: #094a3c;
  --edge-ht6-secondary: #daa630;
  --edge-ht6-tertiary: #000000;
  --edge-ht6-text: #1a1a1a;
  --edge-ht6-muted: #5a5a5a;
  /* Replace with your Eastland aerial or street-level photo URL */
  --edge-ht6-bg-image: url("https://edge.geeksquared.dev/wp-content/uploads/2026/07/ChatGPT-Image-Jul-14-2026-08_02_01-PM-1.png");
  --edge-ht6-heading-font: "Plus Jakarta Sans", sans-serif;
  --edge-ht6-body-font: "Poppins", sans-serif;

  position: relative;
  width: 100%;
  min-height: clamp(22rem, 52vw, 34rem);
  display: flex;
  align-items: center;
  background-color: #f7f8f7;
  color: var(--edge-ht6-text);
  font-family: var(--edge-ht6-body-font);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
  overflow: hidden;
}

.edge-ht6 *,
.edge-ht6 *::before,
.edge-ht6 *::after {
  box-sizing: border-box;
}

.edge-ht6__bg {
  position: absolute;
  inset: 0;
  background-image: var(--edge-ht6-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.edge-ht6.is-visible .edge-ht6__bg {
  transform: scale(1);
}

.edge-ht6__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 248, 247, 0.88) 45%, rgba(255, 255, 255, 0.82) 100%),
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(218, 166, 48, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.edge-ht6__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.edge-ht6.is-visible .edge-ht6__inner {
  opacity: 1;
  transform: translateY(0);
}

.edge-ht6__label {
  display: inline-block;
  font-family: var(--edge-ht6-heading-font);
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--edge-ht6-secondary);
  margin-bottom: 0.875rem;
}

.edge-ht6__headline {
  font-family: var(--edge-ht6-heading-font);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--edge-ht6-primary) !important;
  margin: 0 0 1rem;
}

.edge-ht6__copy {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--edge-ht6-muted);
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.25rem);
  max-width: 34rem;
}

#edge-ht6 a.edge-ht6__btn,
.edge-ht6 a.edge-ht6__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.385rem 1.375rem !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 24px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: #daa630 !important;
  background-image: none !important;
  border: 2px solid #daa630 !important;
  border-radius: 50px !important;
  box-shadow: none !important;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

#edge-ht6 a.edge-ht6__btn:visited,
.edge-ht6 a.edge-ht6__btn:visited {
  color: #ffffff !important;
}

#edge-ht6 a.edge-ht6__btn:hover,
#edge-ht6 a.edge-ht6__btn:focus,
.edge-ht6 a.edge-ht6__btn:hover,
.edge-ht6 a.edge-ht6__btn:focus {
  color: #ffffff !important;
  background-color: #094a3c !important;
  border-color: #094a3c !important;
  text-decoration: none !important;
  gap: 0.55rem;
  box-shadow: 0 6px 18px rgba(9, 74, 60, 0.35) !important;
  transform: translateY(-1px);
}

#edge-ht6 a.edge-ht6__btn:focus-visible,
.edge-ht6 a.edge-ht6__btn:focus-visible {
  outline: 2px solid #094a3c !important;
  outline-offset: 3px;
}

#edge-ht6 a.edge-ht6__btn:active,
.edge-ht6 a.edge-ht6__btn:active {
  color: #ffffff !important;
  background-color: #073d32 !important;
  border-color: #073d32 !important;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(9, 74, 60, 0.25) !important;
}

@media (max-width: 768px) {
  .edge-ht6 {
    min-height: clamp(20rem, 68vw, 28rem);
    padding: clamp(2.75rem, 6vw, 4rem) clamp(1rem, 4vw, 1.5rem);
  }

  .edge-ht6__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 248, 247, 0.9) 100%),
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(218, 166, 48, 0.08) 0%, transparent 55%);
  }

  #edge-ht6 a.edge-ht6__btn,
  .edge-ht6 a.edge-ht6__btn {
    width: 100%;
    max-width: 22rem;
  }
}

@media (max-width: 380px) {
  .edge-ht6__headline {
    font-size: 1.625rem;
  }

  #edge-ht6 a.edge-ht6__btn,
  .edge-ht6 a.edge-ht6__btn {
    min-height: 3rem;
    padding: 0.42rem 1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-ht6__bg {
    transform: none;
    transition: none;
  }

  .edge-ht6__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #edge-ht6 a.edge-ht6__btn:hover,
  .edge-ht6 a.edge-ht6__btn:hover {
    transform: none;
  }
}
