/* Open Garden Wedding Section */
.dlv-open-garden {
  position: relative;
  width: 100%;
  background: var(--white);
  padding: var(--space-2xl) var(--space-lg);
}

.dlv-open-garden__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Content */
.dlv-open-garden__content {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  background: radial-gradient(circle at top left, #f8f9fa 70%, transparent 100%);
  border-radius: var(--radius-lg);
}

.dlv-open-garden__title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  /*font-family: 'Georgia', serif;*/
}

.dlv-open-garden__title span {
  color: var(--primary-color); /* golden shade */
  font-weight: var(--font-weight-bold);
}

.dlv-open-garden__text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  color: var(--dark-gray);
  margin-bottom: var(--space-lg);
  max-width: 550px;
}

.dlv-open-garden__btn {
  display: inline-block;
  background: var(--primary-color); /* gold button */
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: background var(--transition-normal);
}

.dlv-open-garden__btn:hover {
  background: #96741e;
}

/* Right Image */
.dlv-open-garden__image {
  flex: 1;
}

.dlv-open-garden__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 992px) {
  .dlv-open-garden__container {
    flex-direction: column;
    text-align: center;
  }

  .dlv-open-garden__content {
    padding: var(--space-lg);
    background: none; /* cleaner on mobile */
  }

  .dlv-open-garden__text {
    margin: 0 auto var(--space-lg);
  }
}
