

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Hanken Grotesk", sans-serif;
  background-color: #f5f6fa;
  color: #342369;
}

main {
  flex: 1;
}

a {
    color: #342369;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: radial-gradient(circle at center, #a91e63 0%, #80164a 70%, #6d1240 100%);
  height: 80px;
  padding: 7px 17px;
}

h1 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    /* font-family: 'Josefin Sans', sans-serif; */
    font-style: normal;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Main accordion container */
.collapse {
  background-color: rgb(247 241 249);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
  border: 1px #d9d9d9 solid;
}

/* Accordion headers */
/* collapse_link {
  display: block;
  padding: 16px 20px;
  background-color: #f0f1f1;
  color: #4d4b4b;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}
 */
.collapse_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 4px 38px 0 20px; */
  padding: 4px 4px 2px 14px;
  /* background-color: #f0f1f1; */
  background-color: #fbfbfb;
  color: #4d4b4b;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Adjust based on your icon size */
  height: 40px;
}

.icon-fill {
  fill: rgb(158, 30, 92);
  fill-opacity: 0.32;
  stroke-opacity: 0.36;
  stroke-width: 39.33px;
  background: white;
}



.collapse_link:hover {
  background-color: #f0f1f1;
}

.collapse_link:after {
/*   content: '›';
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%) rotate(90deg); 
transform:  translateY(-50%);
font-size: 20px;
transition: transform 0.3s ease; */
}

.collapse_link.active:after {
  transform: translateY(-50%) rotate(90deg);
}

/* Content area */
.content {
  background-color: white;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.collapse.active .content {
  max-height: 1000px; /* Adjust based on your content */
    background: white;
}
.collapse_link.active ellipse {
  fill-opacity: 1 !important;
}

.inner-content .inner-content a {
  /* margin-left:10px; */
}

/* Inner content styling */
.inner-content {
  padding: 0;
}

.inner-content .inner-content {
  background: rgb(247 241 249);
}

.inner-content .collapse {
  border: none;
}

.inner-content p {
  display: block;
  padding: 14px 20px;
  color: #5c6070;
}

.inner-content a {
  display: block;
  padding: 14px 30px;
  color: #5c6070;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.2s ease;
}

.inner-content a:hover {
  background-color: #f7f9fc;
  color: #3f4e75;
}

/* Adding the Headspace-like icons */
.inner-content a:before {
/*   content: '';
display: inline-block;
width: 8px;
height: 8px;
background-color: #ff8a65;
border-radius: 50%;
margin-right: 12px;
vertical-align: middle;
opacity: 0.7; */
}

/* Special styling for different meditation types */
.inner-content a[id^="item_"]:nth-child(odd):before {
  background-color: #64b5f6;
}

.inner-content a[id^="item_"]:nth-child(even):before {
  background-color: #81c784;
}

/* Customization for "Watch" items */
.inner-content a[href*="watch"]:before {
  background-color: #ffd54f;
}


.calendar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eaeaea;
  text-decoration: none;
  color: #5c6070;
  transition: background-color 0.2s ease;
}

.calendar-item:hover {
  background-color: #f7f9fc;
}

.date-info {
  display: flex;
  justify-content: space-between;
}

.date-day {
  font-weight: 600;
  /* font-size: 1.1em; */
  color: #3f4e75;
}


.time-slot {
  color: #cf763c;
  font-size: 0.9em;
}

.more-info-button {
    padding: 7px 13px;
    background: #9c1b5b;
    color: white;
    margin: 10px 0 0 0;
    border: white 1px solid;
}

.book-button {
    background-color: #9c1b5b;
    color: white;
    margin: 10px 0 0;
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 13px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.book-button:hover {
  background-color: #5DA7E4;
}


.booking-page h1 {
    font-size: 1.6rem;
    margin: 6px 0;
}
.booking-page h2 {
    font-size: 1.2rem;
    margin: 4px 0;
}
.booking-page p {
    margin: 5px 0 0;
    text-align: left;
}

.booking-payment-preferences-page h1 {
    font-size: 1.6rem;
    margin: 6px 0;
}
.booking-payment-preferences-page h2 {
    font-size: 1.2rem;
    margin: 8px 0 4px;
}
.booking-payment-preferences-page p {
    margin: 2px 0;
    text-align: left;
}

.booking-page form select {
  /* Match the text input's styling */
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
}

/* Focus states to match */
select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}


[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-size: 1rem;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    border-radius: 3px;
}

/* https://codepen.io/xhepigerta/pen/XKmZKN */
#crumbs {
  height:40px;
}

#crumbs ul {
  list-style: none;
  display: inline-table;
}
#crumbs ul li {
  display: inline;
}
#crumbs ul li a {
    display: block;
    float: left;
    height: 30px;
    background: #a91e63;
    text-align: center;
    padding: 5px 20px 0 40px;
    position: relative;
    margin: 0 -6px 0 0;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}
#crumbs ul li:after {
content: '';
    position: absolute;
    /* right: 92px; */
    width: 30px;
    height: 30px;
    background: #a91e63;
    border-radius: 0 50% 50% 0;
/*     content: "";
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 15px solid #a91e63;
position: absolute;
right: -15px;
top: 0;
z-index: 1; */
}
#crumbs ul li a:before {
/*     content: "";
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 15px solid #fff;
position: absolute;
left: 0;
top: 0; */
}

#crumbs ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#crumbs ul li:first-child a:before {
  display: none;
}

#crumbs ul li:not(:first-child) a {
  padding-right: 5px;
  /* border-top-right-radius: 10px; */
  /* border-bottom-right-radius: 10px; */
  mask: radial-gradient(circle at 0% 50%, transparent 16px, black 14px);
}

#crumbs ul li:last-child a:after {
  display: none;
}

#crumbs ul li a:hover {
  background: #6f1241;
  color: #fff;
}

#crumbs ul li a:hover:after {
  border-left-color: #6f1241;
  color: #fff;
}

@media print, screen and (max-width: 40em){
  #crumbs ul li a {
    padding: 5px 5px 0 30px;
  }
  #crumbs ul li:nth-child(3) {
    display: none;
  }
}

/* contact form */
.sidebar-contact{
    position: absolute;
    top: -500px;
    left: 10px;
    width: 350px;
    height: auto;
    padding: 40px;
    background: #fff;
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 100;
}
.sidebar-contact.active{
  top: 70px;
}
.sidebar-contact input,
.sidebar-contact textarea{
  width:100%;
  height:36px;
  padding:5px;
  margin-bottom:10px;
  box-sizing:border-box;
  border:1px solid rgba(0,0,0,.5);
  outline:none;
}
.sidebar-contact h2{
  margin:0 0 20px;
  padding:0;
}
.sidebar-contact textarea{
  height:60px;
  resize:none;
}
#formsubmit {
  background:#EA9A00;
  color:#fff;
  cursor:pointer;
  border:none;
  font-size:18px;
}
#formsubmit:disabled {
  cursor: not-allowed;
  color: #c0c0c0;
  background-color: #ffffff;
}

@media(max-width:768px)
{
  .sidebar-contact{
    width:100%;
    /* height:100%; */
    top: -520px;
    left: 0px;
  }
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
}