
/* Section Layout */
.wedding-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Text Area */
.content {
  flex: 1 1 400px;
  min-width: 300px;
}

.content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-button {
  background-color: #caa85c;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b99649;
}

/* Images Column */
.images {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.images img {
  width: 240px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .wedding-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .images {
    justify-content: center;
  }

  .images img {
    width: 320px;
  }
}
