*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
:root {
    --primary-color: #000000;
    --secondary-color: #212121;
    --tertiary-color: #6B6B6B;
    --accent-color: #909090;
    --light-color: #BFBFBF;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid white;
    color: white;
    background-color: black;
}
nav h1 {
    margin-left: 20px;
    font-size: 2rem;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin: 5px 20px 0;
}
nav ul li a {
    text-decoration: none;
    color: white;
}
nav ul li a:hover {
    color: var(--accent-color);
}
ul.navbar-nav {
    background-color: #000000;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.header-container {
    height: 100vh;
    width: 100%;
}
.header-container img{
    padding-bottom: 20px;
    height: 600px;
    width: auto;
    transform: scaleX(-1);
}
.header-container svg {
    position: absolute;
    bottom: 0;
}
.header-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.header-info {
    margin: 100px;
    height: 300px;
}
.header-info h2 {
    font-family: 'Vujahday Script', cursive, 'Segoe Script', cursive;
    font-weight: 500;
    font-size: 3em;
}
.header-info p{
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 30px;
    color: var(--tertiary-color);
}
.header-info a {
    text-align: center;
    padding: 10px 40px;
    text-decoration: none;
    color: white;
    background-color: black;
    border-radius: 10px;
}
@media screen and (max-width: 768px) {
    .header-info {
        margin: 50px;
    }
    .header-container img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 255px;
        height: auto;
    }
}
.start-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden;
}
.menu-card {
    margin-right: 30px;
    width: 400px;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    background-blend-mode: screen;
    background-image: url(../css/img/menubg.jpg);
    background-size: cover;
    background-position: center;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: 300ms ease-in;
}
.menu-card:hover {
    background-blend-mode: lighten;
    background-size: 110%;
    cursor: pointer;
}
.menu-card h2 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 5px white;
    transition: 250ms ease-in;
}
.menu-card a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 2px 2px 5px white;
}
.side-card {
    margin: 20px;
    width: 400px;
    height: 250px;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: var(--secondary-color);
    background-blend-mode: screen;
    transition: 300ms ease-in;
}
.side-card:hover {
    background-blend-mode: lighten;
    background-size: 120%;
    cursor: pointer;
}
.side-card h2 {
    margin: 10px auto 0 30px;
    padding: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 5px white;
    transition: 250ms ease-in;
}
.side-card a {
    margin: 0 auto auto 30px;
    padding: 0;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 2px 2px 5px white;
}
.card-1 {
    background-image: url(../css/img/specialbg.jpg);
}
.card-2 {
    background-image: url(../css/img/header.jpg);
}
footer {
    height: 20vh;
    background-color: var(--primary-color);
}
@media screen and (max-width: 768px) {
    .start-container {
        margin-top: 150px;
        flex-direction: column;
    }
    .menu-card {
        margin: 0 auto;
        display: flex;
        padding: 75px;
    }
    footer {
        margin-top: 150px;
        height: 22vh;
    }
}
.footer-section-container {
    display: flex;
    justify-content: start;
    align-items: center;
}
.footer-section-container section {
    margin: 10px 20px;
}
.footer-section-container section h4 {
    font-size: 1rem;
    font-weight: bolder;
    color: var(--accent-color);
}
.footer-section-container section p {
    font-size: 0.6rem;
    color: var(--light-color);
}
.footer-section-container section a {
    font-size: 0.6rem;
    text-decoration: none;
    color: var(--light-color);
}
.footer-section-container section:last-child img {
    margin: 0;
    margin-right: 5px 10px;
    padding: 0;
    cursor: pointer;
}
.baseline-section {
    margin: auto 5px 0 auto;
    display: flex;
    justify-content: end;
}
.baseline-section p {
    padding: 0 5px;
    color: var(--light-color);
    font-size: 0.6rem;
    border-right: 1px solid var(--light-color);
}
.baseline-section p:last-child {
    border-right: none;
}
/* Style for menu page */
.menu-container {
    margin-bottom: 50px;
    min-height: 100vh;
    width: 100%;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.menu-container h1 {
    margin: 10px;
    text-align: left;
    font-family: 'Vujahday Script', cursive, 'Segoe Script', cursive;
}
.pizza-card-container {
    width: 100%;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pizza-card {
    margin: 0 10px;
    height: 450px;
    width: 290px;
    box-shadow: 1px 1px 20px var(--accent-color);
    transition: 60ms ease-in;
    overflow: hidden;
}
.pizza-card:hover {
    cursor: pointer;
    box-shadow: 1px 1px 25px var(--secondary-color);
}
.pizza-card img {
    margin: 5px auto;
    display: flex;
    height: auto;
    width: 280px;
}
.pizza-card h3 {
    margin: 5px 10px;
    display: flex;
}
.pizza-card h3 span {
    margin-left: auto;
    margin-right: 10px;
}
.pizza-card p {
    margin: 5px 10px;
    white-space: wrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
    .pizza-card {
        margin: 10px 10px;
        height: 295px;
        width: 195px;
        box-shadow: 1px 1px 20px var(--accent-color);
        overflow: hidden;
    }
    .pizza-card img {
        margin: 5 5px;
        height: auto;
        width: 185px;
    }
    .pizza-card h3 {
        font-size: 16px;
    }
    .pizza-card p {
        font-size: 12px;
        white-space: wrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
    }
}
@media screen and (max-width: 480px) {
    .pizza-card {
        margin: 10px 5px;
        height: 295px;
        width: calc(90% / 2);
        box-shadow: 1px 1px 20px var(--accent-color);
        overflow: hidden;
    }
    .pizza-card img {
        margin: 5px auto;
        height: auto;
        width: 175px;
    }
    .start-container {
        width: 80%;
        display: flex;
        margin: 0 auto;
        margin-top: 50px;
    }
    .menu-card {
        margin: 10px;
        display: flex;
        padding: 50px;
    }
    footer {
        height: 27vh;
    }
    nav h1 {
        font-size: 1.5rem;
    }
    .start-container {
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
    }
    .menu-card {
        margin: 0 auto;
        display: flex;
        padding: 75px;
    }
}
@media screen and (max-width: 320px) {
    .pizza-card {
        margin: 5px 0;
        height: 295px;
        width: calc(100% / 2);
        box-shadow: 1px 0px 5px var(--accent-color);
        overflow: hidden;
    }
    .pizza-card img {
        margin: 0;
        height: auto;
        width: 175px;
    }
    footer {
        height: 30vh;
    }
}
/* About Us */
.under-development {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
}
.under-development h1 {
    font-size: 1.5rem;
}
.under-development img {
    width: 300px;
    height: auto;
}
/* Contact Us */
.socials-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
}
