/* Events Page Specific Styles */
.events-hero {
  background-color: #ffc0dc;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-family: "Brittany Signature", cursive;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content p {
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.events-intro {
  max-width: 70%;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 20px;
}

.events-intro p {
  margin-bottom: 0;
}

/* Custom Events Section */
.custom-events-section {
  background: #fff9fa;
  padding: 40px 0;
}

.custom-events-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 1.1rem;
}

.custom-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-event-type {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-event-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.custom-event-type h3 {
  color: #ff5da4;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.custom-event-type p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-minimum {
  background: #f8f8f8;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  color: #333;
}

/* Quote Form Section */
.quote-form-section {
  padding: 40px 0;
  background: #ffc0dc;
}

.quote-form-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.quote-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff5da4;
  box-shadow: 0 0 0 3px rgba(255, 107, 139, 0.1);
  outline: none;
}

.required {
  color: #ff5da4;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: #ff5da4;
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #d83d7f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
}

#current-events {
  position: relative;
  padding: 2em 0;
  background-color: #ffc0dc;
}

.events-heading {
  color: #ffffff;
  text-align: center;
  padding-bottom: 0.1em;
  position: relative;
  z-index: 2;
  font-family: "Fredoka", sans-serif;
  text-transform: uppercase;
}

.events-section {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.events-carousel {
  overflow: hidden;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 2em;
}

.events-grid {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1.2em;
}

.event-card {
  flex: 0 0 calc(25% - 1em);
  background-color: #ffffff;
  border-radius: 2em;
  padding: 1em;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.event-name {
  color: #d83d7f;
  font-size: 2em;
  margin-bottom: 0.1em;
  font-weight: bold;
  font-family: "Fredoka", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-date {
  color: #d83d7f;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 600;
  min-height: 1.8em;
}

.event-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  border: 5px solid #d83d7f;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1em;
  flex-shrink: 0;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-caption {
  color: rgb(0, 0, 0);
  font-family: "Glacial Indifference", sans-serif;
  font-size: 1.5em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-prev,
.event-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff5da4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.8em;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.event-prev:hover,
.event-next:hover {
  background-color: #d83d7f;
}

.event-prev {
  left: -2em;
}

.event-next {
  right: -2em;
}
.label {
  /**/
}

/* Responsive Design */
@media (max-width: 768px) {
  .events-hero {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 30px 20px;
  }

  .custom-events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-event-type {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .events-intro {
    font-size: 1rem;
  }

  .custom-events-section h2,
  .quote-form-section h2 {
    font-size: 2rem;
  }
}

/* Special Offers Section - Updated */
.special-features {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.special-features span {
  background: #f0f8ff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #333;
  display: inline-block;
  width: fit-content;
}

.special-card .special-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
  flex-wrap: wrap;
}

.special-price {
  font-weight: bold;
  color: #ff5da4;
  font-size: 1.3rem;
}

.special-serves {
  color: #666;
  font-size: 0.9rem;
  background: white;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Tab responsiveness */
@media (max-width: 768px) {
  .special-offers-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
  }

  .specials-grid {
    grid-template-columns: 1fr;
  }

  .special-features {
    flex-direction: column;
  }

  .special-card .special-details {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Special Offers Section */
.special-offers-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff9fa 0%, #fff0f3 100%);
}

.special-offers-section h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
  font-size: 5rem;
}

.special-offers-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.tab-button {
  background: white;
  border: 2px solid #ff5da4;
  color: #ff5da4;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  background: #ff5da4;
  color: white;
}

.specials-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.specials-grid.active {
  display: grid;
}

.special-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.special-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Modern approach for square */
  overflow: hidden;
}

.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.special-card:hover .special-image img {
  transform: scale(1.05);
}

.special-content {
  padding: 25px;
}

.special-content h3 {
  color: #ff5da4;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.special-description {
  color: #000000;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.special-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
}

.special-price {
  font-weight: bold;
  color: #ff5da4;
  font-size: 1.3rem;
}

.special-serves {
  color: #666;
  font-size: 0.9rem;
  background: white;
  padding: 4px 8px;
  border-radius: 12px;
}

.special-features {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.special-features span {
  background: #f0f8ff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #333;
  display: inline-block;
  width: fit-content;
}

.special-cta {
  background: #ff5da4;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.special-cta:hover {
  background: #d83d7f;
}

/* Tab responsiveness */
@media (max-width: 768px) {
  .special-offers-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
  }

  .specials-grid {
    grid-template-columns: 1fr;
  }

  .special-features {
    flex-direction: column;
  }

  .special-card .special-details {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.calendly-badge-widget {
  z-index: 9999 !important;
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
}
