body {
    font-family: "Poppins", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
    /* overflow-x: hidden; */



}

.hamburgerHeader {
    display: none;
}

/* hamburger menu */
/* Hamburger menu */
#menu button {
    background-color: rgb(244, 176, 50);
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: #181818;
    padding: 12px 20px;
}

.nav-bar img {
    width: 40px;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
    list-style: none;
    right: 0;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: 0.15s ease-in-out;
}

.menu li a:hover::after {
    width: 100%;
}

.open-menu,
.close-menu {
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    display: block;
}

.close-menu {
    display: none;
}


@media only screen and (max-width: 882px) {
    .menu {
        flex-direction: column;
        /* align-items: center;
        justify-content: center; */
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #181818;
        transition: all 0.2s ease-in-out;
    }
#menu i{
    margin-top: 15%;
}
    .menu li {
        margin-top: 40px;
        right: 0;
        padding-left: 0;

    }

    .menu li a {
        padding: 10px;
    }

    .open-menu,
    .close-menu {
        display: block;
    }
}








button:hover {
    cursor: pointer;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    background-color: rgb(25, 25, 25);
    color: white;



}

header section img {
    height: 50px;
    border-radius: 50px;

}

header section {
    margin: 0px 15px;
}

header nav ul {
    display: flex;
    width: 500px;
    justify-content: space-between;

}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: white;
}

header nav ul li a:hover {
    text-decoration: underline overline;

}

header button {
    background-color: rgb(244, 176, 50);
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;

}

/* main */
.landingPageImage {
    position: relative;
}

.landingPageImage img {
    width: 100%;
    height: 650px;
    filter: brightness(80%);
}

.landingPageText {
    color: white;
    position: absolute;
    top: 50%;
    left: 25%;

}

.landingPageText h1 {
    width: 100%;
    margin-left: 2%;
    font-size: 50px;

}

.landingPageText h2 {
    margin-left: 10%;
    font-size: 30px;
    font-weight: 200;
}

.landingPageTextB {
    margin-left: 20%;
}

.landingPageText button {
    background-color: rgb(244, 176, 50);
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    margin-left: 40%;
}

/* ABOUT US */
#aboutus {
    margin: 5% 20%;
}

#aboutus h1 {
    margin-left: 35%;
    font-size: 50px;
    font-weight: 100;
}

#aboutus p {
    justify-content: center;
    align-items: center;
    text-align: justify;
}

/* OUR ROOMS */
#ourrooms {
    margin: 0px 5%;
}

.ourroomsTitle {
    margin-left: 40%;
    font-size: 50px;
    font-weight: 100;
}

.pieceOfMind {
    display: grid;
    grid-template-columns: 50%auto;
    grid-gap: 30px;
}

.pieceOfMind section img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.pieceOfMind-content {
    margin: 15% 10%;
    color: rgb(77, 77, 77);
}

.pieceOfMind-content h1 {
    font-size: 30px;
    font-weight: 200px;
}

.pieceOfMind-content button {
    background-color: rgb(244, 176, 50);
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    margin-left: 20%;
}

/* DELUXE ROOMS */
.deluxroom {
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 30px;
}

.deluxroom-text h1 {
    font-size: 30px;
    font-weight: 200px;
}

.deluxroom-text {
    margin: 15% 10%;
    color: rgb(77, 77, 77);
}

.deluxroom section img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.deluxroom-text button {
    background-color: rgb(244, 176, 50);
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    margin-left: 20%;
}

/* COSY ROOMS */
.cosyrooms {
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 30px;
}

.cosyrooms section img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.cosyroomText h1 {
    font-size: 30px;
    font-weight: 200px;
}

.cosyroomText {
    margin: 15% 10%;
    color: rgb(77, 77, 77);
}

.cosyroomText button {
    background-color: rgb(244, 176, 50);
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    margin-left: 20%;
}

/* EVENTS */
.event {
    color: white;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: rgb(244, 176, 50);
    box-shadow: 2px 2px 12px #aaa;
}

.ourevents-Title {
    margin-left: 40%;
    font-size: 50px;
    font-weight: 100;
}

.event-title {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 500;
}

.event-date,
.event-time,
.event-location,
.event-capacity {
    font-size: 1em;
    margin: 2px 0;
    font-weight: 300;
}

.event-description {
    margin-top: 5px;
    font-weight: 200;
}

#ourevents {
    display: flex;
    overflow-x: scroll;
}

#ourevents::-webkit-scrollbar {
    width: 0;
}





/* BOOK NOW BUTTON */
.booknowbutton button {
    background-color: rgb(244, 176, 50);
    color: white;
    font-weight: 700;
    border: none;
    padding: 10px 50px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    margin: 5% 45%;
}

/* OUR CUISINE */
.cuisineTitle {
    margin-left: 40%;
    font-size: 50px;
    font-weight: 100;
}

.fish {
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 30px;
}

.fish-image img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
}

.fish-info h1 {
    font-size: 30px;
    font-weight: 200px;
}

.fish-info {
    margin-left: 35%;
    margin: 20% 5%;
    color: rgb(77, 77, 77);
}

/* OUR STORY */
#ourstory {
    margin: 0px 5%;

}

.ourstorymain {
    display: flex;
    gap: 50px;
}

.ourstory-title {
    margin-left: 40%;
    margin-bottom: 10%;
    font-size: 50px;
    font-weight: 100;
}

.ourstory-content {

    position: relative;
}

.ourstory-content img {
    height: 600px;
    width: 600px;

}

.ourstoryText {
    color: rgb(77, 77, 77);
    width: 400px;
    border-radius: 10px;
    position: absolute;
    top: -70px;
    left: 90px;
    border: 1px solid;
    background: white;
    text-align: center;
}

.ourstoryText span {
    font-size: 30px;
    font-weight: 200;
}

.ourstoryTextA p {
    color: rgb(77, 77, 77);
    text-align: center;
    font-size: 20px;
}

.ourstoryTextA p span {
    font-size: 30px;
    font-weight: 200;
}

/* CONTACT US */
.contactTitle {
    margin-left: 40%;
    font-size: 50px;
    font-weight: 100;
    margin-top: 5%;
}

form {
    margin: 0px 10%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 30px;
    background-color: rgb(239, 245, 251);
}

form section {
    margin: 25px 20px;
}

form input {

    width: 70%;
    padding: 10px;
}

#message {
    padding: 50px;

}

#sendformbutton {
    margin-top: 25%;
    margin-left: 30%;
    background-color: rgb(244, 176, 50);
    color: white;
    font-weight: 700;
    border: none;
    padding: 10px 50px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;

}

/* FOOTER */
#footerlogo img {
    margin: 0px 42%;
    border-radius: 50px;
}

footer {
    margin-top: 5%;
    background: rgb(9, 9, 9);
    color: white;
    font-size: 20px;
}

footer section h1 {
    font-weight: 200;
    text-align: center;
}

.footerContent {
    display: flex;
    justify-content: space-around;
}

footer ul {
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    color: rgb(199, 198, 198);
    font-weight: 100;
    line-height: 50px;
}

footer section ul li a:hover {
    text-decoration: underline;
}

footer hr {

    border: 1px solid rgb(199, 198, 198);
}

.socialIcons {
    font-size: 20px;
    text-align: center;
    justify-content: space-between;

}

.socialIcons i {
    color: rgb(199, 198, 198);
    padding-left: 30px;
}

#rights {
    display: flex;
    color: rgb(199, 198, 198);
    justify-content: space-around;
    padding-top: 2%;
    padding-bottom: 2%;
}


/* EXTRAS */
.checkavailability:hover {
    cursor: progress;
}

#checkavailability:hover {
    cursor: progress;
}