/* GLOBAL STYLES */
:root {
  --text-color: #452c22;
  --button-bg: #f7ded0;
  --body-bg: #f9f9f9;
  --form-section-bg: #fbf7f5;
  --package-bg: #ffffff; /* Background color for package cards */
  --package-border: #ddd; /* Border color for package cards */
  --highlight-color: #452c22; /* Accent color for highlights */
}

.disclaimer {
  background-color: var(--form-section-bg);
  color: var(--text-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease-in-out;
}

/* General Services containers */
.services-container .font-italic {
  font-style: italic;
  color: #6d6d6d;
  margin-bottom: 20px;
}

.packages-section {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.packages-section h2 {
  font-family: "josephine";
}

/* Package Cards */
.package-card {
  height: 90%;
  background-color: #f9e6cf; /* Soft light background color */
  border: 2px solid #e6dcd7; /* Subtle border with light beige */
  border-radius: 12px; /* Softer, rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Softer, more subtle shadow */
  margin: 20px 0;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.package-card h2 {
  font-size: 1.8rem;
  color: #b8475d; /* Modern highlight color */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Slightly tighter spacing */
  font-weight: 500; /* Subtle weight for modern feel */
}

.package-card p {
  font-size: 1.1rem;
  color: #3f4c51; /* Dark slate text color */
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400; /* Light font weight for sleekness */
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.package-card ul li {
  font-size: 1rem;
  color: #555; /* Softer text for list items */
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.package-card ul li::before {
  content: "🍩";
  margin-right: 10px;
  font-size: 1.2rem;
}

.package-card .price {
  font-size: 1.7rem;
  font-weight: bold;
  color: #b8475d; /* Highlight color for price */
  margin-top: 15px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  animation: bounce 2s infinite;
}

/* Card contents */
.package-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.package-features li {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.package-features li::before {
  content: "🍩";
  margin-right: 10px;
  font-size: 1.1rem;
  color: var(--highlight-color);
}

.success-message {
  background-color: #674233;
  color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 60vw;
  padding: 10px;
}

/* Add a playful bounce effect for the price */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .package-card {
    margin: 15px 10px;
    padding: 15px;
  }
  .package-card h2 {
    font-size: 1.6rem;
  }
  .package-card ul li {
    font-size: 0.9rem;
  }
}
