/*
 Theme Name:  Twenty Twenty-Five Child
 Template:    twentytwentyfive
 Version:     1.0
*/

/* Global Swiper Pagination Styles */
.swiper-pagination {
  position: relative !important;
  margin-top: 40px !important;
  text-align: center !important;
  width: 200px !important;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 12px;
  background: white;
  outline: 2px solid #3db87d;
  outline-offset: -2px;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 10px;
  cursor: pointer;
  margin: auto 2.5px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #3db87d;
  width: 60px;
  max-height: 12px;
  margin: 0;
  padding: 0;
  transform: scale(1);
}

/* Dynamic bullets styling */
.swiper-pagination .swiper-pagination-bullet-active-main {
  background: #3db87d;
}

.swiper-pagination .swiper-pagination-bullet-active-prev,
.swiper-pagination .swiper-pagination-bullet-active-next {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(1);
  width: 12px;
  height: 12px;
  margin: auto 2.5px;
}

/* Hide pagination on desktop only for testimonials block */
@media (min-width: 769px) {
  .testimonials-block .swiper-pagination {
    display: none !important;
  }
}

/* CTA Button Component Styles */
.cta-button {
  /* Default styling */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 5px 5px 20px;
  border: none;
  border-radius: 70px;
  background: #f99c28;
  color: #000;
  font-weight: 600;
  font-family: var(--wp--preset--font-family--inter-tight, sans-serif);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateX(2px);
}

.cta-button-label {
  font-size: 18px;
  color: var(--cta-text-color, #2a402f);
}

/* Parent can override positioning and other styles */
.newsletter-form .cta-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  border-radius: 0 70px 70px 0;
}

.cta-button-icon {
  width: 40px;
  height: 40px;
  background: #2a402f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

/* Fix parent theme CSS that might be interfering with normal display */
.wp-block-template-part[data-area="header"] {
  display: block !important;
}

.wp-site-blocks > header {
  display: block !important;
}

/* Join Us Page Override */
.page-id-632 .adventure-hero-block {
  padding-top: 150px;
}

.page-id-632 .adventure-hero-content {
  gap: 30px;
}

.page-id-632 .adventure-hero-description {
  columns: 2;
  column-fill: balance;
  color: black;
  opacity: .75;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 768px) {
  .page-id-632 .adventure-hero-block {
    padding-top: 30px;
  }

  .page-id-632 .adventure-hero-description {
    columns: 1;
    text-align: left;
  }

  .page-id-632 .adventure-hero-description p:not(:last-child) {
    margin-bottom: 40px;
  }
}