/* pricing.css */

/* General Styling */
.wedding-collections {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Package Card Layout */
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* Package Image */
.package-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

/* Package Info */
.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1rem;
}

/* Title */
.package-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Package List */
.package-list {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.package-list li {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

/* Description */
.package-description {
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Price */
.package-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

/* Button */
.contact-button {
  background-color: #333;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #5ff4f4;
  color: #000;
}

/* Additional Services Section */
.additional-services-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.service-card {
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-price {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.service-list {
  padding-left: 1rem;
}

.service-list li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-button {
  border: 2px solid #000 !important; /* Always visible border */
  background-color: transparent !important;
  color: #000 !important;
  padding: 0.4rem 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.85rem;
  border-radius: 4px; /* Optional: gives it a bit of rounding */
}

.contact-button:hover {
  background-color: #000 !important;
  color: #fff !important;
  text-decoration: none;
  border: 2px solid #000 !important;
}

.contact-button:focus,
.contact-button:active {
  outline: none;
  box-shadow: none;
}