/* ----- Home Page----- */

*{box-sizing:border-box;}
body{
    background-color: #cacaca;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: grey;
    font-size: 14px;
}
#wrapper{
    /* margin: 0 auto; */
    /* padding: 100px 10px; */
    /* width: 85%; */
    background-color: #FFF;
    border: 1px solid #697e83;
    /* box-shadow: 0 0 10px rgba(13, 3, 25 ,0.8); */
}
header{
    height: 100px;
    padding: 0;
    margin: 0;
    /* background-color: #697e83; */
}
/* ----- Nav Bar ---- */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 100px;
    box-sizing: border-box;
    transition: .3s;
    z-index: 999;
}
nav.black{
    background: rgba(0,0,0,0.8);
    height: 100px;
    padding: 10px 100px;
}
nav .logo{
    padding: 22px 20px;
    height: 80px;
    float: left;
    font-size: 24px;
    transition: .3s;
}
nav.black .logo{
    color: #fff;
}
nav ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li{
    list-style: none;
    display: inline-block;
    position: relative;
}
nav ul li a{
    line-height: 80px;
    color: #151515;
    padding: 6px 60px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}
nav.black ul li a{
    color: #fff;
}
nav ul li a:focus{
    outline: none;
}
nav ul li a.active{
    background: tomato;
    color: #fff;
    border-radius: 6px;
 
}
 nav ul li a, nav ul li:hover ul, nav ul li ul li{display:block;}
/*
nav ul{
    list-style: none;
    background: #fff;
    padding: 0;
}
nav ul li{
    display: inline-block;
    position: relative;
}

nav{
    padding: 0 10px 0 10px;
}

nav ul li a{
    text-decoration: none;
    display: block;
    padding: 10px;
    text-align: center;
    display: inline-block;
}
*/
nav ul li ul{
    min-width: 100%;
    opacity: 0.9;
    display: none;
    position: absolute;
}
/*
nav ul li ul li{
    text-align: center;
    float: none;
    width: 100%;
}
*/
nav ul li ul li a{
    padding: 8px auto;
    text-align: center;
    background-color: white;
    opacity: 5.0;
}
/*
nav a{
    text-decoration: none;
    font-weight: bold;
    color: #000;
    padding-right: 25px;
    padding-left: 25px;
}*/

nav a:hover{
    color: #000;
}
p a{
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: bold;
}
nav ul li a:hover{
    color: #000;
}
nav ul ul{
    position:absolute;
    padding: 0;
    opacity: .9;
    z-index: 999;
}
nav ul li a:before{
    content:"";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    visibility: hidden;
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transition:all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
nav ul li a:hover:before{
    visibility: visible;
    transform: scaleX(1);
} 

.subscribe{
    background-color: #fff;
    padding:15px 60px 15px 60px;
    width: 30%;
    float:left;
}
h1{
    font-family: "Alex Brush", cursive;
    letter-spacing: 0.5px;
    font-size: 60px;
    margin: 0;
    padding: 10px 0 0 10px;
    color: #fff;
}
h2{
    font-size: 27px;
    margin: 0;
    text-transform: uppercase;
    color: #000;
}
h3{
    font-size: 14px;
    margin: 0px;
    padding: 5px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}
p{
    margin: 10px 0;
    padding: 0;
    font-size: 13px;
}
main{
    margin: 15px;
    border-bottom: 1px solid #959592;
    
}

aside{
    padding: 10px 4px 10px 24px;
    margin-left: 15px;
    float: left;
    width: 20%;
    border-right: 1px solid #959592;
}
section{
    padding: 6px 4px 6px 8px;
    /* width: 75%; */
    /* had to comment out and change the width for line 142 cause it wouldnt work if its 70%, too large for the sideright to fit
     */
}
.clear{
    clear: both;
}
h3 ul{
    border-style: circle left;
}

.sideleft{
    padding: 0 30px 10px 30px;

    width: 50%;
    float: left;
    border-right: 1px solid #959592;
    /* border-left: 1px solid #959592; */

}
.sideleft h2{
    padding-bottom: 10px;
}
.sideright{
    padding: 2px;
    width: 28%;
    float: right;

}
.clear{
    clear: both;
}
input[type=submit]{
    width: 100px;
    padding: 13px;
    margin: 5px;
    border:0;
    cursor: pointer;
    background-color: #1aaba5;
    border-radius: 2px;
}
input[type=text],[type=email]{
    padding: 10px;
    border-radius: 2px;
}
form{
    padding-top: 15px;
}
span{
    font-weight: bold;
}
main{
    margin: 30px;
}
aside ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
aside ul li{
    padding-bottom: 10px;
}
aside ul li a{
    text-decoration: none;
}
img{
    border: 2px solid #959592;
    margin-top: 10px;
}
footer{
    background-color: grey;
    height: 75px;
    color: #fafafa;
    font-weight: bold;
    padding: 30px;
    text-align: center;
}
#bb{
    color: black;
}
.row{
    padding: 5px;
}
.column{
    padding: 5px;
}
.column img{
    margin: 8px;
    vertical-align: middle;
}
a{
    text-decoration: none;
}


@media only screen and (max-width:1024px){
    body{
        margin: 0;
    }
    nav,section,main,aside,.sideleft,.sideright{
        width: 300%;
        float: none;
    }
    aside, .subscribe{
        display: none;
    }
    #wrapper{
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
    header h1{
        font-size: 300%;
        text-align: center;
    }
    nav{
        float: none;
        width: auto;
    }

    nav li{
        display: inline-block;
        padding: 0.5em;
        width: 100%;
    }
    nav ul{
        text-align: center;
    }
    nav a{
        border-style: none;
    }
    h1,h2{
        font-size: 120%;
        text-align: center;
    }
    p{
        font-size: 90%;
    }
    .sideleft{
        width: 95%;
        border-right: none;
    }
    .sideright{
        display: none;
    }
    main aside{
        display:none;
    }
    img{
        display: none;
    }
    .subscribe{
        display: none;
    }

}

/* ----- Gallery Page ----- */
.body3, #slider, .wrap, .slide-content {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.wrap {
  position: relative;
}

.slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide1 {
  background-image: url("../images/IMG-3437.JPG");
}
.slide2 {
  background-image: url("../images/IMG-3438.JPG");
}
.slide3 {
  background-image: url("../images/4.jpg");
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide-content span {
  font-size: 5rem;
  color: #fff;
}

.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 0;
  height: 0;
  border-style: solid;
}

#arrow-left {
  border-width: 30px 40px 30px 0;
  border-color: transparent #fff transparent transparent;
  left: 0;
  margin-left: 30px;
  z-index: 999;
}

#arrow-right {
  border-width: 30px 0 30px 40px;
  border-color: transparent transparent transparent #fff;
  right: 0;
  margin-right: 30px;
}



/* ------ Contact Page ------ */

tr td textarea{
    width: 100%;
}
textarea{
    color: black;
}
/* section.sec3{
    width: 70%;
    height: 10vh;
    background-size: cover;
    background-position: center;
} */
.btn2{
    padding: 5px 0px;
}

/* ------ Blog ------ */
section.sec1{
    width: 100%;
    height: 100vh;
    background: url(1.jpg);
    background-size: cover;
    background-position: center;
}
.content{
    margin-top: 80px;
}
.content p{
    width: 900px;
    margin: 30px auto;
    text-align: justify;
    font-size: 20px;
    line-height: 30px;
}

/* ------- Friends Page -------- */
.secpic{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.clear{
    clear: both;
}
.content{
    margin-top: 15px;
}
.content p{
    width: 900px;
    margin: 30px auto;
    text-align: justify;
    font-size: 20px;
    line-height: 30px;
}
.clear{
    clear: both;
}




/*----------------------------Slider------------------------------*/
.banner{
    width: 100%;
    height: 750px;
    position: relative;
    /* margin-top: 46px; */
}
#slider{
    width: 100%;
    height: 750px;
    position: absolute;
    overflow: hidden;
    /* margin-top: 46px; */
}
#next{
    text-align: center;
    line-height:50px;
    color: #ffffff;
    width:50px;
    height:50px;
    background-color:#1aaba5;
    position: absolute;
    top:400px;
    right:0;
    z-index:999;
    cursor: pointer;
    opacity:.4;
}
#pre{
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    width:50px;
    height:50px;
    background-color: #1aaba5;
    position: absolute;
    top:400px;
    left:0;
    z-index:99;
    cursor: pointer;
    opacity:.4;
}
.banner:hover #next{
    opacity:1;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
}
.banner:hover #pre{
    opacity:1;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
}

nav ul ul{
    position: absolute;
    padding:0;
    opacity:.9;
    z-index:999;
}


/*-----------------------Image slider---------------------------*/
#curtain{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(0,0,0,0.4);
}
#light{
    max-width: 80%;
    max-height: 80%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: auto;
}
#close{
    height: 50px;
    width: 50px;
    top:0;
    right: 0;
    position: absolute;
    z-index: 990;
}

/* ----- Travel Page ------- */

.body2, .html2{
  height:100%;
  margin:0;
  font-size:16px;
  font-family:"Lato", sans-serif;
  font-weight:400;
  line-height:1.8em;
  color:#666;
}

.pimg1, .pimg2, .pimg3{
  position:relative;
  opacity:0.70;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  /*
    fixed = parallax
    scroll = normal
  */
  background-attachment:fixed;
}

.pimg1{
  background-image:url('../images/IMG-3437.JPG');
  min-height:100%;
}

.pimg2{
  background-image:url('../images/4.jpg');
  min-height:600px;
}

.pimg3{
  background-image:url('../images/IMG-3438.JPG');
  min-height:600px;
}

.section2{
  text-align:center;
  padding:50px 80px;

}

.section2-light{
  background-color:#f4f4f4;
  color:#666;
}

.section2-dark{
  background-color:#282e34;
  color:#ddd;
}

.ptext{
  position:absolute;
  top:50%;
  width:100%;
  text-align:center;
  color:#000;
  font-size:27px;
  letter-spacing:8px;
  text-transform:uppercase;
}

.ptext .border{
  background-color:#111;
  color:#fff;
  padding:20px;
}

.border2{
    color: white;
}
.ptext .border.trans{
  background-color:transparent;
}

@media(max-width:568px){
  .pimg1, .pimg2, .pimg3{
    background-attachment:scroll;
  }
}


/* ----- Accom Page ----- */
.room{
    width: 300px;
    float: left;
    padding: 0 10px 15px 0;
}
.roomtext{
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

#txtName, #email, #Phone, #select, #textarea{
    margin: 10px;
}



/* ---- food page ---- */
.aside2{
    padding: 10px 4px 10px 24px;
    margin-left: 15px;
    float: left;
    width: 15%;
    border-right: 0px solid #959592;
}
.sideleft2{
    padding: 0 0px 10px 100px;

    width: 60%;
    float: left;
    border-right: 1px solid #959592;
    border-left: 1px solid #959592;

}
.sideleft2 h2{
    padding-bottom: 10px;
}
.sideright2{
    padding: 0px 75px 0px 0px;
    width: 20%;
    float: right;

}

/* lightbox */
/* something in the script? is not working or the class is wrong */
.limages{
    width: 300px;
    padding: 5px;
    margin: 10px;
    border-radius: 5px;
}
#lightbox{
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#curtain{
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    position: fixed;
    top: 0;
    left: 0;
}
#close{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}








/* ---- Direction Page ---- */
.sideleft3{
    padding: 0 50px 10px 50px;

    width: 60%;
    float: left;
    border-right: 1px solid #959592;
    border-left: 1px solid #959592;

}
.sideleft2 h3{
    padding-bottom: 10px;
}

table, th, td {
    border: 1px solid lightgrey;
    padding: 5px 20px 5px 20px;
}