/* Global */
body {
   margin: 0;
   font-family: Arial, sans-serif;
   background: #96115a00;
   color: #333;
}

header {
   background: #d35400;
   color: white;
   padding: 20px;
   text-align: center;
}

nav ul {
   list-style: none;
   padding: 0;
}

nav ul li {
   display: inline-block;
   margin: 0 15px;
}

nav a {
   color: white;
   text-decoration: none;
   font-weight: bold;
   padding: 6px 10px;
   border-radius: 4px;
   transition: 0.3s;
}

nav a:hover, nav a.active {
   background: #e67e22;
}

/* Hero Section */
.hero {
   background: url("images/restaurant.png") no-repeat center/cover;
   color:rgb(249 249 249);
   text-align: center;
   padding: 120px 20px;
}

/* Columns */
.columns, .two-column {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   padding: 20px;
}

.columns div, .two-column div {
   background: white;
   padding: 15px;
   border-radius: 8px;
}

/* Tables */
table {
   width: 100%;
}

td {
   padding: 5px 0;
}

/* Gallery */
.gallery .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 10px;
}

.gallery img {
   width: 100%;
   border-radius: 8px;
}

/* Contact Form */
.contact-form {
   max-width: 600px;
   margin: auto;
   padding: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
   padding: 10px;
   margin-bottom: 15px;
   border-radius: 5px;
   border: 1px solid #ccc;
}

button {
   background: #d35400;
   border: none;
   padding: 12px 20px;
   color: white;
   font-size: 16px;
   border-radius: 5px;
   cursor: pointer;
   transition: 0.3s;
}

button:hover {
   background: #e67e22;
}

/* Footer */
footer {
   text-align: center;
   padding: 15px;
   background: #333;
   color: white;
   margin-top: 20px;
}

/* Restaurant Hours Table */
.hours-table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 10px;
   background: white;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hours-table th {
   background: #d35400;
   color: white;
   padding: 12px;
   text-align: left;
   font-size: 16px;
}

.hours-table td {
   padding: 12px;
   border-bottom: 1px solid #eee;
   font-size: 15px;
}

.hours-table tr:hover {
   background: #fff2e6;
}

.hours-table tr:last-child td {
   border-bottom: none;
}

/* Menu Tables */
.menu-table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 10px;
   background: white;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu-table td {
   padding: 12px 10px;
   border-bottom: 1px solid #eee;
   font-size: 16px;
}

.menu-table tr:last-child td {
   border-bottom: none;
}

.menu-table .price {
   text-align: right;
   font-weight: bold;
   color: #d35400;
}

.menu-table tr:hover {
   background: #fff3e6;
}