/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    background-image: url('../Images/BG.jpg');
    background-position: center;
    background-repeat: repeat;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #333;
}

/* Navigation */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.active {
    background-color: #ADB5BD;
    color: white;
}

/* About Section */
.about-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.container p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Links */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #ADB5BD;
    padding: 20px;
    margin: 30px auto;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 8px 16px gray;
}


/* Menu CSS */


.menu-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: #ADB5BD;
}

.menu-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.menu-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.menu-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


.menu-item {
  flex: 250px;
  max-width: 300px;
  background: white;
  border-radius: 10px;
  text-align: center;
}

.menu-item img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
}

.menu-item h3 {
  font-family: 'Playfair Display', serif;
  margin: 15px 0 10px;
}

.menu-item p {
  margin: 0 0 15px;
  font-size: 1rem;
  color: #333;
}

.price {
  font-weight: bold;
  color: #6C757D;
  display: block;
  margin-bottom: 15px;
}

/* Global Body */
body {
    background-image: url('../Images/BG.jpg');
    background-position: center;
    background-repeat: repeat;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #333;
}

/* Navbar */
.topnav {
    background-color: #333;
    overflow: hidden;
    position: relative;
}
.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}
.topnav a.active {
    background-color: #6C757D;
    color: white;
}
.topnav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
}
.topnav #myLinks {
    display: none;
}
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Home  */
.home1 {
    text-align: center;
    padding: 80px 20px;
    background-color: rgba(108, 117, 125, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.home1 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0;
}
.home1 p {
    font-size: 1.5rem;
}

.order-btn:hover {
    color: white;
}

.home2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.homebox {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    text-align: center;
}
.homebox h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.homebox p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6C757D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}
.btn:hover {
    background-color: #5a6268;
}

/* Footer */
footer {
    background-color: #ADB5BD;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}


/* Features CSS */
.features-layout {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Main features section */
.features-main {
    flex: 3;
}

/* Menu lists inside features */
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual feature cards */
.menu-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    text-align: center;
    padding-bottom: 15px;
}

.menu-card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: #222;
}

.menu-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 10px 10px;
}

.menu-card .price {
    display: block;
    font-weight: bold;
    color: #6C757D;
    margin-top: 10px;
}

/* Sidebar for weekly specials */
.features-sidebar {
    flex: 1;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
    position: sticky;
    top: 100px; /* Adjust depending on navbar height */
}

.features-sidebar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.special-card {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.special-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.special-card p {
    line-height: 1.5;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-layout {
        flex-direction: column;
    }

    .features-sidebar {
        max-width: 100%;
        position: relative;
        top: auto;
    }
}

.center-section {
  text-align: center;
  margin: 40px 0;
}

.center-box {
  display: inline-block;
}

#location iframe,
#reviews .yelp-review {
  max-width: 100%;
}

.contact-form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form .required {
  color: red;
  font-weight: bold;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

