/*LINK CURSOR FIX*/
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }

/*BASE SETTINGS */
/*
body {
  padding-top: 50px;
  padding-bottom: 20px;
}
*/
html {
  height: 100%;
}
html body {
  height: 100%;
  overflow: auto;
}

ul, li {
  list-style-type: disc;
}

a {
  color: cornflowerblue;
}

.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px; /* or 950px */
}

.content {
  text-shadow: 0px 2px 3px #000000;
  color: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 15px 15px 15px rgba(22,22,22,0.6);
}

h1 {
    text-align: center;
}

.headline {
    font-size: 18px;
    font-weight: bold;
}

/*STYLE ADJUSTMENTS */
.center-block {float: none !important}

.mapLabel{
    font-family: "Century Gothic","Apple Gothic",AppleGothic,"URW Gothic L","Avant Garde",Futura,sans-serif;
    color: #000000;
    text-shadow: 0px 0px 0px #000000;
    width:100%;
    height:100%;
    font-size: 11pt;
}

.map-size {
  width: 700px;
  height: 300px;
}

/*
  Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb 
*/
.carousel .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel .carousel-inner .active {
  opacity: 1;
}

.carousel .carousel-inner .active.left,
.carousel .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel .carousel-inner .next.left,
.carousel .carousel-inner .prev.right {
  opacity: 1;
}

.carousel .carousel-control {
  z-index: 2;
}

.carousel-indicators {
  display:none;
}

/*NAVIGATION BAR TOP ADJUSTMENTS*/
.navbar li a {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.tnav .navbar .container { 
  height: 35px; 
}

.navbar {
  min-height: 35px;
}

/*FOOTER ADJUSTMENTS*/
.footer{
    color:rgba(200, 200, 200, 1.0);
    text-align:center;
    font-size:12px;
}

/*SLIDING ANIMATIONS*/
.slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slide.ng-enter,
.slide.ng-leave {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.slide.ng-enter {
    left: 100%;
}
.slide.ng-enter-active {
    left: 0;
}
.slide.ng-leave {
    left: 0;
}
.slide.ng-leave-active {
    left: -100%;
}

/*SETTINGS FOR PAGES*/
.page { 
  padding-bottom: 40px;
  padding-top: 40px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-home{
  background-image: url(../img/background01.jpg);
}

.page-home .content {
  background-color:rgba(103,110,96,0.8);
}

.page-about{
  background-image: url(../img/background02.jpg);
}

.page-about .content {
  background-color:rgba(126,128,134,0.8);
}

.page-accommodation{
  background-image: url(../img/background03.jpg);
}

.page-accommodation .content {
  background-color:rgba(166,154,141,0.8);
}

.page-restaurant{
  background-image: url(../img/background05.jpg);
}

.page-restaurant .content {
  background-color:rgba(134,151,139,0.8);
}

.page-activities{
  background-image: url(../img/background04.jpg);
}

.page-activities .content {
  background-color:rgba(109,117,98,0.8);
}

.page-gallery{
  background: black;
}
/*
.page-gallery{
  background-image: url(../img/background05.jpg);
}

.page-gallery .content{
  background-color:rgba(134,151,139,0.8);
}
*/
.page-gettingthere{
  background-image: url(../img/background06.jpg);
}

.page-gettingthere .content{
  background-color:rgba(114,109,94,0.8);
}

.page-contact{
  background-image: url(../img/background07.jpg);
}

.page-contact .content{
  background-color:rgba(110,92,82,0.8);
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  .map-size {
    width: 350px;
    height: 300px;
  }
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel .carousel-inner > .item.next,
    .carousel .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel .carousel-inner > .item.prev,
    .carousel .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel .carousel-inner > .item.next.left,
    .carousel .carousel-inner > .item.prev.right,
    .carousel .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}