
:root {
    /* old colors;
    pathway lavender: #D2D2FF
    pathway blue: #75C9F7
    pathway green: #C1E1C1
    lightblue
    */

    --highlight: #75C9F7; /* old colors:  #75C9F7 #lightblue */
  }

body {
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    color: #333;
    max-width: 800px;
    margin: auto;
}

#logo_block {
    /* height: 100px; */
}

#content_block {
    /* font-family: Arial; */
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 1em;
    padding-right: 1em;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #333;
}

.flexRegion {
    display: flex; 
    flex-wrap: wrap;
}


/* Assume mobile and use one tile per row */
.flexRegion .flexTile {
    flex-basis: 100%;
    border: 1px solid var(--highlight);
    border-radius: 5px;
    /* margin: 1em; */
    margin-right: 1em;
    margin-bottom: 1em;
}
/* If on large screen use 2x2 layout */
 @media screen and (min-width: 1024px) { 
    .flexRegion .flexTile {
        flex-basis:calc(50% - 1em - 2px);
    }
}

.flexRegion .flexTileHeader {
    /* Center Text in header */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 2em;
    font-size: larger ;
    border-top: 5px;
    border: 1px solid var(--highlight);
    background-color: var(--highlight);
}

.flexRegion .flexTileContent {
    padding: 1em;
}

.flexRegion .flexTileFooter {
    /* Center images in footer */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    padding-top: 1em;
    padding-bottom: .5em;
}

.graySubText
{
    color:gray;
    font-size: smaller;
    padding-top: 1em;
}

/* ---------- About ---------- */

#about_content .aboutIntro {
    display: flex; 
    flex-wrap: wrap;
    margin-top: 1em;
    /* margin-left: 1em;
    margin-right: 1em; */
    margin-bottom: 1em;
}

#about_content .aboutIntro .leftCol {
    width: 200px;
    padding-right: 1em;
    vertical-align: bottom;
    /* background-color: red; */
}

#about_content .aboutIntro .rightCol {
    width:200px;
    /* background-color: orange; */
    flex-grow: 1;
    /* padding-left: 1em; */
    
}

#about_content .logo {
    width: 130px;
    padding-left: 10px;
    padding-right: 10px;
}

#about_content a {
    color:333;
    text-decoration: none;
    font-weight: bold;
}

/* ---------- Contact ---------- */

#contact_content table, th, td {
    border: 0px;
}
#contact_content table {
    padding-top: 1em;
    padding-bottom: 1em;
}
#contact_content table td {
    padding-top: .5em;
    
}
#contact_content table td:first-child {
    font-weight: bold;
    padding-right: 2em;
}


/* ---------- Scheduling ---------- */

#rates {
    /* padding-left: 1em; */
    /* padding-right: 2em; */
}

#scheduling_content table {
    border-collapse: collapse;
    width: 100%;
}
#scheduling_content table tr {
    height: 2em;
}
#scheduling_content table th {
    background-color: var(--highlight); 
    /* font-weight: normal; */
    text-align: left;
    height: 2em;
}
#scheduling_content table th:first-child {
    width: 6em;
    white-space: nowrap;
}
@media screen and (min-width: 600px) { 
    #scheduling_content table th:first-child {
        width: 8em;
    }
}
#scheduling_content table th:nth-child(2) {
    width: 8em;
    white-space: nowrap;
}
#scheduling_content table tbody tr:nth-child(even) {
    background-color: #F0F0F0;
    /* color: #fff; */
  }


/* ---------- Footer ---------- */
#footer_block {
    padding-top: 20px;
    text-align: center;
    padding-bottom: 2em;
}
#footer_block p {
    margin-block-start: .25em;
    margin-block-end: .25em;
}

#footer_block a {
    text-decoration: none;
    color: #333;
}

/* ---------- Nav Bar ---------- */
.navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #75C9F7;
    color: #333;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

/* ---------- Book button (href square) ---------- */

.squareButton {
    background-color: #a973a9;
    border: none;
    color: white;
    height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Square Market', sans-serif;
    letter-spacing: 1px;
    line-height: 38px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.centerBlock {
    text-align: center;
    width: 100%;
}