/* Global Styles */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
  }
  
  /* Header Styles */
  header {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }
  
 /* Nav*/
.links {
	background-color: #da668d;
	background-image: linear-gradient(to bottom, #0003, transparent);
	font-size: 15pt;
	font-weight: 300;
}
.links > a {
	color: #ffffff;
	padding: 15px 10px 15px 10px;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
.links > a:hover {
	color: #ffffff;
  background-color: #ef9db8;
}

#menu {
	/* position: fixed; */
	left: 0;
	right: 0;
}
.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
  
.booking-button {
    /* position:absolute; top:0; right: 15px; */
    /* background-image: linear-gradient(to bottom, #0003, transparent); */
    color: #FCE4EC !important;
    text-decoration: none;
  }

  .title {
    text-align: center;
    font-size: 26pt;
  }
  
  
  /* Main Section Styles */
  section {
    padding: 0px;
  }
  
  h1, h2 {
    text-align: center;
  }
  
  table{
    padding: 30px 80px 30px 80px;
    border-spacing: 8px;
    width: 900px;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e184a5;
    color: #FFFFFF
  }

  #name{
    padding-right: 35px;
  }
  
  #leftrow{
    padding-right: 80px;
  }

  /* Footer Styles */
  footer {
    background-color: #e184a5;
    padding: 10px 100px;
    text-align: center;
    height: 250px;
    color: #ffffff
  }

  .booking-button-footer{
    border-radius: 20px;
    display: inline-block;
    padding: 20px 30px;
    background-color: #ffffff;
    color: #e184a5;
    text-decoration: none;
  }

  .parallaxx{
    background-image: url("bkg.jpeg");
    min-height: 450px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    /* background-size: cover; */
    margin: 0;
    position:relative;

}
.text-box{
	height: 200px;
	padding: 30px;
    font-size: 42pt;
    text-align: center;
    background-color: #f1f1f1;
}
@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}
#headerr{
 /* position: absolute; */
  /* top: 50%; */
  /* -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); */
  font-size: 1.3em;
  padding-top: 50px;
}

.slideshow-container {
    position: relative;
    background: #f2d8d9;
  }
  
  /* Slides */
  .mySlides {
    display: none;
    padding: 20px 200px 80px 200px;
    text-align: center;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
  }
  
  /* The dot/bullet/indicator container */
  .dot-container {
    text-align: center;
    padding: 10px;
    background: #f2d8d9;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  /* Add a background color to the active dot/circle */
  .active, .dot:hover {
    background-color: #717171;
  }
  