body {
    font-family: 'Oswald', sans-serif;
    background-color: #202020;
    color: #F8F8F8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Main container for desktop margins */
.content-wrapper {
    width: 70%;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .content-wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

/* Hero section styles */
.hero {
    position: relative;
    text-align: center;
    width: 100%;
    height: 60vh; /* 60% of viewport height for desktop */
    margin: 0;
    overflow: hidden;
    background-color: #000; /* Prevents white flash */
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    width: 90%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1em 0.5em;
    border-radius: 5px;
}

.hero-text h1 {
    font-size: 3.5em;
    margin: 0;
    text-transform: uppercase;
    color: #F0A202;
}

.contact-info-box.hero-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 1em 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    z-index: 3;
    border: none;
}

.contact-info-box.hero-links a {
    color: #F0A202;
    text-decoration: none;
    font-size: 1.2em;
    padding: 0.5em 1em;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-info-box.hero-links a:hover {
    color: #fff;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero {
        height: 250px;
        border: none;
    }

    .hero-text {
        padding: 0.5em;
    }

    .hero-text h1 {
        font-size: 1.6em;
        line-height: 1.2;
    }

    .contact-info-box.hero-links {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0.8em;
        gap: 0.8em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info-box.hero-links a {
        font-size: 0.9em;
        padding: 0.3em 0.6em;
        display: inline-block;
        color: #F0A202;
    }
}

/* Rest of your existing styles */
.category {
    margin-bottom: 2em;
    background-color: #333;
    padding: 1em;
    border-radius: 15px;
    border: 2px solid #aaa;
    box-sizing: border-box;
}

.category-title { 
    border-bottom: 2px solid #D44D5C;
    padding-bottom: 5px; 
    font-size: 2.5em;
    color: #F0A202;
    text-transform: uppercase;
}

.menu-item { 
    margin: 1.5em 0;
    display: flex;
    align-items: baseline;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #aaa;
    margin: 0 0.5em;
    transform: translateY(-4px);
}

.item-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: baseline;
    width: 100%;
}

.item-name { 
    font-weight: bold; 
    font-size: 1.5em;
}

.item-price {
    font-weight: bold;
    font-size: 1.2em;
    color: #F0A202;
    white-space: pre-wrap;
    text-align: right;
}

.item-description { 
    color: #aaa;
    font-style: italic; 
    margin-top: 5px;
    flex-basis: 100%;
}

.sides-items-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 1em; /* Space between columns and rows */
}

@media (max-width: 768px) {
    .sides-items-container {
        grid-template-columns: 1fr !important; /* Single column on mobile, force it */
    }
    .sides-items-container .menu-item {
        display: block; /* Ensure menu items stack vertically */
    }
}

.gallery {
    padding: 2em;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5em;
    color: #F0A202;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1em;
    min-height: 300px;
}

.masonry-grid img {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
    display: block;
    border: 2px solid #F0A202;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
}

.gallery-pagination {
    text-align: center;
    margin-top: 1em;
}

.pagination-btn {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #D48C02;
    color: #202020;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: 2px solid #aaa;
    cursor: pointer;
    margin: 0 0.5em;
}

.pagination-btn:disabled {
    background-color: #555;
    cursor: not-allowed;
}

.carousel-arrows {
    position: relative;
    height: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    user-select: none;
    z-index: 10;
    padding: 0 0.5em;
    display: none;
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: block;
    }
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

.contact-info-box {
    background-color: #333;
    padding: 1em;
    border-radius: 5px;
    margin-bottom: 1em;
    border: 2px solid #aaa;
    text-align: center;
}

.contact-info-box a {
    color: #F0A202;
}

.contact-us {
    padding: 2em;
    text-align: center;
}

    <div class="food-safety-warning content-wrapper">
      <p>Consuming raw or undercooked meats, poultry, seafood, shellfish or eggs may increase the risk of food-borne illness.</p>
    </div>

.food-safety-warning p {
    font-size: 0.8em;
}

#specials h2,
#breakfast-menu h2,
#lunch-dinner-menu h2 {
    text-align: center;
}

#specials ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;      /* Remove default left padding */
    text-align: center;   /* Center the text within the list items */
}

hr {
    border: 0;
    height: 3px;
    background-color: #555;
    margin: 2em 0;
}
