@import url('https://fonts.googleapis.com/css2?family=Average&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #AA8819;
    --secondary-color: #414040;
    --tertiary-color: #ffffff;
    --fourth-color: #000000;
}

body {
    --font-script: "Style Script", cursive;
    --font-average: "Average", serif;
    --font-poppins: "Poppins", sans-serif;
    --font-volk: "Vollkorn", serif;
}

.container {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

ul,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--tertiary-color);
    font-family: var(--font-average);
    font-size: 20px;
    border-radius: 50px;
    margin-left: 45px;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.title1 {
    font-family: var(--font-script);
    font-size: 120px;
    color: var(--tertiary-color);
    margin-bottom: 16px;
}

.title2 {
    font-family: var(--font-volk);
    font-size: 64px;
    color: var(--fourth-color);
    margin-bottom: 8px;
}

.sub-title {
    font-family: var(--font-volk);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 56px;
}

/* Header Section */

.nav-item {
    padding: 0 15px;
}

.nav-link {
    color: var(--fourth-color);
    font-size: 20px;
    font-family: var(--font-average);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.icons {
    padding: 0 8px;
}

.mobile-menu {
    display: none;
    max-width: 20px;
}

/* Banner Section */

.banner-section {
    padding: 205px 0;
    text-align: center;
    background: url(../assets/menu-banner.png) no-repeat center/cover;
}

/* Menu Section */

.menu-section .row {
    --bs-gutter-y: 60px;
}

.menu-img {
    position: relative;
}

.menu-img .img-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.menu-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.menu-img:hover img {
    transform: scale(1.05);
}

.menu-name {
    font-family: var(--font-volk);
    font-size: 36px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 300px;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--tertiary-color);
    box-shadow: 0px 4px 46.7px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    text-align: center;
}

/* Bottom Banner Section */

.bottom-banner {
    background: url(../assets/bottom-banner.png) no-repeat center/cover;
    padding: 50px 0;
    text-align: center;
}

.bottom-banner p {
    font-family: var(--font-volk);
    font-size: 70px;
    color: var(--tertiary-color);
}

.bottom-banner .btn-primary {
    background-color: var(--tertiary-color);
    color: var(--fourth-color);
    margin-left: 0;
}

.bottom-banner .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}


/* Footer Section */

.footer-section {
    background-color: var(--secondary-color);
}

.footer-section .row {
    margin-bottom: 80px;
}

.ftr-hdr {
    margin-bottom: 48px;
    font-family: var(--font-volk);
    font-size: 40px;
    color: var(--tertiary-color);
}

.footer-section span {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
    cursor: pointer;
}

.ft-links {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}

.ft-links:hover {
    text-decoration: underline;
}

.subscribe-box {
    display: flex;
    max-width: 400px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.subscribe-box input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    background: transparent;
    color: white;
}

.subscribe-box input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-box input[type="submit"] {
    border: none;
    padding: 0 20px;
    background: var(--tertiary-color);
    color: var(--fourth-color);
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-box input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-icons img {
    cursor: pointer;
    margin-left: 16px;
}

.footer-btm {
    margin-bottom: 80px;
}

.ft-copyright,
.ft-copyright a {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}




/* Media Queries */

@media screen and (max-width:992px) {

    /* Header Section */

    .mobile-menu {
        display: flex;
        position: relative;
        z-index: 1002
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--tertiary-color);
        z-index: 1001;
        transition: right 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navbar-collapse ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .nav-items {
        margin: 15px 0;
    }

    .menu {
        position: relative;
        z-index: 1002;
        cursor: pointer;
    }

    .navbar .btn-primary {
        margin-left: 0;
    }

    /* When the active class is present, slide the menu to 0 */
    .navbar-collapse.active {
        right: 0;
    }

    .icon-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:768px) {

    .section-padding {
        padding: 50px 0;
    }

    .sub-title {
        margin-bottom: 20px;
    }

    /* Menu Section */

    .menu-img {
        margin-bottom: 50px;
    }

    .menu-name {
        font-size: 20px;
        max-width: 240px;
        width: 100%;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 50px;
    }

    /* Footer Section */

    .footer-section .row {
        row-gap: 40px;
        margin-bottom: 50px;
    }

    .ftr-hdr {
        font-size: 28px;
        text-align: center;
    }

    .first-col,
    .second-col,
    .third-col {
        text-align: center;
    }

    .first-col div {
        justify-content: center;
    }

    .footer-btm {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .subscribe-box {
        width: 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .ft-copyright {
        text-align: center;
    }
}

@media screen and (max-width:576px) {

    .title2 {
        font-size: 40px;
    }

    .sub-title {
        font-size: 20px;
    }

    /* Header Section */

    .navbar-brand img {
        max-width: 70px;
    }

    /* Footer Section */

    .ftr-hdr {
        font-size: 24px;
    }

    .footer-section span,
    .ft-links,
    .ft-copyright {
        font-size: 14px;
    }

    .subscribe-box input[type="email"] {
        padding: 10px 15px;
    }

    .subscribe-box input[type="submit"] {
        padding: 0 15px;
        font-size: 14px;
    }

    .social-icons img {
        margin-left: 10px;
        width: 20px;
    }
}


@media screen and (max-width:375px) {

    .title1 {
        font-size: 36px;
    }

    .title2 {
        font-size: 32px;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 36px;
        margin-bottom: 20px;
    }


    /* Footer Section */

    .ftr-hdr {
        font-size: 20px;
    }

    .subscribe-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .subscribe-box input[type="submit"] {
        width: 100%;
        padding: 10px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}