body{
    background-image: url(../images/PussyWillowsNight.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f2f2f2;
    position: relative;
}

/* Top Navigation Styles */
.sectionTopnav {
    background-color: #241317;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sectionTopnav {
        background-color: #241317;
        padding: 0;
        box-shadow: none;
    }
}

/* Header Styles */
.header {
    position: relative;
}

/* Menu Styles */
.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right; /* Changed from center to right */
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    position: absolute;
    margin-top:10px;
    top: 10px;
    right: 20px;
    z-index: 1000;
    width: 30px;
    height: 24px;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #a3c2d9;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.menu li {
    display: inline-block;
    margin: 0 0; /* Removed side margins */
    position: relative; /* For potential dropdown menus */
}

.menu li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1px;
    background-color: rgba(163, 194, 217, 0.8); /* Divider color - more visible */
}

.menu li a {
    color: #a3c2d9;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 15px; /* Evened up top and bottom padding */
    border-radius: 4px; /* Rounded corners */
    background-color: rgba(36, 19, 23, 0.7); /* Semi-transparent background */
    border: 1px solid transparent; /* Invisible border by default */
    display: inline-block; /* Ensure proper alignment */
    vertical-align: middle; /* Center vertically */
}

.menu li a:hover {
    color: #ffffff;
    background-color: rgba(36, 19, 23, 0.9); /* Darker background on hover */
    border: 1px solid #a3c2d9; /* Border appears on hover */
}

/* Responsive styles for the header */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
        top: 20px; /* Adjust position since we removed the top nav bar */
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%; /* Full width on mobile */
        max-width: none; /* Remove max-width to allow full width */
        height: 100vh;
        background-color: #241317; /* Solid color instead of semi-transparent */
        padding: 60px 0 20px 0; /* Remove horizontal padding */
        z-index: 999;
        text-align: left;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .menu.active {
        right: 0; /* Slide in when active */
    }
    
    .menu li {
        display: block;
        margin: 15px 0; /* Vertical spacing between items */
        width: 100%;
    }
    
    .menu li:not(:last-child):after {
        display: none; /* Remove dividers on mobile */
    }
    
    .menu li a {
        display: block; /* Make links full width of their container */
        padding: 12px 20px; /* Larger touch targets for mobile with more horizontal padding */
        text-align: left; /* Left align text */
        width: 100%;
        box-sizing: border-box;
        border-left: 3px solid transparent;
        background-color: transparent; /* Remove background from individual links */
        border-radius: 0; /* Remove rounded corners */
    }
    
    .menu li a:hover {
        border-left: 3px solid #a3c2d9; /* Left border on hover */
        border-top: 1px solid transparent;
        border-right: 1px solid transparent;
        border-bottom: 1px solid transparent;
        background-color: rgba(0, 0, 0, 0.2); /* Slightly darker background on hover */
    }
}

.section {
	padding: 4rem 0 3rem 0;	
}

.sectionHeader {
	padding: 1.5rem 0 0.5rem 0;
    margin-top: 6rem;
	border-bottom: 2px solid rgba(163, 194, 217, 0.5);
    background-color: rgba(242, 242, 242, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .sectionHeader {
        margin-top: 2rem; /* Reduce top margin on mobile since we removed the top nav bar */
    }
}

.sectionHeader img {
    transition: opacity 0.3s ease;
}

.sectionHeader img:hover {
    opacity: 0.9;
}

.sectionIntro {
	padding: 1.5rem 0;
	margin-bottom: 1.5rem;
    background-color: rgba(242, 242, 242, 0.75);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sectionIntro h1 {
    color: #241317;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.sectionIntro h1:after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background-color: #a3c2d9;
    bottom: 0;
    left: 30%;
}

.sectionIntro h2 {
    color: #555;
    font-weight: 400;
    font-size: 1.2em;
    max-width: 90%;
    margin: 0 auto;
}

.sectionIntro2 {
	padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}
.sectionIntro3 {
	padding: 2rem 0;
    margin-bottom: 1.5rem;
    background-color: rgba(242,242,242,0.85);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.sectionIntro3 h1 {
    color: #241317;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.sectionIntro3 h1:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: #a3c2d9;
    bottom: 0;
    left: 20%;
}
.sectionBook {
	padding: 1.5rem;
    margin: 1.5rem 0;
    background-color: rgba(163, 194, 217, 0.7);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sectionBook:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(163, 194, 217, 0.8);
}

.sectionBookMain {
	padding: 1rem;
    margin: 1.5rem 0 2rem 0;
    background-color: rgba(163, 194, 217, 0.6);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sectionBookMain:hover {
    background-color: rgba(163, 194, 217, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.sectionText {
	border-top:1.5px dotted #a3c2d9;
	padding-top: 1rem;
	text-align:center;
}

.rowIntro {
	padding-top: 2%;
    padding-bottom: 2%;
}
	
.sectionFooter {
	margin: 2rem 0 1rem 0;
    padding: 2rem 0 1rem 0;
	border-top: 2px solid rgba(163, 194, 217, 0.5);
	border-bottom: 2px solid rgba(163, 194, 217, 0.5);
	text-align: center;
    background-color: rgba(242, 242, 242, 0.7);
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sectionFooter ul.social li a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.sectionFooter ul.social li a:hover {
    transform: translateY(-3px);
}

.sectionFooter ul.social li a img {
    transition: opacity 0.3s ease;
}

.sectionFooter ul.social li a:hover img {
    opacity: 0.8;
}
	
div#navigation ul{
	text-align:center;
	font-size:small;
	text-transform:uppercase;
	margin:2.5rem 0 0 0;	
}
div#navigation ul li{
	display:inline;
	list-style-type:none;
	padding:8rem 0 0 3rem;	
}
div#navigation ul li a{
	color:#241317;
	text-decoration:none;
}
div#navigation ul li a:visited{
	color:#241317;
}
div#navigation ul li a:hover{
	color:#7c79a4;
	padding:0em;
}

div#navigation ul li a.thispage{
	color:#7c79a4;
}

div#therapistPhoto {
	color:#a3c2d9;
    border: 1px solid #241317;
    padding-bottom:2rem;
}
a.therapist{
	text-decoration:none;
    border:none;
}
a.therapist:hover{
	text-decoration:none;
    border:none;
}
a.therapist:visited{
	text-decoration:none;
    border:none;
}
a.book{
	color:#241317;
    text-decoration:none;
    border:none;
}
a.book:hover{
	text-decoration:none;
    border:none;
}
a.book:visited{
	text-decoration:none;
    border:none;
}


a{
    text-decoration:none; 
    color:#4a7a9e; /* Darker blue for better readability */
    transition: color 0.3s ease;
}
a:hover{
	color:#241317; /* Even darker on hover for emphasis */
	padding:0em;
}
a.underline{text-decoration: none; border-bottom:1px dotted #8194a3;
    color:#241317
}
a.underline:hover{
    color:#684a2c
}
img.nav {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
img.u-max-full-width-therapist {
  max-width: 100%;
  box-sizing: border-box;
  opacity:1.0;
  filter:alpha(opacity=100); 
}
img.u-max-full-width-therapist:hover {
  opacity:0.5;
  filter:alpha(opacity=50);
}
h1.portfolio{
    margin-bottom: 0.5rem;
}
h2.therapistName {
	font-weight:800;
    font-size:92%;
	color:#f2f2f2;
	text-align:center;
    padding:0.5rem 0.5rem 0 0.5rem;  
}
h2.therapistTitle {
	font-weight:400;
    font-size:75%;
	color:#f2f2f2;
	text-align:center;
    padding:0 0.5rem 1rem 0.5rem;
}
h2.mainName {
	font-weight:800;
    font-size:92%;
	color:#241317;
	text-align:center;
    padding:0.5rem 0.5rem 0 0.5rem;  
}
h2.mainTitle {
	font-weight:400;
    font-size:75%;
	color:#241317;
	text-align:center;
    padding:0 0.5rem 1rem 0.5rem;
}
h2.foot {
	font-weight:400;
	font-size:x-small;
	color:#776E6E;
	text-align:center;
	padding-top:2rem;
}
h2.bookingPage {
	font-weight:800;
	text-align:center;
    padding:0 1rem 0 1rem;  
}
h3.jobtitle{
	font-weight:700;
	font-size:1.15rem;
}
h4.client {
	padding:0 0 0.5rem 0;
	font-weight:400;
	font-style:italic;
}
h4.paintdesc {
	padding:0 0 0.5rem 0;
	font-weight:400;
}
p.description {
	font-size:1.5rem;
	margin:2rem 0 0 1.5rem;
    text-align:left;
}
p.detail {
	font-weight:400;
	font-size:x-small;
	color:#776E6E;
	text-align:center;
}
p.footer {
	font-size:smaller;
}
p.credits {
	font-size:x-small;
	text-align:center;
	color:#a3c2d9;
	padding-top:0.5rem;
}
p.land {
	font-size:x-small;
    margin:2rem 0 0 1.5rem;
	text-align:left;
	color:#241317;
   padding-bottom:2rem;	
}
p.colophon {
	font-size:x-small;
	text-align:center;
	color:#a3c2d9;
}
ul.social{
	text-align:center;
}
ul.social li{
	display:inline;
	list-style-type:none;
	padding-left:3rem;
}




/* Removed sticky header styles */













/* Bigger than 550 */
@media (min-width: 550px) {
.section {
    padding: 5rem 0 6rem;
 }
div#navigation ul{
	text-align:center;
	margin:3rem 0 0 0;
	font-size:small;
}
div#navigation ul li{
	padding:0 0 0 1rem;
    word-spacing:0.5rem;
}
        
.sectionIntroPortfolio {
	margin-bottom:2rem;
}
}

@media (min-width: 568px) {
div#navigation ul{
	text-align:right;
	font-size:smaller;
	word-spacing:1rem;
}
    div#shop {
	text-align:right;
	font-size:smaller;
	text-transform:uppercase;
	margin:0;	
}
}

/* Bigger than 750 */
@media (min-width: 750px) {
  .header {
    height: 60px;
  }
  .section {
    padding: 5rem 0 5rem;
  }
  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  div#navigation ul{
	font-size:small;
	word-spacing:2rem;
	margin:4rem 0 0 0;	
} 
  .categories {
    padding: 15rem 0 8rem;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .section {
    padding: 6rem 0 5rem;
    }
}
.portrait-container {
  display: flex;
  width: 660px;
  max-width: 95%;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.portrait-video-wrapper,
.portrait-image-wrapper {
  flex: 1;
  overflow: hidden;
  margin: 0 10px;
  position: relative;
}

/* Remove margin from the first and last wrapper */
.portrait-video-wrapper:first-child {
    margin-left: 0;
}

.portrait-image-wrapper:last-child {
    margin-right: 0;
}

.portrait-video-wrapper video,
.portrait-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portrait-video-wrapper:hover video,
.portrait-image-wrapper:hover img {
  transform: scale(1.03);
}

.portrait-video-wrapper video {
  cursor: pointer;
}

/* Responsive adjustments for the portrait container */
@media (max-width: 600px) {
  .portrait-container {
    flex-direction: column;
  }
  
  .portrait-video-wrapper,
  .portrait-image-wrapper {
    margin: 0;
  }
}
.therapist-section {
  text-align: center;
  margin-bottom: 40px;
  width: 95%; /* Slightly wider for mobile */
  margin: 0 auto 40px auto;
  padding: 20px 0;
  background-color: rgba(242, 242, 242, 0.8);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.therapist-header {
  font-size: 2em; /* Larger header size */
  margin-bottom: 25px; /* More space below header */
  color: #241317;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.therapist-header:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #a3c2d9;
  bottom: 0;
  left: 20%;
}

.image-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
  gap: 20px; /* Increased gap between items */
  width: 90%;
  margin: 25px auto;
}

.image-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.image-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.image-grid-item:hover img {
  opacity: 0.9;
}

.image-caption {
  width: 100%;
  padding: 12px 8px;
  background-color: white;
  border-top: 2px solid rgba(163, 194, 217, 0.5);
}

.image-caption .name {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1em;
  color: #241317;
}

.image-caption .name a {
  color: #4a7a9e;
  transition: color 0.3s ease;
}

.image-caption .name a:hover {
  color: #241317;
}

.image-caption .occupation {
  font-size: 0.85em;
  color: #555;
}

.image-caption .occupation a {
  color: #4a7a9e;
  transition: color 0.3s ease;
}

.image-caption .occupation a:hover {
  color: #241317;
}

/* Responsive adjustments */
@media (min-width: 769px) { /* Desktop and tablet */
  .therapist-section {
    width: 80%;
    max-width: 1200px;
  }

  .therapist-header {
    font-size: 2.2em;
    margin-bottom: 30px;
  }

  .image-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .image-caption {
    padding: 15px 10px;
  }
  
  .image-caption .name {
    font-size: 1.1em;
  }
  
  .image-caption .occupation {
    font-size: 0.9em;
  }
}

@media (min-width: 481px) and (max-width: 768px) { /* Tablet */
    .image-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .therapist-section {
        width: 90%;
    }
}
