/* Pool Side Celebration Section */
.dlv-poolside {
  position: relative;
  width: 100%;
  background: var(--bg-secondary, #f7fafc);
  padding: var(--space-2xl) var(--space-lg);
}

.dlv-poolside__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Image */
.dlv-poolside__image {
  flex: 1;
}

.dlv-poolside__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Right Content */
.dlv-poolside__content {
  flex: 1;
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dlv-poolside__arc {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200px;
  background: #f2f2f2;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  z-index: 0;
}

.dlv-poolside__title {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  /* font-family: 'Georgia', serif; */
}

.dlv-poolside__title span {
  color: var(--primary-color); /* gold accent */
  font-weight: var(--font-weight-bold);
}

.dlv-poolside__text {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  color: var(--dark-gray);
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .dlv-poolside__container {
    flex-direction: column;
    text-align: center;
  }

  .dlv-poolside__content {
    margin-top: var(--space-lg);
  }
}
