@font-face {
    font-family: 'Roboto';
    src: url('fonts/RobotoSlab-VariableFont_wght.ttf');
}

body a{
  color: #12664F;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color:#F5F5F5;
}

.card {
    width: 350px;
    margin: 10px;
    height: 200px;
}

h1{
    text-align:center;
    font-size:x-large
}
h2{
  text-align: center;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .text-container{
    text-align: center;
  }

  .announcement-text-colored-background{
    font-size: 26px;
    font-weight: 600;
    background-color:#5AC7D4;
    padding: 20px 0px;
  }

  .announcement-text{
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0px;
  }
  .wellness-package-text{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
  }

  .banner-section {
    position: relative;
    width: 100%;
  }
  
  .banner-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .banner-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family:'Roboto', serif;
    padding: 10px;
  
  }
  
  .banner-content p {
    font-size: 24px;
    font-family:'Roboto', serif;
  }

  .testimonials-section {
    background-color: #12BFC7;
    padding: 10px;
  }
  
  .testimonials-section h3{
    text-align: center;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  
  .testimonial {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5%;
    max-height: 260px; /* Adjust the maximum height as needed */
    overflow: hidden;
  }

  .btn-primary{
    background-color: #12BFC7;
  }

  .btn-book-now{
    background-color: #12BFC7;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    max-width: 200px;
    width: fit-content;
    box-sizing: border-box;
    text-align: center;
    color: #000000;
    margin-top: 10px;
  }

/* Media query for mobile devices */
@media (max-width: 768px) {
    .card {
        width: 100%; /* Set the width to 100% to make it full width on mobile */
    }
    .banner-content {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.6);

      }
      .banner-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 700;
        font-family:'Roboto', serif;
      }

      .testimonials-section {
        padding: 20px 0;
        flex-direction: column;
      }
    
      .testimonial {
        padding: 15px;
        max-height: none;
      }
      
      .banner-content p {
        font-size: 16px;
        font-family:'Roboto', serif;
      }
}