/* ================================
   Move BOOK NOW button higher
   Concise theme
   ================================ */

@media (min-width: 992px) {
  .sb-button-book,
  .btn-booking {
      position: relative !important;
      top: -40px !important;   /* move UP — adjust value */
  }
}

@media (max-width: 991px) {
  .sb-button-book,
  .btn-booking {
      top: -15px !important;   /* smaller shift on mobile */
  }
}
/* ================================
   BOOK NOW button styling
   ================================ */

.sb-button-book,
.btn-booking {
    border-radius: 18px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px;
}

/* Desktop */
@media (min-width: 992px) {
  .sb-button-book,
  .btn-booking {
      font-size: 18px !important;
      padding: 16px 34px !important;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .sb-button-book,
  .btn-booking {
      font-size: 14px !important;
      padding: 10px 20px !important;
      border-radius: 14px !important;
  }
}



/*
	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 {
    border-radius: 999px !important;
}


 #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 {
    border-radius: 999px !important;   /* Makes it pill-shaped */
    padding: 12px 25px !important;    /* Makes it look more premium */
}


 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 */
}

/* Base Nav */
.navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  font-family: "Public Sans", sans-serif;
  position: relative;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #004AAP;
  text-decoration: none;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #050405;
  font-weight: 500;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* Desktop dropdown box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0.5rem 0;
  display: none;
  min-width: 220px;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #050405;
}

.dropdown-menu li a:hover {
  background: #FFCE00;
  color: #050405;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #050405;
  margin: 5px 0;
  border-radius: 3px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    padding: 1rem 0;
    border-top: 1px solid #eee;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  /* Mobile dropdown expands inline */
  .dropdown-menu {
    position: static;
    border: none;
    padding: 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

.cta {
  background: var(--volleysol-yellow);
  color: #111;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: all 0.2s ease;
}

.cta:hover {
  background: var(--volleysol-yellow-hover);
  transform: translateY(-2px);
}

/* Rounded Book buttons */
.sb-book-btn,
.sb-btn,
button.sb-button {
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-weight: 600;
}

/* Optional: subtle depth */
.sb-book-btn {
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
