/******************* MAIN PAGE  ***************/

/*************** BUTTONS CONTAINER *******/

/** Book Now btn */
    .buttons_container {
        display: flex;
        gap: 50px; 
        margin: 50px 10% 0 10%; 
    }

    .book_appoint_container:hover {
        transform: translateY(1px);
    }

/** learn more btn */

    .learn_more_btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .learn_more_btn a {
        color:#2E5668;
        font-size: 1.3rem;
    } 

    .arrow_icon_blue {
        width: 35px;
        height: 25px;
        
    }

    .arrow_icon {
        width: 35px;
        height: 25px;
        margin-top: 12px;
    }

    .learn_more_btn.service:hover {
        filter: grayscale(100%) brightness(0) saturate(100%) invert(1);  /* makes it white*/
        transition: all 0.3s ease;
    }

    .learn_more_btn.service a{
        font-size: 1.3rem;
    }

    .learn_more_btn:hover {
        transform: translateY(1px);
    }


/*************** THERAPY AND PSYCHOLOGY SERVICES TEXT  *******/

.Therapy_Services_container {
    margin-top: 40px;
}

.title_therapy {
    margin-bottom: 20px;
    color: #2E5668;
}

/* === TEXT SECTION === 
.main_text_container {
    margin-left: 10%;
    line-height: 1.6;
    max-width: 80%
} */
    

.main_text_container {
    width: 80%;
    line-height: 1.6;
    margin: 0 10%;
}
   

/* === DESCRIPTION === */
.info_text {
    color: #2E5668;
    font-size: 1.2rem;
}




/**********************SERVICES OFFERED ************************/
#my_services{
    display: flex; /* Place image + text side by side */
    /* align-items: center; Center text vertically */
     /* justify-content: center;Optional: center content horizontally */
    gap: 2rem; /* Space between image and text */
    /*max-width: 1200px;*/
    margin: 5rem 10%;
    /*justify-content: space-between;*/
    justify-content: space-around;
}

.description_services h2 {
    color: #2E5668;
    justify-content: flex-start;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.services_list {
    display: flex;
    /*justify-content: space-around;*/
    gap: 2rem; /* space between boxes */
}

.Individual_Psychotherapy, .Parental_Guidance,
.Family_Therapy {
    background-color: rgb(221, 238, 246);
    padding: 20px;
    flex: 1; /* equal width */
}

.services_list h2 {
    color: black;
    margin-top: 20px;
    text-align: center;

}

.services_list p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2E5668;
    text-align: center;
}

.services_list a {
    color: #2E5668;
    font-size: 1.2rem;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.services_list a:hover {
    color: white; 
}



/************************** PROFILE IMAGE *************************/

.background_about_me {
  position: relative; /* creates stacking context */
    height: 800px;
    margin-bottom: 80px;
}

/* Background layers */
.blue_background {
  position: absolute;
  top: 3%;
  left: 10%;
  right: 10%;
  z-index: 0;
  height: 650px;
  display:block;
}

.blue_background img {
  width: 100%;   /*fill in container*/
  height: 100%;
}

.background_waves  {
  position: absolute;
  top: 20%;
  height: 70%;
  width: 100%;
  z-index: 1;
  display:block;
  
}

.background_waves img {
  width: 100%;
  height: 90%;
}

/* Foreground (text + image) */
.about_me_container {
  position: relative; 
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 80%;
  z-index: 3; 
  gap: 6%;
 
 
}

.about_me_container img {
  margin-top: 5%;
  max-width: 800px;
  max-height: 500px;
}

.about_me_text img {
    margin-top: 0;
}

.about_me_text {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 4%;
    width: 30%;
    justify-content: flex-start;
    align-items: flex-start;
}

.about_me_text h1 {
    margin-bottom: 20px;
    color: black;
}

.about_me_text p {
    font-size: 1.2rem;
    margin-bottom: 2%;
}

.about_me_text a {
    color: #2E5668;
}

.learn_more_btn.about_me {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/**book appointment */

.book_appointment {
  text-align: center; 

  /*margin-top: 130px*/;

  margin-top: 18vh;
}




.book_appointment:hover {
    transform: translateY(1px);
}


