.banner 
{
    width: 1844px;
    height: 200px;
    object-fit: cover;
    display: block;
}
.assorted-deli-meats
    {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

h2
    {
        text-align: center;
    }

nav 
{
    background-color: #8B0000;
    text-align: center;
    padding: 10px 0;
}

nav ul 
{
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li 
{
    display: inline-block;
    margin: 0 12px;
}

nav a 
{
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 5px;
}

nav a:hover 
{
    background-color: #c62828;
}

header
{
    background-color: #8B0000;
}

h1
{
    text-decoration: none;
    text-align: center;
    background-color: #8B0000;
    color: white;
    padding: 15px;
    margin: 0;
}

h1 a {
    color: white;
    text-decoration: none;
}

body
{
    background-color: #fff8f0;
}

#wrapper
    {
        background-color: #fff8f0;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

p
{
    font-family: sans-serif;
    color: #333;
    font-size: 18px;
    margin-bottom: 18px;
    padding: 10px;
    margin-left: 100px;
    margin-right: 600px;
    border: 100px;
}

.RBphoto
    {
        padding-left: 75px;
        height: 400px;
        width: 770px;
    }

.pastrami
    {
        padding-left: 75px;
        height: 400px;
        width: 770px;
    }

.turk
    {
        padding-left: 75px;
        height: 400px;
        width: 770px;
    }
.SAND
    {
        height: 400px;
        width: 800px;
    }

#about h2
    {
        padding-top: 100px;
         text-align: center;
    }

#about p
    {
         text-align: center;
         padding-left: 500px;
    }

#about ul
    {
        padding-left: 0;
        text-align: center;
        list-style-position: inside;
    }
#about li
    {
        margin-bottom: 8px;
    }
/* CONTACT PAGE */

#contact 
    {
        width: 70%;
        margin: auto;
        padding: 25px;
        background-color: #f4f4f4;
        border-radius: 8px;
}

#contact h2 
    {
        color: darkred;
        margin-top: 20px;
    }

#contact label 
    {
        display: block;
        margin-top: 12px;
        font-weight: bold;
    }

#contact input,
#contact textarea 
    {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

#contact button 
    {
        margin-top: 15px;
        padding: 10px 18px;
        background-color: darkred;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

#contact button:hover 
    {
        background-color: #a30000;
    }

    /* ======================================= */
/* CATERING TABLE STYLING */
/* Styles the catering tray information table */
/* ======================================= */

.catering-table
{
    width: 70%;                /* table width */
    margin: 40px auto;        /* centers the table */
    border-collapse: collapse;
    font-family: sans-serif;
}

.catering-table th
{
    background-color: #8B0000; /* dark red header */
    color: white;
    padding: 12px;
}

.catering-table td
{
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
}

.catering-table tr:nth-child(even)
{
    background-color: #f4f4f4; /* alternating row color */
}


/* ======================================= */
/* NUTRITION TABLE STYLING */
/* Styles the nutrition information table */
/* ======================================= */

.nutrition-table
{
    width: 60%;               /* slightly smaller than catering table */
    margin: 40px auto;       /* centers table */
    border-collapse: collapse;
    font-family: sans-serif;
}

.nutrition-table th
{
    background-color: #8B0000;  /* dark gray header */
    color: white;
    padding: 12px;
}

.nutrition-table td
{
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.nutrition-table tr:nth-child(even)
{
    background-color: #f2f2f2; /* striped rows */
}