
  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

 :root {
  --primary-color: #00381F;
  --accent-color: #0B5844;
  --accent-golden: #d99201;
  --antbear-green: #487457;
  --text-color: #5d5d5d;
  --white: #fff;
  --black: #000;

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #fff;
}

@font-face {
    font-family: 'Motterdam';
    src: url('css/Motterdam-K74zp.ttf') format('truetype'),
         url('css/Motterdam-MVanr.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
}

* {
margin: 0;
padding: 0;
}

html, body {
  height: 100%;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  ::-webkit-scrollbar {width: 10px;}
  ::-webkit-scrollbar-track {background-color: hsl(0, 0%, 98%);}
  ::-webkit-scrollbar-thumb {background-color: hsl(0, 0%, 80%);}
  ::-webkit-scrollbar-thumb:hover {background-color: hsl(0, 0%, 70%);}
}

body {
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  overflow-x: hidden;
  /* background: rgba(0,0,0,0.8);  */
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, p {
  overflow-wrap: break-word;
}

li,
a,
button {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.debug {
    border: 2px solid red;
}

/*----------------------------------------------------------------  */
/*---------------------------------Page Layout -------------------  */
/*----------------------------------------------------------------  */



h1 {
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  
}

/* .cta-buttons {
    
    align-items: flex-start;
    align-self: stretch;
    position: relative;
} */

/* 
.action-button {
  padding: 0.9rem 1.5rem;
  background-color: var(--antbear-green);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid  #487457;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.action-button:hover {
    background-color: #00381F;
    color: #fff;
    transform: scale(1.01);
    } */

/* .secondary-button {
  padding: 0.9rem 1.3rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border: 2px solid  #FFF;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    border: 2px solid  #00381F;
    } */

@media (max-width: 780px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
    margin: 1.5rem;
  }

  h2 {
    font-size: 1.8rem;
    margin: 1rem;
  } 

  .cta-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .cta-buttons button,
  .cta-buttons .action-button,
  .cta-buttons .secondary-button {
    width: 100%;
  }

}

/*-------------------------------------------------------------------------------------------------------------------------------  */

.hero-section {
    padding-top: 0;
    margin-top: 0;
}

/* Sticky Header */
.sticky-header {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: position 0.3s ease-in-out;
}

.logo img {
  height: 3rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content:flex-end;
    width: 100%;
    gap: 3rem;
    padding: 0 1.5rem;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    }

nav a {
    color: var(--antbear-green);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    }

nav a:hover {
     color: var(--accent-color);
    }

nav a.active {
    text-decoration: underline;
    text-underline-offset: 0.6rem;
    text-decoration-thickness: 2px;
}

.icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 3rem; 
    height: 3rem; 
    margin-right: 1.7rem;
   }

 .icons a {
    color: var(--antbear-green);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    }

 .icons a:hover {
      color: var(--accent-color)
    }

@media (max-width: 880px) {
  .sticky-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  nav a.active {
    text-underline-offset: 0.4rem;
  }

  .icons {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .hero-header {
    margin-top: 10rem; /* Example for taller mobile header */
  }

}

@media (max-width: 600px) {
  
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: space-around;
    justify-content: center;    
    width: 100%;
  }

.nav-links .action-button {
    width: 100%;
  }

}

/* Hero Section */
.hero-section {
    display: flex;
    height: 100vh;
    padding: 20% ;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    background: url("../images/drakensberg-pause-for-a-few-minutes-in-nature.jpg")  center center  no-repeat;;
    background-size: cover;
    position: relative;
}

.hero-section.hero-wyos {
  background: url("../images/poi-midlands-meander2.jpg") center center no-repeat;
  background-size: cover;
}
.hero-section.hero-rr {
  background: url("../images/sunset.jpg") center center no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 10%;
        
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 5%;
        min-height: 600px;
    }
}

/* Hero Header */
.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.main-heading {
    color: #fff;
    letter-spacing: -1.5px;
    position: relative;
    font: 500 8rem/8rem "Motterdam", serif;
    margin: 0;
    text-align: center;
    line-height: 0.8;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 5rem;
    }

    .hero-header {
        margin-top: 12rem;
    }
}

@media (max-width: 640px) {
    
    .hero-header {
        margin-top: 18rem;
    }
}

.sub-heading {
    color: #fff;
    letter-spacing: -1px;
    position: relative;
    width: 80%;
    font: 500 1.8rem/1.9rem "Inter", sans-serif;
    text-shadow: #09090b;
    margin: 2rem 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .sub-heading {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }
}


/* Hero Content */
.hero-content {
    display: flex;
    /* width: 600px;
    max-width: 600px;
    padding: 16px 0px 24px 0px; */
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

@media (max-width: 991px) {
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
}

.description-container {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    position: relative;
}

@media (max-width: 991px) {
    .description-container {
        max-width: 100%;
    }
}

.hero-description {
    align-self: stretch;
    color: #FFF;
    position: relative;
    /* font: 400 18px/28px Montserrat, sans-serif; */
    margin: 0;
    text-align: center;
}

@media (max-width: 640px) {
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* CTA Section */
.cta-section {
    display: flex;
    width: 629px;
    padding: 24px 0px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

@media (max-width: 991px) {
    .cta-section {
        width: 100%;
    }
}



@media (max-width: 991px) {
    .cta-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Primary CTA Button */
.primary-cta {
    display: flex;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: solid 1px #fff ;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: var(--antbear-green);
    text-decoration: none;
    
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.primary-cta:hover {
    background-color: var(--accent-color);
    
}

.primary-cta:focus {
    outline: 2px solid #487457;
    outline-offset: 2px;
}


@media (max-width: 640px) {
    .primary-cta {
        width: 100%;
        
    }
}

.primary-cta .cta-text {
    color: #fff;
    position: relative;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

/* Secondary CTA Button */
.secondary-cta {
    display: flex;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #deede8;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.secondary-cta:hover {
    background-color: #487457;
    border-color: #fff;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.secondary-cta:focus {
    outline: 2px solid #487457;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .secondary-cta {
        width: 100%;
        height: 44px;
    }
}

.secondary-cta .cta-text {
    color: #09090b;
    position: relative;
    text-transform: capitalize;
}

.secondary-cta .cta-text:hover {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .primary-cta,
    .secondary-cta {
        transition: none;
    }

    .primary-cta:hover,
    .secondary-cta:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .primary-cta {
        border: 2px solid #fff;
    }

    .secondary-cta {
        border: 2px solid #09090b;
    }
}

/* Focus visible for better keyboard navigation */
.primary-cta:focus-visible,
.secondary-cta:focus-visible {
    outline: 3px solid #487457;
    outline-offset: 2px;
}


/* Retreats section */
.retreats-section {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 80px 260px;
}

@media (max-width: 991px) {
    .retreats-section {
        padding: 0 20px;
    }
}

.main-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 32px;
}

@media (max-width: 991px) {
    .main-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

.section-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    justify-content: start;
}

@media (max-width: 991px) {
    .section-header {
        max-width: 100%;
    }
}


.section-title {
    width: 100%;
    color: rgba(9, 9, 11, 1);
    letter-spacing: -0.9px;
    font-family: 'Inter', serif; 
    margin: 0;
}
.section-title-alt {
    width: 100%;
    color: rgba(9, 9, 11, 1);
    letter-spacing: 1px;
    font-family: 'Motterdam', serif; 
    font-size: 4rem;
    line-height: 1;
    margin: 0;
}


@media (max-width: 991px) {
    .section-title {
        max-width: 100%;
    }
    .section-title-alt {
    
    font-size: 3rem;
    
}
}

.section-description {
    align-self: center;
    display: flex;
    margin-top: 16px;
    width: 672px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    color: rgba(113, 113, 122, 1);
    justify-content: start;
    font-family: "Inter", sans-serif;
}

.description-text {
    margin: 0;
}

@media (max-width: 991px) {
    .description-text {
        max-width: 100%;
    }
}

.filter-navigation {
    display: flex;
    margin-top: 48px;
    width: 100%;
    align-items: start;
    gap: 16px;
    color: var(--antbear-green);
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .filter-navigation {
        max-width: 100%;
        margin-top: 40px;
    }
}

.filter-button {
    border-radius: 6px;
    background-color: rgba(232, 248, 240, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    white-space: nowrap;
}

.filter-button--active {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(9, 9, 11, 1);
    border: 1px solid rgba(222, 237, 232, 1);
    padding: 6px 13px;
}

.filter-button:hover {
    opacity: 0.8;
}

.filter-button:focus {
    outline: 2px solid #487457;
    outline-offset: 2px;
}

@media (max-width: 991px) {
    .filter-button {
        white-space: initial;
    }
}

.retreats-grid {
    display: flex;
    margin-top: 48px;
    width: 100%;
    align-items: stretch;
    gap: 2rem;
    font-weight: 400;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .retreats-grid {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Retreat Cards */
.retreat-card {
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    overflow: hidden;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    padding: 1px;
    border: 1px solid rgba(222, 237, 232, 1);
    display: flex;
    flex-direction: column;
}


.card-image-container {
    position: relative;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 1);
}



.retreat-hero-image {
    z-index: 0;
    display: flex;
    min-height: 256px;
    width: 100%;
    max-width: 422px;
}

.retreat-main-image {
    aspect-ratio: 1.65;
    object-fit: cover;
    object-position: center;
    width: 100%;
    z-index: 0;
    
}

.image-overlay {
    position: absolute;
    z-index: 0;
    width: 100%;
    /* max-width: 422px; */
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 1rem;
}


.overlay-content {
    display: flex;
    width: 100%;
    align-items: center;
    /* gap: 40px 100px; */
    justify-content: space-between;
}

.date-info {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1;
    justify-content: start;
    margin: auto 0;
}

.calendar-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.retreat-date {
    align-self: stretch;
    margin: auto 0;
}

.retreat-type-badge {
    border-radius: 5px;
    background-color: rgba(72, 116, 87, 0.8);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 12px;
    line-height: 1.1;
    justify-content: center;
    margin: auto 0;
    padding: 5px 12px;
}

.card-content {
    /* height: 188px; */
    width: 100%;
    padding: 1.2rem;
}

@media (max-width: 991px) {
    .card-image-container, .retreat-card, .retreat-hero-image, .retreat-main-image, .image-overlay, .card-content {
        max-width: 100%;
    }

}

.location-info {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(113, 113, 122, 1);
    line-height: 1;
    justify-content: start;
}

.location-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 14px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.location-text {
    align-self: stretch;
    margin: auto 0;
}

.retreat-title {
    margin: 8px 0;
    width: 100%;
    font-size: 20px;
    color: rgba(9, 9, 11, 1);
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
}

.retreat-description {
    margin: 8px 0;
    width: 100%;
    font-size: 14px;
    color: rgba(113, 113, 122, 1);
    line-height: 20px;
}

.pricing-info {
    display: flex;
    margin-top: 8px;
    width: 100%;
    padding: 14px 0;
    align-items: center;
    gap: 16px 16px;
    justify-content: space-between;
}

.price-container {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 150px;
    margin: auto 0;
    padding: 5px 0;
}

.price-amount {
    color: #487457;
    font-size: 18px;
    line-height: 2;
    flex-grow: 1;
}

.price-unit {
    color: rgba(113, 113, 122, 1);
    font-size: 14px;
    line-height: 1;
}

.custom-price {
    color: rgba(16, 183, 127, 1);
    font-size: 18px;
    line-height: 2;
} 

.capacity-info {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(113, 113, 122, 1);
    justify-content: start;
    margin: auto 0;
}

.person-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.capacity-text {
    align-self: stretch;
    margin: auto 0;
}

.card-actions {
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1;
    padding: 20px 20px;
    margin-top: auto;
}

@media (max-width: 991px) {
    .card-actions {
        max-width: 100%;
    }
}

.card-button {
    border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    min-height: 32px;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 0 10px;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.action-button--primary {
    background-color: var(--antbear-green);
}

.action-button:hover {
    opacity: 0.9;
}

.action-button:focus {
    outline: 2px solid rgba(255, 255, 255, 1);
    outline-offset: 2px;
}

.button-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

.view-all-container {
    display: flex;
    margin-top: 48px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    color: rgba(9, 9, 11, 1);
    text-align: center;
    justify-content: start;
    /* font: 400 14px/1 Montserrat, -apple-system, Roboto, Helvetica, sans-serif; */
}

@media (max-width: 991px) {
    .view-all-container {
        max-width: 100%;
        margin-top: 40px;
    }
}

.view-all-link {
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid rgba(222, 237, 232, 1);
    text-decoration: none;
    color: inherit;
}

.view-all-link:hover {
    background-color: rgba(232, 248, 240, 1);
}

.view-all-link:focus {
    outline: 2px solid rgba(10, 117, 82, 1);
    outline-offset: 2px;
}

.arrow-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .retreats-grid {
        flex-direction: column;
    }

    .retreat-card {
        min-width: auto;
        flex: none;
    }

    .filter-navigation {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .filter-button {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .retreats-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        width: 100%;
    }

    .description-text br {
        display: none;
    }

    .retreat-description br {
        display: none;
    }
}



        .faq-section {
            display: flex;
            padding: 80px 260px;
            flex-direction: column;
            align-items: flex-start;
            align-self: stretch;
            position: relative;
            background-color: #fff;
        }

        @media (max-width: 991px) {
            .faq-section {
                padding: 60px 40px;
            }
        }

        @media (max-width: 640px) {
            .faq-section {
                padding: 40px 20px;
            }
        }

        .main-container {
            display: flex;
            max-width: 1200px;
            padding: 0px 32px;
            flex-direction: column;
            align-items: center;
            gap: 48px;
            align-self: stretch;
            position: relative;
            margin: 0 auto;
        }

        @media (max-width: 991px) {
            .main-container {
                padding: 0px 24px;
                gap: 40px;
            }
        }

        @media (max-width: 640px) {
            .main-container {
                padding: 0px 16px;
                gap: 32px;
            }
        }

        .header-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            align-self: stretch;
            position: relative;
        }

        .main-heading {
            display: flex;
            flex-direction: column;
            align-items: center;
            align-self: stretch;
            position: relative;
        }

        .title {
            align-self: stretch;
            color: #09090b;
            text-align: center;
            letter-spacing: -0.9px;
            position: relative;
            font: 600 36px/40px "Inter", serif;
        }

        @media (max-width: 991px) {
            .title {
                font-size: 32px;
                line-height: 36px;
                letter-spacing: -0.8px;
            }
        }

        @media (max-width: 640px) {
            .title {
                font-size: 28px;
                line-height: 32px;
                letter-spacing: -0.7px;
            }
        }

        .subtitle-container {
            display: flex;
            width: 672px;
            max-width: 672px;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        @media (max-width: 991px) {
            .subtitle-container {
                width: 100%;
                max-width: 100%;
            }
        }

        .subtitle {
            color: #71717a;
            text-align: center;
            position: relative;
            font-size: 1.4rem;
            margin-top: 2rem;
            width: 70%;
            margin: auto;

        }

        @media (max-width: 640px) {
            .subtitle {
                font-size: 14px;
                line-height: 20px;
            }
        }

        .content-wrapper {
            display: flex;
            width: 768px;
            max-width: 768px;
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
            position: relative;
        }

        @media (max-width: 991px) {
            .content-wrapper {
                width: 100%;
                max-width: 100%;
            }
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            align-self: stretch;
            position: relative;
        }

        .faq-item {
            display: flex;
            padding: 1px;
            flex-direction: column;
            align-items: flex-start;
            align-self: stretch;
            border-radius: 8px;
            border: 1px solid #deede8;
            position: relative;
        }

        .faq-content {
            display: flex;
            padding: 16px;
            justify-content: space-between;
            align-items: center;
            align-self: stretch;
            position: relative;
            background-color: rgba(72, 116, 87,0.1);
            border-radius: 7px;
        }

        .question-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            flex: 1;
        }

        .question {
            color: #09090b;
            position: relative;
            font-size: 1.1rem;
            /* font: 400 18px/28px Montserrat, sans-serif; */
        }

        @media (max-width: 640px) {
            .question {
                font-size: 16px;
                line-height: 24px;
            }
        }

        .toggle-button {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }

        .toggle-button:hover {
            background-color: rgba(16, 183, 127, 0.1);
        }

        .toggle-button:focus {
            outline: 2px solid #487457;
            outline-offset: 2px;
        }

        .plus-icon {
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.2s ease;
        }

        .toggle-button[aria-expanded="true"] .plus-icon {
            transform: rotate(45deg);
        }

        .answer {
            display: none;
            padding: 0 16px 16px 16px;
            color: #71717a;
            /* font: 400 16px/24px Montserrat, sans-serif; */
            background-color: rgba(232, 247, 240, 0.3);
            border-radius: 0 0 7px 7px;
        }

        @media (max-width: 640px) {
            .answer {
                font-size: 14px;
                line-height: 20px;
            }
        }

        .faq-item[aria-expanded="true"] .answer {
            display: block;
            background-color: rgba(72, 116, 87,0.1);
        }

        .contact-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            align-self: stretch;
            position: relative;
        }

        .contact-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            align-self: stretch;
            position: relative;
        }

        .contact-text {
            align-self: stretch;
            color: #71717a;
            text-align: center;
            position: relative;
            /* font: 400 16px/24px Montserrat, sans-serif; */
        }

        @media (max-width: 640px) {
            .contact-text {
                font-size: 14px;
                line-height: 20px;
            }
        }

        .contact-link {
            display: flex;
            padding: 8px 17px;
            justify-content: center;
            align-items: center;
            border-radius: 6px;
            border: 1px solid #deede8;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
            position: relative;
            cursor: pointer;
            background-color: #fff;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .contact-link:hover {
            background-color: #f8fffe;
            border-color: #10B77F;
        }

        .contact-link:focus {
            outline: 2px solid #10B77F;
            outline-offset: 2px;
        }

        @media (max-width: 640px) {
            .contact-link {
                padding: 10px 16px;
            }
        }

        .contact-link-text {
            color: #09090b;
            text-align: center;
            position: relative;
            /* font: 400 14px/20px Montserrat, sans-serif; */
        }

        @media (max-width: 640px) {
            .contact-link-text {
                font-size: 13px;
                line-height: 18px;
            }
        }

        /* Screen reader only content */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }


    


/* Write Your Own Story  */

/* Gallery code from Codepen  https://codepen.io/danishyma/pen/qBNRQmm*/

.gallery-wrapper {
  padding: 2rem 10rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 300px);
  grid-auto-rows: 200px;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}


.gallery-item {
    display: grid;
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(2px 2px 3px rgba(51, 51, 51, 0.3));
}

.gallery-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: pointer;
  transition: all 400ms ease-in;
  
}

.gallery-wrapper {

  grid-template-columns: repeat(3, 300px);
  grid-auto-rows: 200px;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}



@media only screen and (max-width: 800px) {

    .gallery-wrapper {
    display: grid;
    padding: 2rem;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-gap: 1rem;
    grid-auto-flow: dense;
  }  

  .section-accent {
    padding: 0;
    font-size: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
   
  }
  .text-item {
    grid-column: 1 / -1;
    text-align: center;
    
  }


    .gallery-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-item {
        width: 100%;
    }

}

.gallery-wrapper {
  padding: 2rem 10rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 300px);
  grid-auto-rows: 200px;
  gap: 1rem;
  grid-auto-flow: dense;
}

.gallery-item {
  display: grid;
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(2px 2px 3px rgba(51, 51, 51, 0.3));
}

/* Span 2 columns by default */
.gallery-item.text-item {
  /* grid-column: span 2; */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  font-family: 'Queen';
}

/* Image styles */
.gallery-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: pointer;
  transition: all 400ms ease-in;
}

.section-accent {
  padding: 0;
  margin: 0;
  font-size: 2.1rem;
  text-decoration: none;
  /* font-style: italic; */
  color: #000;
  /* font-family: 'Motterdam', serif; */
   font-family: 'Motterdam', serif;
    text-shadow: none;
}




/* Responsive adjustments */
@media only screen and (max-width: 800px) {
  .gallery-wrapper {
    padding: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.text-item {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 400px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .gallery-item.text-item {
    grid-column: span 1;
  }
}


/* end */



.section-subtitle {
    width: 70%;
    margin: auto;
    line-height: 1.4;
}


@media (max-width: 800px) {
  .section-subtitle {
    width: 100%;
  }
}

/* Retreats Program Description */

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: minmax(100px, auto);
    width: 70%;
    margin: auto;
    gap: 20px;
    padding: 1rem 5rem;
}

.item {
    background-color: rgba(72, 116, 87, 0.2);
    border: 1px solid rgba(222, 237, 232, 1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.item h2 {
    font-size: 1.6rem;
    
    font-weight: 500;
    color: rgba(9, 9, 11, 1);
    margin-bottom: 10px;
    font-family: 'Inter', serif;

}

.item p {
    font-size: 1rem;
    color: rgb(85, 85, 88);
    line-height: 1.5;
    padding-bottom: 2rem;
}



/* Program */

.retreat-outline-section {
    margin-top: 5rem;
    padding: 0;

}

.program-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    color: #09090b;
}

.detail-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 17px;
}


.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #000;
}

.program-section {
    margin: 0;
    padding: 0;
}

.container {
      display: flex;
      flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: auto;
}


.detail-label {
    font-weight: 700;
    line-height: 2;
    text-transform: uppercase;
}

.detail-value {
    font-weight: 400;
    line-height: 2;
    flex-grow: 1;
    flex-shrink: 1;
}


@media (max-width: 991px) {
    .grid-container {
        grid-template-columns: 1fr ;
        width: 100%;
        padding: 1rem 1rem;
    }
}

/* 1) Scope only to your program section */
.program-section .container {
  position: relative;
  width: 100%;
  max-width: 1200px;   
  margin: 2rem auto;   
  padding: 0;
  display: block;      
}

/* 2) Draw the centre line */
.program-section .event-details::before {
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 50%;
  margin-left: 1rem;
  width: 1px;
  background: #ccc;
}

/* 3) Reset list, strip bullets/margins */
.program-section .main {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;  
  width: 100vw;
}

/* 4) Date + Events columns */
.program-section .main > li.date,
.program-section .main > li.events {
  float: left;
  box-sizing: border-box;
  width: 50%;
}

/* ensure each date starts a new ‘row’ pair */
.program-section .main > li.date {
  clear: both;
  
}

/* event details on the other half */
.program-section .main > li.events {
  text-align: left;
  padding-left: 1rem;
  width: 50%;
  /* margin-top: 5rem; */
}

:last-child li.events {
  margin-bottom: 3rem; /* space after last event */
}   
/* 5) Tidy up your inner event list */
.program-section .events-detail {
  list-style: none;
  margin: 0;
  padding: 0;
}



/* fix your time/name alignment inside each event */
.program-section .event-time {
  display: inline-block;
  width: 100%;         /* fixed column for times */
  /* text-align: right; */
  margin-right: .5rem;
}

.program-section .event-name {
  display: inline-block;
}

/* make each event <li> a flex row */
.program-section .events-detail li {
  display: flex;
  align-items: flex-start;  /* or center, if you prefer */
  /* margin-bottom: 1rem; */
}

/* left column: time, fixed width, no wrap */
.program-section .event-time {
  flex: 0 0 5rem;        /* adjust 5rem to fit your longest time */
  /* text-align: right; */
  white-space: nowrap;   /* prevents the time from ever breaking */
  margin-right: .5rem;
}

/* right column: event name, flex‐grow so it fills remaining space */
.program-section .event-name {
  flex: 1;
}

@media (max-width: 880px) {

  /* 2) make every date+events full width and centre them */
  .program-section .main {
    width: 100vw;
    padding: 0 2rem;
    
    
  }
  .program-section .main > li.date,
  .program-section .main > li.events {
    float: none;
    width: 100%;
    clear: none;
    text-align: center;
    
    
  }

  /* 3) stack each individual event’s time + name */
  .program-section .events-detail li {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    
  }

  /* .program-section .event-time {
    white-space: wrap; keep time on one line
    
  } */

  .program-section .event-name {
    text-align: left;
  }
}


/* end of copilot fix */

.target-audience, .schedule-section {
    margin: 5rem 0;
    text-align: center;
    color: #000;
}

@media (max-width: 991px) {
    .target-audience {
        margin-top: 3rem;
    }
}

.audience-heading {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.audience-benefits {
    
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .audience-benefits {
        flex-direction: column;
        align-items: center;
    }
}

.benefit-card {
    display: flex;
    min-width: 240px;
    width: 395px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin: 0;
    position: relative;
    font-size: 1.2rem;
    color: #000;
}


.benefit-card p {
    margin: 0;
}


.program-theme {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    font-style: italic;
}



.day-column {
    min-width: 240px;
    flex-grow: 1;
    flex-shrink: 1;
    width: 410px;
    margin: 0;
}

@media (max-width: 991px) {
    .day-column {
        max-width: 100%;
    }
}

.day-header {
    padding-bottom: 1px;
}

.day-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

@media (max-width: 991px) {
    .day-title {
        max-width: 100%;
    }
}

.day-title em {
    font-weight: 400;
    font-style: italic;
}

.day-schedule {
    font-size: 14px;
    line-height: 29px;
}

@media (max-width: 991px) {
    .day-schedule {
        max-width: 100%;
    }
}

.schedule-item {
    width: 100%;
    margin-top: 16px;
}

.schedule-item:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {
    .schedule-item {
        max-width: 100%;
    }
}

.schedule-item strong {
    font-weight: 600;
}

.schedule-item span {
    font-weight: 400;
}

.schedule-item em {
    font-weight: 400;
    font-style: italic;
}


ul.main {
  list-style: none;
  max-width: 100%;
  margin:  0;
  margin: auto;
  /* margin-left: 40%; */
}


h3 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  text-align: right;
  line-height: 1.7;
}

h4 {
  padding: 0;
  margin: 0;
  color: var(--black);
  text-align: right;
  line-height: 1.7;
}

.date {
  width: max-content;
  padding: 0;
  margin: 0;
  float: left;
}

.date h3 {
  font-size: 1.3em;
}
/* 
.events {
  float: left;
  width: 80%;
  border-left: 1px solid #ccc;
  margin-top: 10%;
} */

.events-detail {
  max-width: 600px;
  padding: 1rem;
}

.events-detail li {
  padding: 10px;
  /* border-bottom: 1px dashed #ccc; */
  line-height: 20px;
  transition: ease 0.4s all;
  color: #444;
  /* width: 100%;
  height: 100%;
  display: block; */
}


.event-time {
  font-weight: 900;
}
/* 
.events-detail li a {
  text-decoration: none;
  color: #444;
  width: 100%;
  height: 100%;
  display: block;
} */



@media all and (max-width: 641px) {

 .program-section {
     width: 100vw;
     /* margin-left: -30%; */
    }
  .date {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .events {
    border: none;
    width: 100%;
    margin-top: 0;
  }

  .events-detail {
    padding: 0;
  }

  li.date p {
    margin: 0;
  }
}


.list-display li {
  margin-bottom:.4rem;
  font-size:1.1rem;
  color: #000;
  line-height: 1.9;
}
.list-checkmarks {
  padding-left:1.5rem;
}
.list-checkmarks li {
  list-style-type:none;
  padding-left:1rem;
}
.list-checkmarks li:before {    
font-family: 'FontAwesome';
content: "\f00c";
margin:0 10px 0 -28px;
color: #487457;
}

section {
    margin: 3rem 0;
}

@media all and (max-width: 641px) {
  .date,
  .events {
    float: none;
    width: 100%;
    display: block;
    border: none;
    margin: 0 0 10px 0;
    padding: 0;
  }

  /* Center align date section */
.date {
  width: 20%;
  padding: 15% 10% 0 0;
  float: left;
  text-align: center;
}

.date h3,
.date h4 {
  text-align: center;
}

/* Stack and center program details */
.program-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #09090b;
  margin-bottom: 1rem;
}

.detail-item {
  justify-content: center;
  text-align: center;
}

/* Responsive: full width on mobile */
@media all and (max-width: 880px) {
  .date {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    text-align: center;
    padding: 0;
  }
  .program-details {
    width: 100%;
    gap: 8px;
  }
  .date {
  margin-bottom: 2rem;
}

.events {
  margin-bottom: 2.5rem;
}
}
}



/* Footer */
.footer {
    display: flex;
    width: 100vw;
    align-items: space-between;
    gap: 150px;
    padding: 2rem 20%;
    background-color: #487457;
}

.logo-section {
    align-self: stretch;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-container {
    display: flex;
    min-height: 48px;
    max-width: 100%;
    width: 140px;
    align-items: start;
    overflow: hidden;
    justify-content: start;

}

.logo-image-wrapper {
    display: flex;
    min-height: 48px;
    width: 160px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.logo-image {
    /* aspect-ratio: 2.92; */
    object-fit: contain;
    object-position: center;
    width: 100%;
      filter: invert(1);
}

.nav-menu {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: 24px;
    color: fff;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto 0;
    
}

@media (max-width: 991px) {
    .nav-menu {
        max-width: 100%;
        white-space: initial;
    }
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}


@media (max-width: 991px) {
    .nav-link {
        white-space: initial;
    }
}

.social-icons {
    align-self: stretch;
    display: flex;
    align-items: start;
    gap: 15px;
    justify-content: start;
    margin: auto 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 24px;
    max-width: 60px;
    text-decoration: none;
    filter: invert(1);
    transition: opacity 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    opacity: 0.7;
    outline: 2px solid rgba(0, 0, 0, 0.3);
    outline-offset: 2px;
    border-radius: 2px;
}

.social-link:focus {
    outline-color: rgba(0, 0, 0, 0.8);
}

.icon-container {
    align-self: stretch;
    display: flex;
    min-height: 24px;
    width: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0;
}

.social-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    flex: 1;
}

/* Additional responsive styles for better mobile experience */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-menu {
        gap: 16px;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 12px;
        font-size: 12px;
    }

    .footer {
        gap: 20px;
        padding: 16px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link:focus,
    .social-link:focus {
        outline-color: currentColor;
        outline-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .nav-link,
    .social-link {
        transition: none;
    }
}

/* Alternative footer */
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo svg {
    max-width: 250px;
}
.footer-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #d6d6d6;
  line-height: 1.2rem;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
    margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* ticket call to action button */

.center-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: auto;
  margin-top: -4rem;
  border-radius: 0;
}

.cta-banner {
    padding: 2rem;
    margin: 2rem;
}

.cta-normal-button {
  position: relative;
  text-align: center;
  /* border: 2px solid var(--antbear-green); */
  background-color: #FFF;
  color: var(--antbear-green);
  font-size: 1rem;
  text-decoration: underline;
  padding: 1rem 2.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  overflow: visible;
  cursor: pointer;
}

.cta-ticket-button {
  position: relative;
  text-align: center;
  background: #d99201;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  border: 0;
  padding: 1.5rem 2.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  overflow: visible;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
}

.accent-color {
    background-color: #d99201;
}

.cta-ticket-button::before,
.cta-ticket-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #e9e9e9;
  z-index: 2;
  /* box-shadow: 0 5px 16px 8px rgba(72, 116, 87, 0.8);  */
  
}
.white-ticket-bg::before,
.white-ticket-bg::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: 2;
  box-shadow: none; 
  
}

.cta-ticket-button::before {
   left: -10.5px;
   border-radius: 0 10px 10px 0;
   clip-path: inset(0 0 0 50%);
   
}

.cta-ticket-button::after {
  right: -10.5px;
  border-radius: 10px 0 0 10px;
  clip-path: inset(0 50% 0 0);
}

.cta-ticket-button:hover {
  background: #3a6b4c; 
  transition: all 0.3s ease-in-out;
  color: #fff;

}

.card-actions.cta-ticket-button {
  margin:0;
  width: 100%;
}

.cta-button {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  /* background: var(--antbear-green, #487457); */
  background-color: #d99201;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(72, 116, 87, 0.12);
  transition: background 0.3s ease, color 0.3s ease, 
}

button i.fa-ticket {
  margin-left: 10px;
  color: #fff; 
  font-size: 1.1em;
  vertical-align: middle;
}

.cta-button:hover,
.cta-button:focus {
  background: #3a6b4c;
  color: #fff;
  box-shadow: 0 4px 16px rgba(72, 116, 87, 0.18);
  outline: none;
}

.cta-button:active {
  background: #2e523a;
  color: #fff;
}

@media (max-width: 600px) {
  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  
}
@media (max-width: 1000px) {

    .center-button-container {
    margin-top: 0;
    }

}