* {
    margin:  0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
}

i {
    color: rgb(3, 42, 3);
}

body {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    flex-direction: column;
}

.booking,
.about,
.events,
.dining {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.events .cardTitle,
.booking .cardTitle,
.about .cardTitle,
.dining .cardTitle {
    text-align: center;
    margin-top: 40px;
}

/* Navigation Styles */

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 50px 20px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn {
    text-decoration: none;
    background-color:rgb(3, 42, 3);
    color: white;
}

nav .leftSide h2 a {
    color: rgb(3, 42, 3);
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
}

nav .leftSide h2 a span {
    display: block;
    font-size: 1.4rem;
}

nav .middleSection ul {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

nav .middleSection ul li {
    list-style: none;
}

nav .middleSection ul li a {
    text-decoration: none;
    color:rgb(3, 42, 3);
    font-weight: 600;
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 3px solid white;
}

nav .middleSection ul li a:hover,
nav .middleSection ul li a:focus {
    border-bottom: 3px solid rgb(3, 42, 3);
}

nav .rightSide .btn {
    font-weight: 500;
    font-size: 1.2rem;
    padding: 12px 20px;
}

/* Main Styles */

main {
    display: flex;
    flex-direction: column;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.478), rgba(0, 0, 0, 0.478)), url(https://images.pexels.com/photos/30391786/pexels-photo-30391786.jpeg?_gl=1*t7lim*_ga*OTEyMDA2NjMwLjE3NzIxMjg4MzA.*_ga_8JE65Q40S6*czE3NzI3Mjc2OTUkbzckZzEkdDE3NzI3MjgwNjYkajEkbDAkaDA.);
    background-size: cover;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 40px;
}

main section {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 450px;
    overflow: hidden;
    padding: 30px 60px;
}

main .diningIntro {
    background-color: rgb(143, 179, 143);
}

main .diningIntro ul {
    margin: 20px;
}

main .col50 {
    width: 50%;
}

main .col50 .textContainer {
    display: flex;
}

.cardTitle {
    color: rgb(3, 42, 3);
    margin: 15px 0px;
    font-size: 2.5rem;
}

main p {
    font-size: 18px;
    margin-bottom: 25px;
}

main .col50 .imgContainer {
    height: fit-content;
    width: 100%;
    overflow: hidden;
}

main .imgContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Button Styles */

.button {
    padding: 10px 20px;
    background-color: transparent;
    color: rgb(3, 42, 3);
    border: 3px solid rgb(3, 42, 3);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 145px;
    text-align: center;
}

.button:hover,
.button:focus {
    background-color: rgb(3, 42, 3);
    color: white;
    box-shadow: 4px 6px 0px black;
}

/* Contact Section Style */

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Book an Event Styles */

.booking h3 {
    font-size: 1.5rem;
}

.booking p {
    font-size: 1rem;
    margin: 40px 0 10px 0;
}

.booking .btnArea input {
    margin: 40px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color:rgb(3, 42, 3);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Forms Styles */

.contact form {
    border: 1px solid rgb(3, 42, 3);
    padding: 25px;
    margin: 25px;
    text-align: center;
}

.contact .inputBox {
    width: 300px;
    height: 40px;
    margin: 15px;
}

.contact .textArea {
    height: 80px;
}

.booking form {
    margin: 40px 60px;
    text-align: center;
}

.booking .inputBox {
    width: 500px;
    height: 40px;
    margin: 15px;
}

.booking .textArea {
    height: 90px;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    height: 100%;
    resize: none;
    padding: 10px;
}

.btnArea input {
    padding: 10px 20px;
    font-size: 1rem;
    background-color:rgb(3, 42, 3);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* About Styles */

.about {
    width: 100%;
    height: 100%;
}

.about .partOne,
.about .partTwo,
.about .partThree {
    text-align: left;
    flex-direction: column;
    height: 100%;
    width: 70%;
}

.about .partTwo ol {
    margin: 20px;
    font-size: 18px;
}

.about .partOne h3,
.about .partTwo h3,
.about .partThree h3 {
    font-size: 1.7rem;
    color: rgb(3, 42, 3);
}

.about .partTwo .imgContainer {
    margin: 20px 15px;
}

.about .partTwo .imgContainer img {
    height: 550px;
}

.about .partOne .textContainer,
.about .partTwo .textContainer,
.about .partThree .textContainer {
    margin: 60px 15px;

}

.col2Container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.sidebar {
    display: flex;
    flex-direction: column;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    width: 150px;
    gap: 20px;
    background-color: rgb(189, 215, 189);
}

.sidebar .linkCont a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 20px 0;
}

.sidebar a:hover,
.sidebar a:focus {
    color: rgb(3, 42, 3);
}

.sidebar h5 {
    margin-top: 15px;
    font-size: 20px;
    color: rgb(3, 42, 3);
}

.backToTop {
    text-decoration: none;
    color: rgb(3, 42, 3);
    font-weight: 700;
    margin: 20px;
    align-self: flex-end;
}

/* Events Styles */

.events {
    display: flex;
    justify-content: start;
    align-items: center;
}

table {
    display: inline-block;
    margin-top: 50px;
    width: 100%;
    border-collapse: collapse;
    padding: 20px;
}

table thead th {
    font-size: 1.3rem;
    color: rgb(3, 42, 3);
    text-align: left;
    padding-right: 50px;
}

table tbody td {
    font-size: 0.8rem;
    text-align: left;
    padding-right: 50px;
}

table a {
    text-decoration: none;
    color: rgb(3, 42, 3);
    font-weight: 500;
}

table a:hover,
table a:focus {
    color: rgb(143, 179, 143);
}

.tableContainer {
    overflow-x: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dining/Catering */

.dining {
    background-color: rgb(189, 215, 189);
    display: flex;
    flex-direction: column;
}

.dining .start {
    margin: 20px 0;
    text-align: left;
    max-width: 900px;
    height: 100%;
    gap: 80px;
}

.dining .col50 {
    width: 50%;
    height: 50%;
}

.dining .gifContainer img {
    border: none;
    overflow: hidden;
    height: 50%;
    width: 100%;
    object-fit: contain;
}

.cards {
    height: 100%;
    margin: 30px 0;
}

.card {
    height: 500px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin: 0 40px;
    padding: 40px;
    gap: 40px;
    box-shadow: 2px 4px 12px black;
}

.card h3 {
    font-size: 1.7rem;
}

.card img {
    overflow: hidden;
    width: 100%;
    height: 50%;
    object-fit: cover;
}


/* Footer Styles */

footer {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(3, 42, 3);
    color: white;
}


@media screen and (max-width: 844px) {
    
    /* Navigation Styles */
    nav {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: space-evenly;
        height: 110px;
        width: 100%;
        padding: 0px 5px;
    }

    nav .leftSide h2 a {
        font-size: 0.7rem;
        display: block;
    }

    nav .leftSide h2 a span {
        font-size: 0.5rem;
    }

    nav .middleSection ul {
        gap: 15px;
    }

    nav .middleSection ul li a {
        font-weight: 600;
        font-size: 0.7rem;
        border-bottom: 2px solid white;
    }

    nav .middleSection ul li a:hover,
    nav .middleSection ul li a:focus {
        border-bottom: 2px solid rgb(3, 42, 3);
    }

    nav .rightSide .btn {
        font-weight: 500;
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    /* Main Styles */

    main {
        display: flex;
        flex-direction: column;
    }

    .hero {
        height: 400px;
        display: flex;
    }

    .hero h1 {
        color: white;
        font-size: 3rem;
        margin: 40px;
    }

    main section {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 30px;
        height: 100%;
        overflow: hidden;
        padding: 20px 20px;
        flex-direction: column;
    }

    main .diningIntro {
        background-color: rgb(143, 179, 143);
        flex-direction: column-reverse;
    }

    main .col50 {
        width: 100%;
    }

    .cardTitle {
        color: rgb(3, 42, 3);
        margin: 10px 0px;
        font-size: 1.5rem;
    }

    main p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    main .imgContainer img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    /* Button Styles */

    .button {
        padding: 5px 10px;
        border: 2px solid rgb(3, 42, 3);
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        display: block;
        width: 80px;
        margin-top: 20px;
    }

    /* Contact Section Style */

    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    /* Book an Event Styles */

    .booking h3 {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .booking p {
        font-size: 1rem;
        margin: 40px 0 10px 0;
    }

    .booking .btnArea input {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* Forms Styles */

    .contact form {
        padding: 10px;
        margin: 10px;
        text-align: center;
    }

    .contact .inputBox {
        width: 200px;
        height: 40px;
        margin: 15px;
    }

    .contact .textArea {
        height: 50px;
    }

    .booking form {
        margin: 5px 10px;
    }

    .booking .inputBox {
        width: 300px;
        height: 30px;
        margin: 10px;
    }

    .booking .textArea {
        height: 50px;
    }

    .inputBox input,
    .inputBox textarea {
        padding: 5px;
    }

    .btnArea input {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* About Styles */

    .about .partOne,
    .about .partTwo,
    .about .partThree {
        width: 100%;
    }

    .about .partOne h3,
    .about .partTwo h3,
    .about .partThree h3 {
        font-size: 1rem;
        color: rgb(3, 42, 3);
    }

    .about .partTwo ol {
        font-size: 0.8rem;
    }

    .about .partTwo .imgContainer {
        margin: 15px 10px;
    }

    .about .partTwo .imgContainer img {
        height: 350px;
    }

    .about .partOne .textContainer,
    .about .partTwo .textContainer,
    .about .partThree .textContainer {
        margin: 0px 15px;

    }

    .col2Container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .sidebar {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 10px;
        text-align: center;
        font-size: 14px;
        width: 100%;
        background-color: rgb(189, 215, 189);
    }

    .sidebar a {
        text-decoration: none;
        color: black;
        font-weight: 500;
        margin: 10px;
        padding: 10px;
    }

    .sidebar h5 {
        margin-top: 0px;
        font-size: 1rem;
    }

    .backToTop {
        font-size: 0.8rem;
    }

    /* Dining/Catering */
    .dining {
        align-items: center;
        justify-content: center;
    }

    .dining .start {
        margin: 15px 0;
        gap: 30px;
        text-align: center;
    }

    .dining .col50 {
        width: 100%;
        height: 100%;
    }

    .cards {
        height: 100%;
        margin: 15px 0;
        align-items: center;
        justify-content: center;
    }

    .card {
        height: 330px;
        width: 250px;
        margin: 0 30px;
        padding: 20px;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card img {
        overflow: hidden;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Events Styles */

    .tableContainer {
        width: 100%;
        overflow-x: auto;
    }
    table {
        min-width: unset;
        width: 100%;
        font-size: 0.8rem;
        display: block;
    }
    thead {
        display: none;
    }
    tbody, tr {
        display: block;
        width: 100%;
    }
    td.cell {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 10px 10px 10px 40%;
        position: relative;
        border-bottom: 1px solid #ccc;
        padding-bottom: 40px;
        text-align: left;
        font-size: 1rem;
        margin-top: 18px;
    }
    td.cell:last-child {
        border-bottom: 2px solid rgb(3, 42, 3);
        padding-bottom: 40px;
        margin-bottom: 20px;
    }
    td.cell:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 10px;
        top: 10px;
        width: 35%;
        font-weight: bold;
        color: rgb(3, 42, 3);
        white-space: normal;
        text-align: left;
        display: inline;
    }
    tr {
        margin-bottom: 20px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    /* Footer Styles */

    footer {
        height: 40px;
        font-size: 13px;
    }
}