.wedding-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Top half with blue + background image overlay */
.wedding-hero__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../public/2.jpg") center/cover no-repeat;
  z-index: 1;
}

.wedding-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  opacity: 0.9;
}

/* Bottom half pure white */
.wedding-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
  z-index: 1;
}

/* Circle with golden ring */
.wedding-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.wedding-hero__circle {
  position: relative;
  width: 90%;
  max-width: 600px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wedding-hero__circle::before {
  content: "";
  position: absolute;
  inset: -10px; /* thickness of outer ring */
  border-radius: 50%;
  border: 2px solid #d4af37; /* golden ring */
}

/* Inner white circle */
.wedding-hero__inner {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.wedding-hero__logo {
  width: 180px;
  margin-bottom: var(--space-md);
}

.wedding-hero__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  /* font-family: 'Georgia', serif; */
}

.wedding-hero__title span {
  color: var(--primary-color);
}

.wedding-hero__text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  color: var(--dark);
  max-width: 85%;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .wedding-hero__circle {
    max-width: 90%;
  }

  .wedding-hero__title {
    font-size: var(--font-size-2xl);
  }

  .wedding-hero__text {
    font-size: var(--font-size-sm);
  }
}
