
/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	then other page styles
*/
 #events h3   {
	/* add your css rule here */
}


 #events p.duration, #events div.duration   {
	/* add your css rule here */
}


 #events p.description, #events div.description   {
	/* add your css rule here */
}


 #events .selectedEvent   {
	/* add your css rule here */
}


 #events input.reserve_time_btn   {
	/* add your css rule here */
}


 #events input.select_another_btn   {
	/* add your css rule here */
}


 #eventForm #start_date-block-container h3, #eventForm #timeline-container h3   {
	/* add your css rule here */
}


 #eventForm #save_button   {
	/* add your css rule here */
}


 div.ui-widget-content   {
	/* add your css rule here */
}


 div.ui-widget-header   {
	/* add your css rule here */
}


 #timeline-container table.timeline   {
	/* add your css rule here */
}


 .timeline td.not_worked_time   {
	/* add your css rule here */
}


 .timeline td.free_time   {
	/* add your css rule here */
}


 .timeline td.selected_time   {
	/* add your css rule here */
}


 .timeline td.reserved_time   {
	/* add your css rule here */
}


 div#loading   {
	/* add your css rule here */
}


 #start_date-block-container .zend_form dt, start_date-block-container .zend_form dt b, start_date-block-container .zend_form dd label   {
	/* add your css rule here */
}




/* = Reset & Base = */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #f8f4ed; /* a very light warm beige */
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}

/* = Header = */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(248, 244, 237, 0.95); /* semi translucent beige */
  z-index: 100;
  border-bottom: 1px solid #e0dcd3;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.site-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #4a4138;
}

/* = Hero Parallax = */
.hero-parallax {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: 60px; /* to push below fixed header */
}
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* a bit extra to allow for movement */
  background: url('path-to-your-hero-image.jpg') center center / cover no-repeat;
  transform: translateY(0);
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero-title {
  font-size: 2.8rem;
  color: #4a4138;
}
.hero-subtitle {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #6b6057;
}
.btn-book {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  border: 2px solid #4a4138;
  border-radius: 25px;
  color: #4a4138;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.btn-book:hover {
  background: #4a4138;
  color: #f8f4ed;
}

/* = Booking / Calendar = */
.booking-section {
  padding: 80px 0;
}
.booking-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.booking-section h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #4a4138;
}
.calendar-embed {
  height: 500px; /* placeholder height — adjust or let embed define */
  background: #e9e4dc;
  border: 1px solid #d7d1c8;
  border-radius: 8px;
  overflow: hidden;
}

/* = Info Section = */
.info-section {
  padding: 60px 0;
  background: #f0ebe3;
}
.info-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.info-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.info-block {
  flex: 1 1 300px;
}
.info-block h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #4a4138;
}
.info-block p {
  color: #6b6057;
  line-height: 1.6;
}

/* = Footer = */
.site-footer {
  padding: 40px 0;
  background: #eae3db;
}
.site-footer .container {
  text-align: center;
}
.site-footer p {
  color: #6b6057;
  font-size: 0.9rem;
}

/* = Parallax Scroll Effect = */
@media (prefers-reduced-motion: no-preference) {
  window.addEventListener && window.addEventListener("scroll", parallaxScroll);
}
@keyframes dummy { from { opacity: 1;} to { opacity: 1; } }

:root {
  --scroll-y: 0;
}
  
/* We'll do a little JS to move background — see below */
