*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    color: white;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    color: white;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Utility classes */
.container-lg {                 
    max-width: 1300px;
    margin: 0 auto;
}

.btn {
    font-family: 'Roboto';
    font-weight: 700;
    color: #0A1425;
    text-transform: uppercase;
    background-color: #FEBF00;
    border: none;
    text-align: center;
}

/* Navbar */
.navbar {
    background: url(images/background-1.png) center center/cover no-repeat, linear-gradient(to bottom right, rgba(189, 31, 23, 1), rgba(165, 29, 19, 1));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    padding: 32px 200px;
}

.navbar_book-button {
    width: 157px;
    height: 44px;
    padding: 10px 24px;
    margin-right: -13.5rem;
}

.navbar.navbar-scroll {
    background: none;
    background-color: rgba(189, 31, 23, 0.9);
    backdrop-filter: blur(30px);
}

.navbar__menu-list {
    font-size: 15px;
    font-family: 'Raleway';
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
 
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-restaurant-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    h1 {
        font-size: 28.44px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;

        span {
            font-weight: 400;
        }
    }    
}

.logo-restaurant img {
    width: 36.99px;
    height: 37.01px;
}

.logo-restaurant-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.navbar__mobile-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.8);
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.navbar__mobile-menu-items.active {
    transform: translateX(0);
}

.navbar__mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.3rem;
}

.navbar__mobile-menu-toggle {
    display: none;
}

.navbar__mobile-menu-toggle {
    cursor: pointer;
}

/* Hero */
.hero {
    background: url(images/background-1.png) center center/cover no-repeat, linear-gradient(to bottom right, rgba(189, 31, 23, 1), rgba(165, 29, 19, 1), rgba(142, 27, 15, 1));
    padding: 239.5px 200px 160px;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 38px;
}

.hero-heading {
    position: relative;
    margin-right: -15rem;
    background: linear-gradient(to right, rgba(189, 31, 23, 1), rgba(189, 31, 23, 0.5));
}

.hero-heading h1 {
    font-family: 'Bebas Neue';
    font-weight: 500;
    font-size: 120px;
    line-height: 130px;
}

.hero-image img {
    min-width: 500px;
    min-height: 549px;
    width: 100%;
    object-fit: cover;
}

.hero-content-p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin-top: -38px;
}

.hero-content-button {
    padding: 16px 24px;
    font-size: 18px;
}

/* About */
.about {
    color: #0A1425;
    padding: 120px 200px;
    position: relative;
}

.about-side-image {
    position: absolute;
    top: 50%;
    right: 0;
}

.about-side-image img {
    width: 150px;
}

.about li a {
    color: #0A1425;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 74px;
    justify-content: space-between;
    align-items: start;
}

.about-grid > * {
    min-width: 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 32px;
    h1 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 62px;
        text-transform: uppercase;
        line-height: 62px;
    }

    p { 
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
    }
}

.about-content-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
    border: none;
    border-bottom: 1px solid #B52B1D;
}

.about ul li {
    padding: 6px 16px;
    font-size: 14px;
    &:first-child {
        background-color: #B52B1D;
        a {
            color: white;
        }    
    }
}

.button-phone {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 32px;
}

.about-more-button {
    padding: 16px 24px;
    font-size: 18px;
}

.about-phone-number {
    i {
        width: 20.48px;
        height: 20.53px;
        color: #BD1F17;
    }

    p {
        display: inline-block;
        margin-left: 8px;
        font-weight: 700;
        font-size: 18px;
    }
}

.about-services-flex {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 74px;
    margin-left: 22px;
}

.service {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    h3 {
        font-family: 'Bebas Neue';
        text-transform: uppercase;
        font-weight: 500;
        font-size: 30px;
    }

    p {
        font-size: 20px;
        font-weight: 400;
    }

    i {
        color: rgba(189, 31, 23, 1);
        font-size: 2rem;
        position: relative;
    }
}

.service i::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    box-shadow: 0 5px 3px rgba(0,0,0,0.1);
}

/* Popular */
.popular {
    background-color: #FBF7F2;
    color: #0A1425;
    padding: 120px 200px;
    position: relative;
}

.popular-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;

    h1 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 62px;
        margin-bottom: 32px;
    }
}

.snack {
    position: absolute;
    top: 45%;
    left: 0;

    img {
        width: 100px;
        height: 200px;
    }
}

.fa-square, .crispy {
    display: inline-block;
    color: rgba(189, 31, 23, 1);
}

.crispy {
    font-weight: 700;
    font-size: 20px;
}

.fa-square {
    margin-right: 10px;
    font-size: 12px;
}

.popular-arrows-flex {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 4rem;
    margin-right: 25px;
}

.arrow {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 0;

}

.arrow-1 {
    color: #0A1425;
}

.arrow-2 {
    color: rgba(189, 31, 23, 1);
}

.arrow::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
}

.popular-images-flex {
    grid-column: span 2;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 32px;
}

.popular-food-border {
    width: 57px;
    height: 4px;
    background-color: rgba(189, 31, 23, 1);
    margin: 0 auto 15px;
}

.food-flex {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1rem;
    width: 100%;
    gap: 10px;
    img {
        width: 100px;
        height: 100px;
    } 

    h3 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        text-transform: uppercase;
        font-size: 24px;
        margin-bottom: -12px;
    }

    p {
        font-size: 16px;
    }
}

/* Book */
.book-now {
    background: url(images/background-2.jpg) center top/cover no-repeat;
    color: white;
    padding: 120px 200px;
    
    h1 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 62px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    form {
        margin: 32px 0;
        width: 550px;         
    }

    .text {
        width: 545px;
    }
}

.book-now-p {
    display: inline-block;
    color: rgba(189, 31, 23, 1);
    font-weight: 700;
    font-size: 20px;
    font-weight: 700;

}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    row-gap: 20px;

    textarea {
        grid-column: span 2;
        padding: 12px 16px;
        margin-bottom: 10px;
        height: 140px;
        background-color: transparent;
        border: 1px solid rgba(229, 231, 235, 1);
        outline: none;
        color: rgba(229, 231, 235, 1);
        font-family: 'Roboto';
        font-size: 14px;
        &::placeholder {
            color: rgba(229, 231, 235, 1);
        }

    }

    input {
        padding: 12px 16px;
        border: 1px solid rgba(229, 231, 235, 1);
        background-color: transparent;
        color: rgba(229, 231, 235, 1);
        outline: none;
        font-family: 'Roboto';
        font-size: 14px;
        &::placeholder {
            color: rgba(229, 231, 235, 1);
        }
    }
}

.form-button {
    width: 142px;
    height: 56px;
    padding: 16px 24px;
    font-size: 18px;
}

/* Remark */
.remark {
    background-color: white;
    color: #0A1425;
    padding: 120px 200px;
    position: relative;
}

.side-image {
    position: absolute;
    left: 0;
    top: 30%;
    width: 100px;

    img {
        width: 100%;
    }
}

.plant {
    position: absolute;
    right: 0;
    top: 50%;
    width: 250px;

    img {
        width: 100%;
    }
}

.remark-arrows-flex {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 4rem;
    margin-right: 25px;
}

.remark-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: center;

    h1 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 62px;
        margin-bottom: 1rem;
    }
}

.remark-photo-flex {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    margin-top: 30px;
} 

.remark .border {
    width: 100%;
    height: 1px;
    background-color: #0A1425;
    margin-bottom: 20px;
}

.remark-text {
    background-color: #FEBF00;
    width: 556.45px;
    height: 556.45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 164px;
    padding: 4rem 4.5rem 2rem;

    p {
        font-size: 20px;
        line-height: 34px;
    }
}

.profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -230px;

    .detail {
        line-height: 3px;
        h4 {
            font-family: 'Bebas Neue';
            font-weight: 500;
            font-size: 18px;
        }

        p {
            font-size: 14px;
        }
    }
}

.bison-burger img{
    width: 763.6px;
    height: 555.97px; 
    object-fit: cover;  
}

.bison-burger {
    position: relative;
}

.bison-burger button {
    display: block;  /*since button is inline*/
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 49.53px;
    height: 49.94px;
    border-radius: 50%;
    border: none;
    
}

/* circle */
.bison-burger button::after {
    content: '';
    position: absolute;
    width: 49.53px;
    height: 49.53px;
    border-radius: 50%;
    background-color: yellow;
    top: 50%;
    left: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
} 

/* triangle */
.bison-burger button::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-left: 20px solid black;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
} 

/* Footer */
.footer {
    color: white;
    background: url('images/restaurant.jpg') center/cover no-repeat;;
    position: relative;
    z-index: 0;
    padding: 120px 200px;

    h1 {
        text-align: center;
        margin-bottom: 2rem;
        text-transform: uppercase;
        font-weight: 500;
        font-family: 'Bebas Neue';
        font-size: 62px;
    }
}

.footer * {
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.flex-1-item {
    width: 300px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding: 2px 0;

    h3 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    p:last-child {
        margin-top: -1rem;
    }
    i {
        margin-bottom: 8px;
        color: #FEBF00;
    }
}

.footer-flex-1 {
    display: flex;
    justify-content: center;
    gap: 24px;  
}

.social-flex {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    p {
        font-size: 18px;
    }
}

.social-icons-flex {
    display: flex;
    gap: 2.5rem;
}

.social-icons-flex a {
    position: relative;
}

.social-icons-flex a::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.23px solid white;
    border-radius: 50%;
}

/* Media Queries */
@media (max-width: 992px) {
    .navbar__menu, .navbar_book-button {
        display: none;
    }

    .navbar__mobile-menu-toggle {
        display: block;
        font-size: 13px;
    }

    .navbar {
        padding: 20px 30px;
    }

    
    /* Hero */
    .hero {
        padding: 117.5px 30px 32px;
    }

    .hero-container {
        flex-direction: column;
        gap: 48px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-heading {
        margin-right: 0;
        background: none;
    }

    .hero-heading h1 {
        font-family: 'Bebas Neue';
        font-weight: 500;
        font-size: 48px;
        line-height: 56px;
    }

    .hero-image img {
        min-width: 0;
        min-height: 310.9px;
    }

    .hero-content-p {
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        margin-top: 0;
    }

    .hero-content-button {
        padding: 13.6px 20.4px;
        font-size: 15.3px;
    }


    /* About */
    .about {
        color: #0A1425;
        padding: 32px 30px;
        position: relative;
    }

    .about-side-image {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 50px;

        img {
            width: 100%;
        }
    }

    .about-content-grid {
        gap: 32px;
        h1 {
            font-size: 40px;
            line-height: 48px;
        }    
    }

    .about-content-list {
        margin-top: -18px;
    }

    .button-phone {
        gap: 16px;
    }

    .about-more-button {
        padding: 12px 12px;
        font-size: 16px;
    }

    .about-phone-number {
        i {
            width: 17.07px;
            height: 17.11px;
        }

        p {
            font-size: 14px;
        }
    }

    .about-services-flex {
        grid-column: span 1;
        flex-direction: column;
        align-items: start;
        gap: 32px;
    }

    .service {
        
        h3 {
            font-size: 24px;
        }

        p {
            font-size: 18px;
        }
    }

    .service i::after {
        width: 70px;
        height: 70px;
    }


    /* Popular */
    .popular {
        padding: 32px 30px;
    }

    .popular-container {
        grid-template-columns: 1fr;
        row-gap: 30px;
        justify-content: center;
        align-items: center;

        h1 {
            font-size: 40px;
            margin-bottom: 0;
        }
    }

    .snack, .side-image, .plant {
        display: none;
    }

    .crispy {
        font-size: 16px;
    }

    .popular-arrows-flex {
        justify-content: center;
        order: 3;
        margin-right: 0;
        margin-top: -14px;
    }

    .arrow::after {
        width: 40px;
        height: 40px;
    }

    .popular-images-flex {
        grid-column: span 1;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .popular-images-flex > :not(:first-child) {
        display: none;
    }


    /* Book */
    .book-now {
        padding: 30px;
        
        h1 {
            font-size: 40px;
            margin-bottom: 8px;
        }

        form {
            margin: 0;
            width: 100%;         
        }

        .text {
            width: 100%;
        }
    }

    .book-now-p {
        font-size: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;

        textarea {
            grid-column: span 1;
        }
    }

    .form-button {
        width: 123px;
        height: 48px;
        padding: 11px 20px;
        font-size: 16px;
    }


    /* Remark */
    .remark {
        padding: 30px;
    }

    .remark-arrows-flex {
        justify-content: center;
        order: 3;
        margin-right: 0;
    }

    .remark-container {
        grid-template-columns: 1fr;
        justify-content: start;
        align-items: center;
        gap: 24px;

        h1 {
            font-size: 40px;
            line-height: 48px;
            margin-bottom: 0;
        }
    }

    .remark-photo-flex {
        grid-column: span 1;
        flex-direction: column-reverse;
        margin-top: 0;
    } 

    .remark .border {
        margin-bottom: 0;
    }

    .remark-text {
        justify-content: space-between;
        gap: 40px;
        padding: 25px;
        width: 100%;
        height: 450px;

        p {
            font-size: 18px;
            line-height: 28px;
        }
    }

    .bison-burger img {
        width: 100%;
        height: 240px;
    }

    .profile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: -230px;

        .detail {
            line-height: 3px;
            h4 {
                font-family: 'Bebas Neue';
                font-weight: 500;
                font-size: 18px;
            }

            p {
                font-size: 14px;
            }
        }
    }


    /* Footer */
    .footer {
        padding: 30px;

        h1 {
            font-size: 40px;
            line-height: 48px;
        }
    }

    .footer-flex-1 {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .flex-1-item {
        gap: 2px;

        i {
            margin-bottom: 0;
        }
        h3 {
            margin-bottom: -10px;
        }
    }

    .social-flex {
        margin-top: 3rem;
        gap: 1rem;

        a::after {
            width: 30px;
            height: 30px;
        }

        a {
            font-size: 0.7rem;
        }
    }

}