body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
  height: 100%;
  color: #122440;
  line-height: 1.8;
}


/* General header styling */
h1 {
  font-family: 'Khand bold', sans-serif !important;
  font-weight: 700;
  font-size: 5rem;
  text-align: center;
  margin: 0;
  padding: 0px 0;
  line-height: 1.4;
  animation: fadeIn 1.5s ease-in-out;
}

/* Different font styles */
.therapy-text {
  font-family: 'Khand bold', serif;
  font-weight: 700 !important;
  font-size: 3.5rem;
  color: #122440;
}


/* Different font styles */
.women-text {
  font-family: 'Sacramento', serif;
  font-weight: 90 !important;
  font-size: 3.5rem;
  color: #122440;
}

/* Specialty text (Anxiety & Trauma) */
.specialty-text {
  font-family: 'Lexend Zetta', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #122440;
}

/* Location text */
.location-text {
  font-family: 'Khand', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #122440;
  letter-spacing: 1px;
}

.become-text {
  font-family: 'Khand', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #122440;
}

.love-text {
  font-family: 'fugaz one', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #122440;
}
/* The subtle dividers */
.divider {
  border: none;
  border-top: 2px solid #e0e0e0;
  width: 40%;
  margin: 0px auto;
  margin-top: 5px;
  margin-bottom: 0px;
  transition: width 0.3s ease;
}

.divider:hover {
  width: 70%;
  border-color: #c2c2c2;
}

/* Remove bullet points from the list */
.bullet-list ul {
  list-style-type: none; /* Remove default bullet points */
  padding-left: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

/* Optional: Style for list items with the class 'bullet-item' */
.bullet-item {
  font-family: "Lato", sans-serif; /* Change font family */
  font-size: 1em; /* Adjust font size */
  color: #122440; /* Change font color */
  line-height: 1.5; /* Adjust line height for better readability */
  margin-bottom: 10px; /* Add space between list items */
}

/* Ensure summary text is visible */
details summary {
  display: list-item; /* Ensures proper display */
  cursor: pointer; /* Makes it clear it's clickable */
  font-weight: bold; /* Optional: Makes it stand out */
  color: #122440; /* Ensure it's visible */
}

/* Add this to your styles.css file */
.highlighted-text {
  font-size: 3em !important; /* Adjust the font size as needed */
  color: #122440; /* Optional: Change the color if needed */
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust space between lines */
h1 div {
  margin-bottom: -2px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .women-text {
    font-size: 2.5rem;
  }
  .specialty-text {
    font-size: 1.5rem;
  }
  .location-text {
    font-size: 1rem;
  }
}

.about-section-background {
  background-color: #122440; /* Replace with your desired background color */
  padding: 20px; /* Optional: Add padding for better spacing */
  font-family: "Verdana", sans-serif; /* Change font family */
  color: #fdf9f3; /* Change font color */
  display: block; /* Ensure the div behaves as a block-level element */
  overflow: hidden; /* Ensure the background color covers all content */
}

.about-section-background h2 {
  font-family: "Georgia", serif; /* Change font family for headers */
  color: #444; /* Change font color for headers */
}


.about-section-background p {
  font-family: "Verdana", sans-serif; /* Change font family for paragraphs */
  color: #555; /* Change font color for paragraphs */
}

.about-page-background {
  background-color: #fdefcb; /* Replace with your desired background color */
  padding: 20px; /* Optional: Add padding for better spacing */
  font-family: "Arial", sans-serif; /* Change font family */
  color: #122440; /* Change font color */
  display: block; /* Ensure the div behaves as a block-level element */
  overflow: hidden; /* Ensure the background color covers all content */
}

.about-page-background h2 {
  font-family: "Georgia", serif; /* Change font family for headers */
  color: #122440; /* Change font color for headers */
}

.about-page-background p {
  font-family: "Segoe UI", Arial, sans-serif; /* Change font family for paragraphs */
  color: #122440; /* Change font color for paragraphs */
}

.bar {
  display: flex;
  align-items: center;
}

.bar-item.button {
  margin-right: 10px;
}

.book-call-button {
  margin-left: auto;
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
}

.book-call-button:hover {
  background-color: #45a049;
}

.learn-button {
  background-color: white; /* White background */
  color: #122440; /* Dark font color */
  padding: 5px 10px; /* Adjust padding as needed */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #122440; /* Border color */
  border-radius: 0; /* Remove border-radius for rectangle shape */
  margin: 10px 0; /* Adjust margin as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.learn-button:hover {
  background-color: #122440; /* Fill color on hover */
  color: white; /* Light font color on hover */
}

.more-button {
  background-color: white; /* White background */
  color: #122440; /* Dark font color */
  padding: 5px 10px; /* Adjust padding as needed */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #122440; /* Border color */
  border-radius: 0; /* Remove border-radius for rectangle shape */
  margin: 10px 0; /* Adjust margin as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.more-button:hover {
  background-color: #122440; /* Fill color on hover */
  color: white; /* Light font color on hover */
}

.lets-button {
  background-color: #122440; /* White background */
  color: #fdf9f3; /* Dark font color */
  padding: 5px 10px; /* Adjust padding as needed */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #122440; /* Border color */
  border-radius: 0; /* Remove border-radius for rectangle shape */
  margin: 10px 0; /* Adjust margin as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.lets-button:hover {
  background-color: #fdf9f3; /* Fill color on hover */
  color: #122440; /* Light font color on hover */
}

.book-button {
  background-color: white; /* White background */
  color: #122440; /* Dark font color */
  padding: 5px 10px; /* Adjust padding as needed */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #122440; /* Border color */
  border-radius: 0; /* Remove border-radius for rectangle shape */
  margin: 10px 0; /* Adjust margin as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.book-button:hover {
  background-color: #122440; /* Fill color on hover */
  color: white; /* Light font color on hover */
}

/* Default for large screens */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5, 
.bgimg-6, .bgimg-7, .bgimg-8, .bgimg-9, .bgimg-10, 
.bgimg-11, .bgimg-12, .bgimg-13, .bgimg-14 {
  min-height: 400px; /* Large screens */
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

/* For small screens (Make it 100% height) */
@media (max-width: 700px) {
  .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5, 
  .bgimg-6, .bgimg-7, .bgimg-8, .bgimg-9, .bgimg-10, 
  .bgimg-11, .bgimg-12, .bgimg-13, .bgimg-14 {
    min-height: 100vh !important; /* Match bgimg-1 height */    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }
}

@media (max-width: 550px) {
  .bgimg-1 {
    background-image: url('../images/snow_550.png');
  }
  .bgimg-2 {
    background-image: url('../images/Happy_woman_curly_550.png');
  }
  .bgimg-3 {
    background-image: url('../images/siting_550.png');
  }
  .bgimg-4 {
    background-image: url('../images/woman%20red_550.png');
  }
  .bgimg-5 {
    background-image: url('../images/warmchair_550.png');
  }
  .bgimg-6 {
    background-image: url('../images/illnessflowers_550.png');
  }
  .bgimg-7 {
    background-image: url('../images/greenhike_550.png');
  }
  .bgimg-8 {
    background-image: url('../images/mentalillgreen_550.png');
  }
  .bgimg-9 {
    background-image: url('../images/bigright_550.png');
  }
  .bgimg-10 {
    background-image: url('../images/child_550.png');
  }
  .bgimg-11 {
    background-image: url('../images/3rdeye_550.png');
  }
  .bgimg-12 {
    background-image: url('../images/test_images/closecouple_1_550.png');
}
  .bgimg-13 {
    background-image: url('../images/test_images/empower_550.png');
}
  .bgimg-14 {
    background-image: url('../images/test_images/peace_550.png');
}
}

@media (max-width: 700px) {
  .bgimg-1 {
    background-image: url('../images/snow_700.png');
  }
  .bgimg-2 {
    background-image: url('../images/Happy_woman_curly_700.png');
  }
  .bgimg-3 {
    background-image: url('../images/siting_700.png');
  }
  .bgimg-4 {
    background-image: url('../images/woman%20red_700.png');
  }
  .bgimg-5 {
    background-image: url('../images/warmchair_700.png');
  }
  .bgimg-6 {
    background-image: url('../images/illnessflowers_700.png');
  }
  .bgimg-7 {
    background-image: url('../images/greenhike_700.png');
  }
  .bgimg-8 {
    background-image: url('../images/mentalillgreen_700.png');
  }
  .bgimg-9 {
    background-image: url('../images/bigright_700.png');
  }
  .bgimg-10 {
    background-image: url('../images/child_700.png');
  }
  .bgimg-11 {
    background-image: url('../images/3rdeye_700.png');
  }
  .bgimg-12 {
    background-image: url('../images/test_images/closecouple_700.png');
}
  .bgimg-13 {
    background-image: url('../images/test_images/empower_1_700.png');
}
  .bgimg-14 {
    background-image: url('../images/test_images/peace_1_700.png');
}
}

@media (min-width: 701px) {
  
/* First image (Logo. Full height) */
.bgimg-1 {
  background-image: url('../images/snow.png');
}

/* Second image (Services) */
.bgimg-2 {
  background-image: url('../images/Happy_woman_curly.png');
  background-size: cover; /* Ensures it covers the entire div */
  background-position: center top -50px; /* Moves the image up */
}

/* Third image (FAQs) */
.bgimg-3 {
  background-image: url('../images/siting.png');
}

/* Fourth image (Contact) */
.bgimg-4 {
  background-image: url('../images/woman%20red.png');
}

/* First image of about me (Home) */
.bgimg-5 {
  background-image: url('../images/warmchair.png');
}

.bgimg-6 {
  background-image: url('../images/illnessflowers.png');
  background-size: cover; /* Ensures it covers the entire div */
  background-position: center top -480px; /* Moves the image up */
}

.bgimg-7 {
  background-image: url('../images/test_images/greenhike.png');
}

.bgimg-8 {
  background-image: url('../images/mentalillgreen.png');
}

.bgimg-9 {
  background-image: url('../images/bigright.png');
  background-size: cover; /* Ensures it covers the entire div */
  background-position: center top -50px; /* Moves the image up */
}

.bgimg-10 {
  background-image: url('../images/child.png');
  background-size: cover; /* Ensures it covers the entire div */
  background-position: center top -250px; /* Moves the image up */

}

.bgimg-11 {
  background-image: url('../images/3rdeye.png');
}

.bgimg-12 {
  background-image: url('../images/test_images/closecouple.png');
}

.bgimg-13 {
    background-image: url('../images/test_images/empower.png');
    background-size: cover; /* Ensures it covers the entire div */
    background-position: center top -50px; /* Moves the image up */  
  }
.bgimg-14 {
    background-image: url('../images/test_images/peace.png');
    background-size: cover; /* Ensures it covers the entire div */
    background-position: center top -150px; /* Moves the image up */  
  }
}

/* First image (Logo. Full height) */
.bgimg-1 {
  min-height: 400px;
}

/* Second image (Services) */
.bgimg-2 {
  min-height: 400px;
}

/* Third image (FAQs) */
.bgimg-3 {
  min-height: 400px;
}

/* Fourth image (Contact) */
.bgimg-4 {
  min-height: 400px;
}

/* First image of about me (Home) */
.bgimg-5 {
  min-height: 400px;
}

.bgimg-6 {
  min-height: 400px;
}

.bgimg-7 {
  min-height: 400px;
}

.bgimg-8 {
  min-height: 400px;
}

.bgimg-9 {
  min-height: 400px;
}

.bgimg-10 {
  min-height: 400px;
}

.bgimg-11 {
  min-height: 400px;
}

.bgimg-12 {
  min-height: 400px;
}

.bgimg-13 {
  min-height: 400px;
}

.bgimg-14 {
  min-height: 400px;
}

p span {
  display: inline-block;
}

.image-container {
  position: relative; /* Ensures icon is positioned inside the image */
  display: inline-block;
}

/* 🔹 Default: Hide the icon on larger screens */
.tap-text {
  display: none;
}

@media (max-width: 2400px) {
  .tap-to-view::after {
      content: "Tap to view";
      display: block;
      font-size: 14px;
      text-align: center;
      color: white;
      background: rgba(0, 0, 0, 0.6);
      padding: 2px 3px;
      border-radius: 5px;
      position: absolute;
      /* top: 10px; */
      bottom: 45px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.5;
      width: auto;
  }
}
.custom-font {
  font-family: "Lato", sans-serif !important; /* Change to your desired font family */
  font-size: 1.65em !important; /* Adjust font size as needed */
  color: #fdf9f3; /* Adjust font color as needed */
  /* font-weight: bold; Make the font bold */
}


/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
    .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5, .bgimg-6, .bgimg-7, .bgimg-8, .bgimg-9, .bgimg-10, .bgimg-11, .bgimg-12 {
        background-attachment: scroll;
    }
}

 /* Style for the button */
 #scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #eaedf1;
  color: #0d0d0d;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
/* ul {list-style-type: none;} */

/* Style for the details tag */
details {
  padding: 5px;
  margin: 15px 0;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Style for the summary tag */
summary {
  font-weight: 600;
  background-color: #f1f3f5;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  outline: none;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Optional: Add hover effect for summary */
summary:hover {
  background-color: #e2e6ea;
  padding: 14px;
}

/* Optional: Add focus effect for summary */
summary:focus {
  box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}

details[open] {
  padding: 10px;
}

.vertical-center {
  vertical-align: middle;
}

.footer-logo{
  display:block;
  margin: 0 auto;
  max-width:400px;
  width:100%;
}

/* Ensure the dropdown menu containing an image is positioned correctly */
.dropdown-menu.has-image {
  position: relative;
  display: inline-block; /* Ensures proper width behavior */
  text-align: center;
}

/* Style the dropdown content */
.dropdown-menu.has-image .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Positions the dropdown right below the image */
  left: 50%;
  transform: translateX(-50%); /* Centers it horizontally */
  background-color: #fdf9f3; /* Change this to your preferred color */
  width: 100%; /* Makes the dropdown as wide as the image */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds shadow */
  border-radius: 5px; /* Optional: adds rounded corners */
  padding: 10px 0; /* Adds padding for better spacing */
  z-index: 1000; /* Ensures it appears above other elements */
}

/* Ensure links inside the dropdown are styled properly */
.dropdown-menu.has-image .dropdown-content a {
  display: block;
  padding: 10px;
  text-align: center;
  color: #122440; /* Change this if needed */
  text-decoration: none;
}

/* Hover effect for dropdown links */
.dropdown-menu.has-image .dropdown-content a:hover {
  background-color: #fdf9f3; /* Change this if needed */
}

/* Show dropdown when the menu is active */
.dropdown-menu.has-image.show .dropdown-content {
  display: block;
}


.dropdown-menu {
  display: inline-block;
  /* position: relative; */

  &.mini{
    display: block;
  }

  & > .dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
  }

  &.show > .dropdown-content {
    display: block;

    & > a {
      display: block;
      text-align: left;
    }
  }

  &.mini > .dropdown-content {
    padding-left: 1em;
    position: relative;
  }
}
