/* Generic Styling */

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

nav {
    background: white;
    height: 80px;
    width: 100%;
}

/* Top Left Logo Style */
.logo {
    width: 160px;
    height: 80px;
    margin-left: 100px;
}

/* Navigation styles (home, contact, staff) */
nav ul {
   float: right;
   margin-right: 20px; 
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: black;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase; 
}



a:hover {
    color: #e77709;
    transition: color 0.3s ease;
}



.payment_button {
    border: 0px; 
    border-radius: 7px; 
    height: 38px; 
    width: 160px; 
    color: black; 
    font-size: 17px;
    /* font-weight: bold; */
    background-color:#e77709;
    transition: background-color 0.3s ease;
}

/* State when the user hovers over the button */
.payment_button:hover {
  background-color: #ffffff; 
  border: 2px solid #e77709;
}


.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-top: 20px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

.menubar {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

#check {
    display: none;

}

@media (max-width: 952px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display:block; 
    }
    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .25s;
    }
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;

    }
    a:hover,a.active {
        background: none;
        color: #e77709;
    }
    #check:checked ~ ul {
        left: 0;
    }
    
}

/* home image styles */

.home {
    background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(images/clocktowerflower.jpeg) no-repeat top center fixed;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(images/clocktowerflower.jpeg) no-repeat top center fixed; */
    /* filter: brightness(50%); */
    background-size: cover;
    height: calc(75vh - 80px);
}



/* Main title words on the image */
.home h1 {
    font-size: 70px;
    text-align: center;
    color: #e77709;
    padding-top: 2%;
}

/* staff page styles */

.staff-home {
    /* background: url(images/riverside.jpg); */
    background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(images/riverside.jpg) no-repeat top center fixed;
    padding: 10px 0 100px;
    background-position: center;
    background-size:cover;
    height: calc(75vh - 80px);
}

.staff-home h1 {
    font-size: 60px;
    text-align: center;
    color: #e77709;
    padding-top: 2%;
}

.staff {
    text-align: center;
}

.staff h2 {
    font-size: 40px;
    color: black;
    margin-top: 50px;
}

.staff p {
    font-size: 20px;
    color: #5A5A5A;
    margin-bottom: 10px;
}

/* about styles */

/* .about-home {
    background: url(images/riverside.jpg);
    padding: 80px 0 100px;
    background-position: center;
    background-size:cover;
    height: calc(50vh - 80px);
}

.about-home h1 {
    font-size: 60px;
    text-align: center;
    color: white;
    padding-top: 5%;
}

.about {
    text-align: center;
}

.about p {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 30%;
    margin-right: 30%;
    font-size: 20px;
    text-align: center;
} */


/* Welcome paragraph stlying */

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 20px;
    text-align: center;
}

.welcome div {
    width: 50%;
}

#s {
    color: #267000
}

#o {
    color:#dc7600
}

/* contact styling */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 20px;
    text-align: center;
}

.contact div {
    width: 50%;
}



/* staff styling */


.copyright {
    background: #222222;
    height: 200px;
    width: 100%;
    text-align: center;
    color: #8a8d91;
    padding-top: 100px;
    margin-top: 5%;
}

#author {
    color:#272829;
}