/* General styling */
body {
    background-color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Logo styling */
#logo {
    display: block;
    margin: 20px auto;
}

/* Headings */
h1, h2 {
    color: #22aab9;
    text-align: center;
}

h2 {
    margin-top: 40px;
}

/* Colored text */
.colored-text {
    color: #fc6a03;
}

/* Section styling */
section {
    margin: 40px auto;
    width: 80%;
}
/* Highlighted Text Styling */
.highlight-text {
    color: #fc6a03;
    text-align: center;
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
    letter-spacing: 1px;
    margin: 10px auto;
}

/* Menu Title Styling */
.menu-title {
    color: #22aab9;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: 30px;
}

/* Two-column layout for non-BBQ sections */
.food-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 80%;
    margin: 20px auto;
}

/* Image container for Street Food section */
.food-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30%;
}

/* Image sizing */
.food-images img {
    width: 100%;
    border: solid #22aab9 5px;
    display: block;
}

/* Menu list container */
.food-menu {
    width: 70%;
}

/* Menu Table Styling */
.menu-list {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.menu-list th, .menu-list td {
    padding: 10px;
    border-bottom: 1px solid #22aab9;
}

.menu-list th {
    font-size: 18px;
    color: #fc6a03;
    text-align: left;
}

.menu-list td {
    font-size: 16px;
}

.menu-list td:nth-child(2) {
    font-size: 14px;
}

/* BBQ Grid Layout */
.bbq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    text-align: left;
    margin: 0 auto;
    width: 80%;
}

/* BBQ Categories */
.bbq-category {
    background-color: white;
    border: solid #fc6a03 3px;
    padding: 10px;
    border-radius: 8px;
}

/* Footer */
#footer {
    text-align: center;
    color: #22aab9;
    padding: 20px;
    border-top: solid #22aab9 2px;
    margin-top: 50px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .food-section {
        flex-direction: column;
        align-items: center;
    }

    .food-images {
        width: 80%;
    }

    .food-menu {
        width: 100%;
    }

    .bbq-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
}
/* Premium BBQ Single Frame */
.bbq-premium-frame {
    background-color: white;
    border: solid #fc6a03 3px;
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    width: 80%;
}

/* Three-column layout within the frame */
.bbq-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    text-align: left;
}

/* Individual columns */
.bbq-premium-column {
    padding: 10px;
}

/* BBQ List Styling */
.bbq-list {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
}

.bbq-list li {
    padding: 6px 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .bbq-premium-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
}