/* General Styles */

* {
    margin: 0px;
    padding: 0px;
    font-family: "Playfair Display", serif;
    scroll-behavior: smooth;
    max-width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.error {
    width: 80%;
    color: #fff;
    font-size: small;
    font-style: italic;
    font-weight: 400;
    /* background-color: black; */
    padding: 1%;
    /* border: solid; */
}

/* adding reveal and rotation animation  */

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

.rotate {
    animation: rotation 9s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

/* Custom Scroll */

/* width */
::-webkit-scrollbar {
    width: 10px;

    background-color: rgba(0, 0, 0, 0);
}
/* Track */
::-webkit-scrollbar-track {
    background-color: #352e27;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(240, 240, 240);
    border-radius: 10px;
    width: 5px;
    height: 5px;
}

Handle on hover ::-webkit-scrollbar-thumb:hover {
    background: #352e27;
}

/* Nav Section Styles */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}

@media (hover: hover) and (pointer: fine) {
    #logo:hover {
        box-shadow: 2px 2px 10px #fff;
    }
}

.sticky-bg {
    width: 100%;
    background-color: rgb(53, 46, 39, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 2px 10px 30px #fff;
}

nav {
    position: sticky;
    top: 0;
    z-index: 11;
    padding: 1%;
}

nav img {
    border: solid 1px #fff;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2%;
}

nav li {
    font-size: 25px;
    color: #fff;
    border-style: none;
    text-shadow: 2px 2px 2px #352e27;
}

nav li:first-child {
    margin-right: auto;
    border-style: none;
}

@media (hover: hover) and (pointer: fine) {
    nav li:first-child:hover {
        padding: none;
        border: none;
        box-shadow: none;
        cursor: pointer;
    }
}

@media (hover: hover) and (pointer: fine) {
    nav li:hover {
        border-bottom: solid 1px #fff;
        cursor: pointer;
    }
}

nav a {
    height: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: 0.5s;
    color: #fff;
    padding: 5px;
    font-family: "DM Serif Display", serif;
    letter-spacing: 3px;
}

@media (hover: hover) and (pointer: fine) {
    nav a:hover {
        font-size: 110%;
        transition: 0.3s;
    }
}

nav img {
    width: 40%;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background-color: rgba(53, 46, 39, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5%;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}

/* Adding Responsivess to Nav Section */

@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

@media (max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}

/* Landing Page1 */

#hero-section {
    min-height: 100vh;
    max-width: 100vw;
    background-image: url(assets/images/b4ccdb04-0ea7-4e94-84a2-aa5d51f33be0.jpeg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-sub-container-one {
    background-color: transparent;
    white-space: nowrap;
    text-align: center;
    /* box-shadow: 5px 5px 80px #fff;
    padding: 2%; */
}

/* .hero-sub-container-one h2 {
    color: #fff;
    font-style: italic;
    padding-top: 5%;
} */

#icon {
    border: solid;
    border-color: #fff;
    border-width: 1px;
    border-radius: 50%;
    width: 14%;
    box-shadow: 5px 5px 30px black;
    margin-bottom: -3%;
    z-index: 1;
    position: relative;
}

#title-one {
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-size: 150px;
    color: #fff;
    transition: 0.7s;
    letter-spacing: 10px;
    border-bottom: solid;
    text-shadow: 5px 5px 2px black;
    background-color: rgb(53, 46, 39, 0.4);
    backdrop-filter: blur(5px);
}

#title-two {
    font-size: 100px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #b19043;
    transition: 0.7s;
    letter-spacing: 15px;
    text-shadow: 2px 2px 2px black;
    background-color: rgb(53, 46, 39, 0.4);
    backdrop-filter: blur(5px);
}

/* .home-links-container {
    margin-top: 3%;
} */

.homepage-links-container {
    margin-top: 3%;
    font-family: "Playfair Display", serif;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10%;
    /* flex-direction: row; */
    /* justify-content: space-around;
    align-items: center;
    text-align: center; */
    /* gap: 3%; */
    /* display: flex; */
    /* border: solid; */
}

.homepage-links {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: solid;
    border-width: 1px;
    padding: 2%;
    background-color: rgba(110, 52, 25, 0.9);
    color: #fff;
    font-weight: 700;
    box-shadow: 5px 5px 3px black;
}

@media (hover: hover) and (pointer: fine) {
    .homepage-links:hover {
        box-shadow: 10px 10px 2px black;
    }
}

/* Adding responsiveness to LandingPage1 */

@media (min-width: 320px) {
    #hero-section {
        background-position: bottom;
        background-size: cover;
    }

    #title-one {
        font-size: xx-large;
    }

    #title-two {
        font-size: large;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: x-small;
        letter-spacing: 1px;
        padding: 1%;
    }
}

@media (min-width: 414px) {
    #hero-section {
        background-position: bottom;
        background-size: cover;
    }

    #title-one {
        font-size: xxx-large;
    }

    #title-two {
        font-size: x-large;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: small;
        padding: 1%;
    }
}

@media (min-width: 480px) {
    #hero-section {
        background-position: bottom;
        background-size: cover;
    }

    #title-one {
        font-size: 60px;
    }

    #title-two {
        font-size: xx-large;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: small;
        padding: 1%;
    }
}

@media (min-width: 768px) {
    nav img {
        width: 30%;
    }

    #title-one {
        font-size: 50px;
    }

    #title-two {
        font-size: x-large;
        letter-spacing: 5px;
    }

    #hero-section {
        margin-top: 9%;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: small;
        padding: 1%;
    }
}

@media (min-width: 991px) {
    nav img {
        width: 70%;
    }

    nav li {
        font-size: 15px;
    }

    #icon {
        width: 20%;
    }

    #title-one {
        font-size: 80px;
    }

    #title-two {
        font-size: 50px;
        letter-spacing: 5px;
    }

    #hero-section {
        margin-top: 5%;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: medium;
        padding: 1%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    nav img {
        width: 40%;
        opacity: 1;
    }

    nav li {
        font-size: 17px;
    }

    #hero-section {
        min-height: 100vh;
        max-width: 100vw;
    }

    #icon {
        width: 20%;
    }

    #title-one {
        font-size: 80px;
    }

    #title-two {
        font-size: 50px;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: medium;
        padding: 1%;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    nav img {
        width: 40%;
        opacity: 1;
    }

    nav li {
        font-size: 20px;
    }

    #hero-section {
        min-height: 100vh;
        max-width: 100vw;
    }

    #icon {
        width: 20%;
    }

    #title-one {
        font-size: 100px;
    }

    #title-two {
        font-size: 70px;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: large;
        padding: 1%;
    }
}

@media (min-width: 1920px) {
    nav img {
        width: 40%;
        opacity: 1;
    }

    nav li {
        font-size: 27px;
    }

    #hero-section {
        min-height: 100vh;
        max-width: 100vw;
    }

    #icon {
        width: 20%;
    }

    #title-one {
        font-size: 150px;
    }

    #title-two {
        font-size: 110px;
        letter-spacing: 5px;
    }

    .homepage-links-container {
        gap: 3%;
    }

    .homepage-links {
        width: 30%;
        font-size: x-large;
        padding: 1%;
        letter-spacing: 3px;
    }
}

/* About Us Section styles */

#about-us {
    max-width: 100%;
    background-color: #352e27;
    /* border-bottom: solid 50px black; */
}

.about-us-container {
    text-align: left;
    width: 80%;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5%;
}

.about-us-container h1 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 2%;
    border-width: 2px;
}

.about-us-container h2 {
    font-size: 25px;
    font-weight: 900;
    color: #fff;
    padding: 3%;
}

.about-us-container h3 {
    font-family: "Playfair Display", serif;
    color: #352e27;
    font-size: 45px;
    font-style: italic;
    font-weight: 500;
    padding-bottom: 2%;
    border-bottom: solid 3px;
}

.about-us-container p {
    font-family: "Playfair Display", serif;
    color: #fff;
}

.about-us-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2%;
}

.about-us-col1 {
    padding: 2%;
    flex-basis: 70%;
}

.about-us-col1 h3 {
    color: #fff;
    font-weight: 500;
}

.about-us-col1 p {
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 5%;
    letter-spacing: 1px;
    padding-top: 5%;
}

/* .about-us-col1 h2 {
    color: #352e27;
    font-size: 20px;
    border: solid 1px;
    background-color: #b19043;
} */

.about-us-col2 {
    padding: 2%;
    flex-basis: 30%;
    background-color: #e5e4e4;
    box-shadow: 5px 5px 30px black;
}

.about-us-col2 h3 {
    color: #352e27;
    margin-bottom: 10px;
    font-weight: 700;
}

#fsa {
    width: 50%;
    border: solid 1px;
    border-radius: 5px;
}

.about-us-col2 p {
    color: #352e27;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 10%;
    margin-bottom: 8%;
    font-style: italic;
}

/* Adding responsiveness to About Us Section */

@media (min-width: 320px) {
    .about-us-container h3 {
        font-size: 15px;
        text-align: center;
    }

    #fsa {
        font-size: 10px;
    }

    .about-us-container p {
        font-size: 9px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: column;
    }

    .about-us-col1 {
        margin-bottom: 10%;
    }
}

@media (min-width: 480px) {
    .about-us-container h3 {
        font-size: 20px;
        text-align: center;
    }

    #fsa {
        font-size: 12px;
    }

    .about-us-container p {
        font-size: 11px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: column;
    }

    .about-us-col1 {
        margin-bottom: 10%;
    }
}

@media (min-width: 768px) {
    .about-us-container h3 {
        font-size: 23px;
        text-align: center;
    }

    #fsa {
        font-size: 10px;
    }

    .about-us-container p {
        font-size: 10px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: row;
    }

    .about-us-col1 {
        margin-bottom: 10%;
    }

    .about-us-col1 p {
        margin-bottom: 1%;
    }

    .about-us-col2 {
        flex-basis: 20%;
    }

    .about-us-col2 p {
        margin-top: 5%;
        margin-bottom: 20%;
    }
}

@media (min-width: 991px) {
    .about-us-container h3 {
        font-size: 25px;
        text-align: center;
    }

    #fsa {
        font-size: 12px;
    }

    .about-us-container {
        min-height: 60vh;
    }

    .about-us-container p {
        font-size: 11px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: row;
        gap: 10%;
    }

    .about-us-col2 {
        flex-basis: 50%;
    }

    .about-us-col2 p {
        margin-bottom: 20%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .about-us-container h3 {
        font-size: 30px;
        text-align: center;
    }

    #fsa {
        font-size: 12px;
    }

    .about-us-container {
        min-height: 60vh;
    }

    .about-us-container p {
        font-size: 12px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: row;
        gap: 5%;
    }

    .about-us-col2 {
        flex-basis: 50%;
    }

    .about-us-col2 p {
        margin-bottom: 20%;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .about-us-container h3 {
        font-size: 30px;
        text-align: center;
    }

    #fsa {
        font-size: 12px;
    }

    .about-us-container {
        min-height: 60vh;
    }

    .about-us-container p {
        font-size: 12px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: row;
        gap: 5%;
    }

    .about-us-col2 {
        flex-basis: 50%;
    }

    .about-us-col2 p {
        margin-bottom: 15%;
    }
}

@media (min-width: 1920px) {
    .about-us-container h3 {
        font-size: 44px;
        text-align: center;
    }

    #fsa {
        font-size: 22px;
    }

    .about-us-container {
        min-height: 60vh;
    }

    .about-us-container p {
        font-size: 20px;
        text-align: center;
    }

    .about-us-row {
        flex-direction: row;
        gap: 5%;
    }

    .about-us-col2 {
        flex-basis: 50%;
    }

    .about-us-col2 p {
        margin-top: 10%;
        margin-bottom: 15%;
    }
}

/* Catering Packages */

.packages-container {
    /* border-top: solid 50px black; */
    align-items: center;
    /* background-color: #352e27; */
    background-image: url(assets/images/buffet-4471275_1280.jpg);
    background-position: center;
    background-size: cover;
}

.packages {
    padding: 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

#packages-h1 {
    letter-spacing: 5px;
}

.packages-title h1 {
    font-family: "DM Serif Display", serif;
    font-weight: 800;
    font-size: 150px;
    color: #352e27;
    transition: 0.7s;
    border-bottom: solid;
    background-color: rgb(251, 251, 251);
    /* mix-blend-mode: color-burn; */
    /* background-image: url(assets/images/ritae-salad-1672505_1280.jpg); */
    /* background-position: bottom; */
    /* background-size: cover; */
}

.packages h1 {
    font-family: "DM Serif Display", serif;
    font-size: 70px;
    padding: 1%;
    letter-spacing: 3px;
    /* backdrop-filter: blur(15px); */
    border-bottom: solid;
}

.packages-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 30vw;
    gap: 5%;
}

.packages h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.packages h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.packages p {
    font-size: 15px;
    font-weight: 600;
}

.gold {
    border: solid #b19043 2px;
    padding: 2%;
    border-radius: 5%;
    background-color: rgb(177, 144, 67, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 5px 5px 50px #b19043;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30vw;
    margin-bottom: 3%;
}

.gold h1 {
    color: #b19043;
    background-color: rgb(251, 251, 251, 0.9);
    text-shadow: 2px 2px 2px black;
}

.gold h2 {
    color: #fff;
}

.gold h3 {
    color: #fff;
}

.gold-description {
    background-color: rgb(177, 144, 67, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.gold-prices {
    background-color: rgb(177, 144, 67, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.gold-prices h2 {
    border-bottom: solid;
}

.platinum {
    border: solid #c0c0c0 2px;
    border-radius: 5%;
    padding: 2%;
    background-color: rgb(192, 192, 192, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 5px 5px 50px #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30vw;
    margin-bottom: 3%;
}

.platinum h1 {
    color: #fff;
    background-color: rgb(192, 192, 192, 0.9);
    text-shadow: 2px 2px 2px black;
}

.platinum h2 {
    color: #352e27;
}

.platinum h3 {
    color: #352e27;
}

.platinum-description {
    background-color: rgb(251, 251, 251, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.platinum-prices {
    background-color: rgb(251, 251, 251, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.platinum-prices h2 {
    border-bottom: solid;
}

.diamond {
    border: solid #fff 2px;
    border-radius: 5%;
    padding: 2%;
    background-color: rgb(251, 251, 251, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: 5px 5px 50px #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30vw;
    margin-bottom: 3%;
}

.diamond h1 {
    color: #fff;
    background-color: rgb(53, 46, 39, 0.8);
    text-shadow: 2px 2px 2px black;
}

.diamond h2 {
    color: #fff;
}

.diamond h3 {
    color: #fff;
}

.diamond-description {
    background-color: rgb(53, 46, 39, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.diamond-prices {
    background-color: rgb(53, 46, 39, 0.9);
    box-shadow: 5px 5px 50px black;
    padding: 4%;
}

.diamond-prices h2 {
    border-bottom: solid;
}

.delivery {
    color: #352e27;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-top: 5%;
    margin-bottom: 2%;
    padding: 2%;
    padding-bottom: 4%;
    box-shadow: 5px 5px 50px black;
    background-color: rgb(251, 251, 251, 0.8);
}

.delivery h2 {
    margin-bottom: 3%;
    width: 60vw;
    font-weight: 800;
    background-color: #b19043;
    border-radius: 5px;
    border: solid 2px;
    color: black;
}

#custom-menu-text {
    background-color: rgb(53, 46, 39, 0.7);
    color: #fff;
    border: solid 2px;
    padding: 1%;
    width: 40vw;
}

.book {
    color: #352e27;
    background-color: #fff;
    padding: 2%;
    padding-bottom: 4%;
    width: 50vw;
    box-shadow: 5px 5px 50px black;
    background-color: rgb(251, 251, 251, 0.8);
}

.book h2 {
    margin-bottom: 3%;
    font-weight: 800;
    background-color: #b19043;
    border-radius: 5px;
    border: solid 2px;
    color: black;
}

/* .book h3 {
    background-color: rgb(53, 46, 39, 0.7);
} */

/* Adding responsiveness to Packages Section */

@media (min-width: 320px) {
    #packages-h1 {
        letter-spacing: 4px;
    }

    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100vw;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 14px;
    }

    .packages p {
        font-size: 15px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 100%;
        margin-bottom: 10%;
    }

    .delivery {
        margin-bottom: 7%;
        width: 100%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        font-size: 20px;
    }

    #custom-menu-text {
        width: 70vw;
    }

    .book {
        width: 100%;
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 20px;
    }
}

@media (min-width: 480px) {
    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100vw;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 14px;
    }

    .packages p {
        font-size: 15px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .delivery {
        margin-bottom: 7%;
        width: 100%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        font-size: 30px;
    }

    .book {
        width: 100%;
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 30px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 30vw;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 14px;
    }

    .packages p {
        font-size: 15px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 100%;
        margin-bottom: 5%;
    }

    .delivery {
        margin-bottom: 2%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        width: 70vw;
        font-size: 30px;
        /* margin-bottom: 2%; */
    }

    .book {
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 30px;
        margin-bottom: 2%;
    }
}

@media (min-width: 991px) {
    .packages-title h1 {
        letter-spacing: 1px;
    }

    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 40vw;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 14px;
    }

    .packages p {
        font-size: 15px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .delivery {
        margin-bottom: 2%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        width: 70vw;
        font-size: 35px;
        /* box-shadow: 10px 10px 50px black;
        border-radius: 15px; */
        margin-bottom: 3%;
    }

    .book {
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 35px;
        /* box-shadow: 10px 10px 50px black;
        border-radius: 15px; */
        margin-bottom: 3%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .packages-title h1 {
        letter-spacing: 1px;
    }

    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 18px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages p {
        font-size: 18px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .delivery {
        margin-bottom: 2%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        width: 70vw;
        font-size: 40px;
        /* box-shadow: 10px 10px 50px black;
        border-radius: 15px; */
        margin-bottom: 3%;
    }

    .book {
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 40px;
        /* box-shadow: 10px 10px 50px black;
        border-radius: 15px; */
        margin-bottom: 3%;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .packages-title h1 {
        letter-spacing: 1px;
    }

    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 18px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages p {
        font-size: 18px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .delivery {
        width: 50vw;
        margin-bottom: 2%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        width: 70vw;
        font-size: 40px;
        margin-bottom: 3%;
    }

    .book {
        width: 50vw;
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 40px;
        margin-bottom: 3%;
    }
}

@media (min-width: 1920px) {
    .packages-title h1 {
        letter-spacing: 1px;
    }

    .packages h1 {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        padding: 1%;
        backdrop-filter: blur(15px);
        width: 100vw;
        border-bottom: solid;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 18px;
    }

    .packages h3 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
    }

    .packages p {
        font-size: 18px;
        font-weight: 600;
    }

    .gold {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .platinum {
        padding: 2%;
        width: 70%;
        margin-bottom: 5%;
    }

    .diamond {
        padding: 2%;
        width: 70%;
    }

    .delivery {
        width: 50vw;
        margin-bottom: 2%;
        box-shadow: 10px 10px 10px black;
    }

    .delivery h2 {
        font-size: 40px;
        margin-bottom: 3%;
    }

    .delivery h3 {
        width: 50vw;
        font-size: 20px;
    }

    .book {
        width: 50vw;
        box-shadow: 10px 10px 10px black;
    }

    .book h2 {
        font-size: 40px;
        margin-bottom: 3%;
    }

    .book h3 {
        font-size: 22px;
    }
}

/* Order Form styles */

#order-section {
    min-height: 100vh;
    max-width: 100vw;
    background-color: #352e27;
    color: white;
    padding: 1%;
    display: flex;
}

.order-form-container {
    text-align: center;
    color: white;
    /* width: 100%; */
    margin: auto;
    /* min-height: 50vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2%;
    border: solid;
    /* border-radius: 15px; */
    box-shadow: 10px 10px 50px #b19043;
    margin-top: 3%;
    margin-bottom: 3%;
    font-size: 18px;
}

#icon-order-form {
    border: solid;
    border-color: #6e3419;
    border-radius: 50%;
    width: 7%;
}

.order-form-container h2 {
    font-size: 50px;
    border-bottom: solid;
    letter-spacing: 2px;
    background-color: rgb(177, 144, 67, 0.3);
    width: 100%;
}

.order-form-container h4 {
    color: white;
    /* font-weight: 600; */
    font-size: 18px;
}

#order-instructions {
    border: solid 1px;
    color: #352e27;
    border-color: #b19043;
    box-shadow: 10px 10px 50px #b19043;
    background-color: #fff;
    padding: 2%;
    font-weight: 800;
}

#order-form {
    /* margin-top: 1%; */
    text-align: left;
    width: 100%;
    /* width: 100%; */
    /* background-color: black; */
    /* border-radius: 15px; */
    font-weight: 600;
    /* padding: 5%; */
}

#order-form h4 {
    margin-top: 5px;
    font-style: italic;
    font-weight: 500;
    margin-bottom: -20px;
}

#order-form label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    border-bottom: solid #b19043 2px;
}

#order-form input {
    width: 100%;
    margin-top: 10px;
}

#order-form-name {
    font-style: italic;
    padding: 10px;
    margin-bottom: 10px;
    border: solid #b19043 2px;
    border-radius: 15px;
}

#order-form-email {
    font-style: italic;
    padding: 10px;
    margin-bottom: 10px;
    border: solid #b19043 2px;
    border-radius: 15px;
}

#order-form-number {
    font-style: italic;
    padding: 10px;
    margin-bottom: 10px;
    border: solid #b19043 2px;
    border-radius: 15px;
}

#order-form-subject {
    font-style: italic;
    padding: 10px;
    margin-bottom: 10px;
    border: solid #b19043 2px;
    border-radius: 15px;
}

#order-form-message {
    height: 200px;
    width: 100%;
    font-style: italic;
    padding: 10px;
    margin-bottom: 30px;
    border: solid #b19043 2px;
    border-radius: 15px;
}

#submit-order-button {
    width: 300px;
    height: 50px;
    color: white;
    background-color: #352e27;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    border: solid;
    border-color: white;
    /* border-radius: 15px; */
    transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    #submit-order-button:hover {
        background-color: #fff;
        color: #352e27;
        font-size: 19px;
        cursor: pointer;
        box-shadow: 5px 5px 10px #b19043;
    }
}

/* Adding responsiveness to Order Form Section */

@media (min-width: 320px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 24px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 12px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 20%;
    }

    #order-form label {
        font-size: 15px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 480px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 24px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 12px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 20%;
    }

    #order-form label {
        font-size: 15px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 768px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 35px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 12px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 15%;
    }

    #order-form label {
        font-size: 15px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 991px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 40px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 16px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 15%;
    }

    #order-form label {
        font-size: 15px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 40px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 16px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 15%;
    }

    #order-form label {
        font-size: 20px;
    }

    #order-form input {
        font-size: 17px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 40px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 16px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 15%;
    }

    #order-form label {
        font-size: 20px;
    }

    #order-form input {
        font-size: 17px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

@media (min-width: 1920px) {
    .order-form-container {
        text-align: center;
        color: white;
        width: 80%;
    }

    .order-form-container h2 {
        font-size: 40px;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .order-form-container h3 {
        color: white;
        margin-bottom: -3%;
        font-size: 11px;
        font-weight: 400;
        font-style: italic;
    }

    .order-form-container h4 {
        font-size: 16px;
        font-weight: 600;
    }

    #icon-order-form {
        width: 15%;
    }

    #order-form label {
        font-size: 20px;
    }

    #order-form input {
        font-size: 17px;
    }

    #order-form-message {
        margin-bottom: 10px;
    }

    #submit-order-button {
        margin-top: 1px;
        width: 150px;
        box-shadow: 5px 5px 10px #b19043;
    }
}

/* The alert message box */

/* .alertContainer {
    display: none;
    margin-top: 20%;
    border-bottom: solid #352e27;
    padding: 2%;
    width: 100vw;
    background-color: rgb(251, 251, 251, 0.9);
    backdrop-filter: blur(5px);
}

#alertText {
    padding: 1%;
    display: flex;
    justify-content: center;
}

.closebtn {
    margin: auto;
    color: #fff;
    background-color: #352e27;
    font-weight: bold;
    float: right;
    width: 50px;
    cursor: pointer;
    border: solid;
    border-width: 1px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .closebtn:hover {
        background-color: #fff;
        color: #352e27;
        border-color: #352e27;
        border-width: 1px;
    }
} */

/* Landing Page2 Styles */

#hero-section2 {
    min-height: 100vh;
    max-width: 100vw;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url(assets/images/bbq-810545_1280.jpg);
    background-position: center;
    background-size: cover;
}

.hero-sub-container-three {
    background-color: transparent;
    white-space: nowrap;
    text-align: center;
}

.hero-sub-container-three h2 {
    color: #fff;
    font-size: 30px;
    margin-top: 2%;
    margin-bottom: 2%;
    font-family: "Slackey", sans-serif;
    text-shadow: 5px 2px 2px black;
}

.hero-sub-container-three h3 {
    color: white;
    margin-bottom: 2%;
    font-size: 30px;
    font-family: "Slackey", sans-serif;
    text-shadow: 5px 2px 2px black;
}

#drive-thru-title {
    font-size: 120px;
    font-weight: 500;
    font-family: "Slackey", sans-serif;
    color: #fff;
    /* position: relative; */
    transition: 0.7s;
    z-index: 15;
    text-shadow: 8px 1px 2px black;
    border-radius: 5px;
    /* mix-blend-mode: luminosity; */
    background-color: rgb(253, 87, 3, 0.2);
    /* box-shadow: 5px 5px 50px rgb(253, 87, 3); */
    /* backdrop-filter: blur(3px); */
    background-image: url(assets/images/bbq-810545_1280.jpg);
    background-position: right;
    background-size: cover;
    box-shadow: 10px 10px 20px black;
}

#drive-thru-description {
    margin-top: 5%;
    padding: 1%;
    background-color: rgb(0, 0, 0, 0.7);
    border-radius: 5px;
    box-shadow: 5px 5px 50px rgb(253, 87, 3);
}

#drive-thru-bbq-logo {
    width: 25%;
    transition: border 0.7s ease;
    border-radius: 100%;
}

@media (hover: hover) and (pointer: fine) {
    #drive-thru-bbq-logo:hover {
        border: 5px solid #fff;
        box-shadow: 10px 10px 50px #fff;
    }
}

/* Adding Landing Page2 responsiveness*/

@media (min-width: 320px) {
    #hero-section2 {
        min-height: 80vh;
        /* max-width: 100vw; */
    }

    .hero-sub-container-three {
        padding: 5%;
    }

    .hero-sub-container-three h2 {
        font-size: 10px;
        text-wrap: wrap;
    }

    .hero-sub-container-three h3 {
        font-size: 12px;
        text-wrap: wrap;
    }

    #drive-thru-title {
        font-size: 35px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 1%;
    }

    #drive-thru-bbq-logo {
        width: 75%;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 480px) {
    #hero-section2 {
        min-height: 80vh;
        /* max-width: 100vw; */
    }

    .hero-sub-container-three {
        padding: 5%;
    }

    .hero-sub-container-three h2 {
        font-size: 10px;
        text-wrap: wrap;
    }

    .hero-sub-container-three h3 {
        font-size: 12px;
        text-wrap: wrap;
    }

    #drive-thru-title {
        font-size: 50px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 1%;
    }

    #drive-thru-bbq-logo {
        width: 75%;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 768px) {
    #drive-thru-title {
        font-size: 45px;
        padding: 2%;
    }

    .hero-sub-container-three h2 {
        font-size: 15px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 5%;
    }

    #drive-thru-bbq-logo {
        width: 300px;
        height: 300px;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 991px) {
    #drive-thru-title {
        font-size: 70px;
        padding: 2%;
        width: 70vw;
    }

    .hero-sub-container-three h2 {
        font-size: 15px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 5%;
    }

    #drive-thru-bbq-logo {
        width: 350px;
        height: 350px;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #drive-thru-title {
        font-size: 80px;
        padding: 2%;
        width: 70vw;
    }

    .hero-sub-container-three h2 {
        font-size: 18px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 5%;
    }

    #drive-thru-bbq-logo {
        width: 350px;
        height: 350px;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #drive-thru-title {
        font-size: 100px;
        padding: 2%;
        width: 70vw;
    }

    .hero-sub-container-three h2 {
        font-size: 20px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 5%;
    }

    #drive-thru-description {
        font-size: 40px;
    }

    #drive-thru-bbq-logo {
        width: 350px;
        height: 350px;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

@media (min-width: 1920px) {
    #drive-thru-title {
        font-size: 110px;
        padding: 2%;
    }

    .hero-sub-container-three h2 {
        font-size: 20px;
        text-wrap: wrap;
    }

    .drive-thru-bbq-logo-container {
        margin-top: 5%;
    }

    #drive-thru-bbq-logo {
        width: 500px;
        height: 500px;
        border: 5px solid #fff;
        box-shadow: 5px 5px 50px white;
    }
}

/* Contact Us Section styles */

#contact-us {
    min-height: 100vh;
    max-width: 100vw;
    background-color: #000000;
    padding: 4%;
}

#contact-us p {
    color: white;
}

.contact-us-container {
    text-align: center;
    /* color: white; */
    font-weight: 600;
    width: 80%;
    margin: auto;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2%;
    border: solid #fff 3px;
    box-shadow: 10px 10px 50px white;
}

.contact-us-container h2 {
    font-size: 50px;
    color: white;
    text-align: center;
    border-bottom: solid #b19043 2px;
    letter-spacing: 2px;
    margin-bottom: 2%;
}

.contact-us-container h4 {
    margin-top: 5%;
    text-wrap: wrap;
    font-size: 18px;
    border: solid 1px;
    border-color: #fff;
    box-shadow: 10px 10px 50px #fff;
    padding: 1%;
    font-weight: 800;
}

#contact-us-form {
    /* width: 70%; */
    margin-top: 5%;
    width: 100%;
    /* padding: 10px; */
    /* flex-basis: 31%; */
    /* font-size: 18px; */
    /* background-color: #ad9f7d; */
    text-align: left;
    font-weight: 600;
    color: white;
    /* background-color: #ad9f7d; */
    /* border-radius: 15px; */
}

#contact-us-form label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    border-bottom: solid #b19043 2px;
    width: 100%;
}

#contact-us-form input {
    width: 100%;
    margin-top: 10px;
}

#contact-us-form textarea {
    width: 100%;
    margin-top: 10px;
}

#contact-us-form h4 {
    font-size: 5px;
}

#name {
    font-style: italic;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 15px;
    text-align: left;
}

#email {
    font-style: italic;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 15px;
}

#number {
    font-style: italic;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 15px;
}

#subject {
    font-style: italic;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 15px;
}

#general-message {
    height: 200px;
    font-style: italic;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 25px;
}

#submit-button {
    /* width: 300px; */
    height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: solid;
    border-color: #fff;
    border-width: 3px;
    /* border-radius: 15px; */
    background-color: #000;
    transition: 0.3s;
    width: 50%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

@media (hover: hover) and (pointer: fine) {
    #submit-button:hover {
        font-size: 19px;
        color: black;
        cursor: pointer;
        border: solid 1px #b19043;
        background-color: #fff;
        box-shadow: 5px 5px 10px #b19043;
    }
}

.contact-us-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}

/* Adding responsiveness to Contact Us section */

@media (min-width: 320px) {
    .contact-us-container h2 {
        font-size: 24px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 12px;
    }
}

@media (min-width: 480px) {
    .contact-us-container h2 {
        font-size: 24px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .contact-us-container h2 {
        font-size: 35px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 12px;
    }
}

@media (min-width: 991px) {
    .contact-us-container h2 {
        font-size: 40px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 16px;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #contact-us-form label {
        font-size: 20px;
    }

    #contact-us-form input {
        font-size: 17px;
    }

    .contact-us-container h2 {
        font-size: 40px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 16px;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #contact-us-form label {
        font-size: 20px;
    }

    #contact-us-form input {
        font-size: 17px;
    }

    .contact-us-container h2 {
        font-size: 50px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 18px;
    }
}

@media (min-width: 1920px) {
    #contact-us-form label {
        font-size: 20px;
    }

    #contact-us-form input {
        font-size: 17px;
    }

    .contact-us-container h2 {
        font-size: 50px;
        padding: 2%;
        color: white;
        text-align: center;
    }

    .contact-us-container h4 {
        color: white;
        text-wrap: wrap;
        font-size: 18px;
    }
}

/* Socials */

.contact-us-socials {
    margin: auto;
    margin-top: 5%;
    flex-basis: 31%;
    width: 70%;
    border: solid;
    border-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 50px white;
    padding: 1%;
}

.contact-us-socials h3 {
    color: white;
    border-bottom: solid #b19043 2px;
    letter-spacing: 2px;
    width: 70%;
}

.contact-us-socials h4 {
    color: white;
    font-size: 8px;
    padding: 5%;
    font-weight: 800;
}

.contact-us-socials p {
    font-size: 8px;
    padding: 2%;
}

.socials-container {
    display: flex;
    gap: 10%;
    align-items: center;
}

.socials-icon {
    padding: 1%;
    background-color: #ad9f7d;
    border-radius: 10%;
}

@media (hover: hover) and (pointer: fine) {
    .socials-icon:hover {
        background-color: #fff;
        cursor: pointer;
        box-shadow: 10px 10px 50px white;
    }
}

.socials-icon img {
    background-color: #ad9f7d;
    display: flex;
}

@media (hover: hover) and (pointer: fine) {
    .socials-icon img:hover {
        background-color: #fff;
        display: flex;
    }
}

/* Adding responsiveness to Socials Section */
@media (min-width: 320px) {
    .contact-us-socials h4 {
        color: white;
        font-size: 8px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 480px) {
    .contact-us-socials h3 {
        font-size: 16px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 70%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 12px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 768px) {
    .contact-us-socials h3 {
        font-size: 25px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 70%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 15px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 991px) {
    .contact-us-socials h3 {
        font-size: 25px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 70%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 18px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .contact-us-socials h3 {
        font-size: 25px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 70%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 18px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .contact-us-socials h3 {
        font-size: 25px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 50%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 18px;
        padding: 5%;
        font-weight: 800;
    }
}

@media (min-width: 1920px) {
    .contact-us-socials h3 {
        font-size: 25px;
        color: white;
        border-bottom: solid #b19043 2px;
        letter-spacing: 2px;
        width: 40%;
    }

    .contact-us-socials h4 {
        color: white;
        font-size: 18px;
        font-weight: 800;
    }
}
