* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url('../assets/background/fire-flame-black-background.jpeg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body, .container {
    text-align: center;
}

.container {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
}


/* ===================================================== */

/* header section */
header {
    margin: auto;
    margin-top: 10px;
    padding: 10px;
    color: rgb(255, 255, 255);
    max-width: 600px;
}

#shop-logo {
    width: 180px;
}

#shop-name {
    color: rgb(237, 61, 37);
    font-weight: 600;
    text-shadow: rgb(255, 255, 255) 1px 2px;
    text-transform: uppercase;
    font-size: 3.2rem;
}

@media screen and (max-width: 332px) {
    .shop-title > #shop-name {
        font-size: 2.2rem;
        text-shadow: rgb(255, 255, 255) 1px 1px;
    }
    h3 #subtitle {
        font-size: 1.5rem;
    }
    p #moto {
        font-size: 1.2rem;
    }
}

#subtitle {
    font-weight: bold;
    font-style: italic;
    color: rgb(255, 230, 0);
    text-shadow: rgb(7, 7, 7) 1px 1px;
    text-transform: uppercase;
    font-size: 2rem;
}

.shop-logo>#halal-badge {
    font-size: 0.9rem;
    background-color: rgba(255, 42, 9, 0.8);
}

#moto {
    font-weight: bold;
    font-size: 1.4rem;
}

#moto, #phone-number, #location, .submenu-title {
    text-shadow: -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000,  
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 2px 0 #000000,
    0 -2px 0 #000000;
}

h5 > a {
    text-decoration: none;
    font-style: italic;
    color: rgb(255, 255, 255);
}

a:hover {
    color: rgb(237, 61, 37);
    text-decoration: underline;
}

#phone-number {
    /* display: block; */
    margin-bottom: 0.8rem;
}

#delivery-services {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px;
    padding-left: auto;
    padding-right: auto;
}

#deliveroo, #justEat, #uberEat {
    margin: auto 3px;
    text-decoration: none;
}


/* ===================================================== */

/* menu section */

/* main dishes */
.submenu {
    margin: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.274);
    border-radius: 8px;
}

.submenu {    
    outline-color: rgb(240, 255, 255);
    outline-style: groove;
    outline-width: 4px;
}

h3.submenu-title {
    font-weight: bolder;
    padding: 20px;
    color: rgb(255, 255, 255);
    font-size: 1.8rem;
}

.submenu-items {
    padding: 10px;
}

@media screen and (max-width: 540px) {
    .submenu-items {
        padding: 0;
    }
}

.card {
    outline-color: rgb(237, 61, 37);
    outline-style: groove;
    outline-width: 1px;
    padding-bottom: 5px;
}

.submenu-items .card {
    max-width: 380px;
    background-color: rgba(255, 255, 255, 0.9)
}

.family-special .card {
    width: 380px;
}

.card-title {
    padding-top: 7px;
    padding-bottom: 5px;
}

@media screen and (min-width: 991px) {
    .card-title {
        height: 50px;
        padding-top: 8px;
    }
}

.card-text {    
    max-width: 249px;
    margin: auto;
}

.card-text:nth-child(even) {
    text-align: center;
    font-size: 16px;
    margin-top: 12px;
}

.price {
    border: 2px solid rgba(83, 20, 20, 0.5);
    border-radius: 50px;
    color: brown;
    font-size: 1.5rem;
    font-weight: bold;
}

.photo {
    max-width: 249px;
    max-height: 166px;
}

#cold-drinks {
    margin: auto 26%;
}


#fizzy-drink {    
    max-height: 256px;
}

#moto, h3.submenu-title, .card-title, .card-text {
    text-transform: capitalize;
}

/* ===================================================== */

/* footer */
footer {
    background-color: rgb(43, 14, 11);
    color: rgb(255, 255, 255);
    padding: 10px;
    text-align: center;
}

#web-designer {
    font-size: 0.95rem;
    font-style: italic;
}

#websiteReferal {
    font-style: italic;
    font-weight: bold;
    background: linear-gradient(to top, rgb(255, 217, 0), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#websiteReferal:hover {
    border-bottom: 1px solid rgb(255, 255, 255);;
}

.superscript {
    vertical-align: super;
    font-size: 0.8em;
}


/* ===================================================== */

/* media query */
@media screen and (max-width: 991px ) {
    #cold-drinks {
        margin: auto 20px;
    }    
}