/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}


/* Navigation Styles */
nav {
    background-color: #000;  /* Consistent dark background */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 0 20px;  /* Adjusted for visual balance */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffa500;  /* Highlight color on hover */
}


header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffa500;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero img {
    width: 100%; /* Adjust this percentage to make the image smaller */
    max-width: 1500px;
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
}

.hero h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

.hero .button {
    display: inline-block;
    margin-top: 20px;
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero .button:hover {
    background-color: #cc8400;
}


/* Features Section */
.features {
    background-color: #fff;
    padding: 50px;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
}

.feature {
    margin-bottom: 30px;
}

.feature h3 {
    color: #ffa500;
    margin-bottom: 10px;
}

.feature p {
    margin: 0 auto;
    max-width: 600px;
}


/* Application Form Section */
.application-form {
    background-color: #000;
    color: #fff;
    padding: 50px;
    text-align: center;
}

.application-form h2 {
    color: #ffa500;
    margin-bottom: 30px;
}

.application-form input,
.application-form textarea {
    width: 80%;
    max-width: 600px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.application-form button {
    background-color: #ffa500;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.application-form button:hover {
    background-color: #cc8400;
}


/* Menu Section Styles */
#menu {
    background-color: #fff; /* White background for readability */
    padding: 20px 0;
    text-align: center;
}

/* Menu Items Container */
.menu-items {
    display: flex;
    flex-direction: row; /* Adjusted from column to row for horizontal alignment */
    flex-wrap: wrap; /* Allows items to wrap onto the next line */
    gap: 1rem; /* Adds space between the boxes */
    justify-content: center; /* Centers the boxes in the menu section */
}

/* Individual Menu Item Boxes */
.menu-item {
    flex: 1 1 250px; /* Allows boxes to grow and shrink but not smaller than 250px */
    background: #fdfdfd; /* Light background for readability */
    border: 1px solid #ccc; /* Adds a border for definition */
    padding: 1rem; /* Padding inside each box */
    margin: 0.5rem; /* Margin around each box for spacing */
    border-radius: 5px; /* Rounded corners for aesthetics */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Adds shadow for a "lifted" effect */
}

#menu h2 {
    font-size: 2.2rem;
    color: #333;
    padding-bottom: .5rem;
    margin-top: 1rem; /* Added top margin to push down from navigation */
    margin-bottom: 2rem; /* Increased bottom margin for more space above menu items */
}


/* Heading within each menu item */
.menu-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}


/* Paragraphs within each menu item */
.menu-item p {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #666; /* Slightly lighter font color for description */
}

/* Price within each menu item */
.menu-item .price {
    font-weight: bold;
    color: #333;
}

/* Category Menu Styles */
.category-menu ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    display: flex; /* Horizontal layout */
    justify-content: center; /* Center categories horizontally */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.category-menu li {
    margin: 10px 15px; /* Spacing around each category link */
}

.category-menu a {
    background-color: #ffa500; /* Orange background to match site theme */
    color: #fff; /* White text */
    padding: 10px 20px;
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* No underline */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.category-menu a:hover {
    background-color: #cc8400; /* Darker orange on hover */
}

/* Pagination Container Styles */
.pagination-container {
    text-align: center; /* Center pagination buttons */
    margin-top: 20px; /* Space above pagination */
}

.pagination button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination button:hover {
    color: #ffa500; /* Orange text on hover */
}


.contact {
    display: flex;        /* Enables flexbox */
    justify-content: center; /* Horizontally centers the content */
    align-items: center;  /* Vertically centers the content */
    min-height: 100vh;    /* Minimum height of 100% of the viewport height */
    text-align: center;   /* Centers text */
    padding: 20px;        /* Padding around the content */
}

.container {
    flex-direction: column; /* Stacks the flex items vertically */
}


/* Response Page Styling */
.response {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
    color: #333;
}

.response h1, .response p {
    margin-bottom: 20px;
}

.response button {
    background-color: #ffa500;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.response button:hover {
    background-color: #cc8400;
}



/* Contact Form Section */
.contact-form {
    background-color: #000;
    color: #fff;
    padding: 50px;
    text-align: center;
}

.contact-form h2 {
    color: #ffa500;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    max-width: 600px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #ffa500;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #cc8400;
}


.success-message {
    display: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}


.hours-heading {
    margin-top: 50px; /* Large top margin to create space */
    margin-bottom: 20px; /* Optional: add space before the actual hours */
    font-size: 1.5em; /* Optional: Increase the font size for visibility */
    font-weight: bold;
}

.hours {
    margin-bottom: 10px; /* Space between each hours line */
    font-size: 1.2em; /* Slightly larger font for readability */
}



/* Footer Section */
footer {
    background-color: #fff;
    text-align: center;
    padding: 50px;
    color: #333;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-content div h3 {
    margin-bottom: 15px;
    color: #ffa500;
}

.footer-content div ul {
    list-style: none;
}

.footer-content div ul li {
    margin-bottom: 10px;
}

.footer-content div ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content div ul li a:hover {
    color: #ffa500;
}
