/* colors */
:root {
  --white: #ffffff;
  --offwhite: #f5f5f5;
  --lightBlue: #01bcd6;
  --lightBlueTrans: rgba(1, 188, 214, 0.85);
  --purple: #9d21b2;
  --purpleTrans: rgba(157, 33, 178, 0.85);
  --orange: #ff6a16;
  --orangeTrans: rgba(255, 106, 22, 0.85);
  --yellow: #fca901;
  --yellowTrans: rgba(252, 169, 1, 0.85);
  --black: #333333;
  --blackTrans: rgba(51, 51, 51, 0.85);
  --transition: 0.2s ease all;
  --tabWrapWidth: "100%";
}
body {
  font-family: "Arial", sans-serif;
  background-color: #f8f9fa;
}
.hero {
  background: url("pexels-rdne-8419214.jpg") no-repeat center center;
  background-size: cover;
  height: 70vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
}
.about-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.book-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.contact-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
.carousel-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
}
.carousel-item p {
  font-style: italic;
}
.carousel-item .rating {
  color: #f39c12;
}

a {
  display: block;
  text-decoration: none;
}
/* bootstrap overrides */
.nav li a:focus,
.nav li a:hover {
  background: transparent;
}

/* tab styles */
.tabWrap {
  width: var(--tabWrapWidth);
  margin-top: -54px;
  position: relative;
}

.tab-content {
  /* height: 220px; */
  padding: 10px 5px;
  position: relative;
  background: var(--lightBlue);
}

.tab-content .tab-pane {
  position: relative;
  bottom: 10px;
}

.nav-tabs li.active a,
.nav-tabs li.active a:focus,
.nav-tabs li.active a:hover {
  border: none;
  color: var(--white);
  background: none;
}

.nav-tabs li {
  width: 24%;
}

.nav-tabs li a {
  border-radius: 0;
  color: var(--white);
  border: none;
  padding: 15px 0;
  margin-right: 0;
}

.nav-tabs .shifter {
  width: 4%;
  transition: var(--transition);
}

.nav-tabs .shifterBack {
  background: var(--purple);
  border-right: 1px solid var(--offwhite);
}

.nav-tabs .shifterBack:hover {
  background: var(--purpleTrans);
}

.nav-tabs .shifterBack a:hover {
  background: transparent;
}

.nav-tabs .shifterForward {
  border-left: 1px solid var(--offwhite);
  background: var(--yellow);
}

.nav-tabs .shifterForward:hover {
  background: var(--yellowTrans);
}

.nav-tabs .shifterForward a:hover {
  background: transparent;
}

.tabAnchor {
  transition: var(--transition);
}

.tabInner {
  padding: 40px;
  margin: 10px;
  /* height: 200px; */
  background: var(--white);
  border-radius: 10px;
}

.tabToggle {
  transition: var(--transition);
}

.firstPanel,
.nav-tabs li a.firstPanel,
.nav-tabs li.active a.firstPanel,
.nav-tabs li.active a.firstPanel:focus,
.nav-tabs li.active a.firstPanel:hover {
  background: var(--lightBlue);
}

.firstPanel:hover {
  background: var(--lightBlueTrans);
}

.secondPanel,
.nav-tabs li a.secondPanel,
.nav-tabs li.active a.secondPanel,
.nav-tabs li.active a.secondPanel:focus,
.nav-tabs li.active a.secondPanel:hover {
  background: var(--purple);
}

.secondPanel:hover {
  background: var(--purpleTrans);
}

.thirdPanel,
.nav-tabs li a.thirdPanel,
.nav-tabs li.active a.thirdPanel,
.nav-tabs li.active a.thirdPanel:focus,
.nav-tabs li.active a.thirdPanel:hover {
  background: var(--orange);
}

.thirdPanel:hover {
  background: var(--orangeTrans);
}

.fourthPanel,
.nav-tabs li a.fourthPanel,
.nav-tabs li.active a.fourthPanel,
.nav-tabs li.active a.fourthPanel:focus,
.nav-tabs li.active a.fourthPanel:hover {
  background: var(--yellow);
}

.fourthPanel:hover {
  background: var(--yellowTrans);
}

.fifthPanel,
.nav-tabs li a.fifthPanel,
.nav-tabs li.active a.fifthPanel,
.nav-tabs li.active a.fifthPanel:focus,
.nav-tabs li.active a.fifthPanel:hover {
  background: var(--black);
}

.fifthPanel:hover {
  background: var(--blackTrans);
}

.inner-container {
  margin: 0 50px;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e") !important;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e") !important;
}

/** Media Queries **/
@media (max-width: 768px) {
  .nav-tabs li {
    width: 100%;
  }
  .nav-tabs .shifter {
    display: none;
  }
  .tabWrap {
    width: 100%;
  }
  .inner-container {
    margin: 0 10px;
  }
}
