/* Menu Page Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #d8c5b1; /* Light beige background */
}

body::-webkit-scrollbar {
    display: none;
}

/* Add padding to simulate space for header */
body {
    padding-top: 100px; /* Adjust to the approximate height of your header */
    scrollbar-width: none;
}

#order-online {
    text-align: center;
    padding: 20px;
}

/* Heading Style for Explore Section */
.order-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between elements */
    position: relative;
    margin: 30px 0;
}

.order-heading::before,
.order-heading::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #c1442e; /* Line color matching button */
}

.order-heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #2b2b2b;
    margin: 0;
    padding: 0 15px;
    text-align: center;
}

/* Styling for the rebrand notice box */
.rebrand-notice {
    border-left: 5px solid #c1442e; /* Elegant red accent */
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 800px; /* Prevents overly wide stretching */
    text-align: left; /* Align text to the left */
    font-family: 'Playfair Display', serif;
    font-size: 1.2vw; /* Makes text responsive */
    color: #4a2c2a;
    border-radius: 8px;
    line-height: 1.6; /* Improved readability */
}

/* Styling for the text and icon */
.rebrand-notice h2 {
    display: flex;
    align-items: center; /* Keeps icon aligned vertically */
    flex-wrap: wrap; /* Ensures natural text wrapping */
    font-size: 1.3vw; /* Responsive font size */
    font-weight: normal;
    gap: 10px;
    margin: 0;
}

/* Styling for the caution icon */
.rebrand-notice i {
    color: #c1442e; /* Deep red for the caution icon */
    font-size: 1.8vw; /* Makes icon scale responsively */
    flex-shrink: 0; /* Prevents icon from resizing */
}

/* Ensuring 'BiryaniWala' and the following text stay on the same line */
.highlight-red {
    color: #c1442e; /* Elegant deep red */
    font-weight: bold;
    white-space: nowrap; /* Prevents breaking into a new line */
    display: inline; /* Ensures it flows with the text */
}

/* 4 Quadrant Layout (Default for large screens) */
.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, 1fr); /* 2 rows */
    gap: 30px; /* Space between items */
    justify-items: center;
    margin-top: 30px;
}

/* Order Link Styling */
.order-link {
    text-decoration: none;
    text-align: center;
    color: black;
    font-size: 1.5vw; /* Responsive text size */
    width: 180px; /* Ensures consistent size */
}

/* Logo Styling */
.order-link img {
    width: 12vw; /* Makes logos responsive */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* Text Below Icons */
.order-link p {
    font-weight: bold;
    font-size: 1.5vw; /* Makes text size responsive */
    color: #333; /* Darker text color for readability */
}

/* RESPONSIVE DESIGN: Stack icons vertically on smaller screens */
@media (max-width: 768px) {
    .order-options {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto;
        gap: 20px;
    }

    .order-link {
        width: 60%; /* Make links take more space */
        font-size: 4vw; /* Bigger text for small screens */
    }

    .order-link img {
        width: 25vw; /* Scale logos appropriately */
    }

    .order-link p {
        font-size: 4vw; /* Increase text for readability */
    }

    .rebrand-notice {
        font-size: 2vw; /* Increase notice text for smaller screens */
    }

    .rebrand-notice h2 {
        font-size: 2vw; /* Keep text readable */
    }

    .rebrand-notice i {
        font-size: 2.0vw; /* Scale icon appropriately */
    }
}
