/* General Styles */
body {
    padding-top: 70px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #fff;
  }
  
  .navbar-default {
    background-color: #fff;
    border-color: #e7e7e7;
  }
  
  .navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF !important;
  }
  
  .navbar-nav > li > a {
    color: #666 !important;
  }
  
  .navbar-nav > li > a:hover {
    color: #007BFF !important;
  }
  
  /* Hero Section */
  .jumbotron {
    background-color: #f9f9f9;
    padding: 100px 0;
  }
  
  .jumbotron h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .jumbotron p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  /* Menu Section */
  .menu-item {
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover {
    transform: scale(1.05);
  }
  
  .thumbnail {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .thumbnail .caption {
    text-align: center;
  }
  
  .thumbnail h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .thumbnail p {
    font-size: 16px;
    color: #666;
  }
  
  .price {
    font-size: 20px;
    font-weight: bold;
    color: #007BFF;
  }
  
  /* About Section */
  #about {
    padding: 60px 0;
  }
  
  #about h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  #about p {
    font-size: 18px;
    color: #666;
  }
  
  /* Gallery Section */
  .gallery-img {
    transition: transform 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.1);
  }
  
  /* Contact Section */
  #contact {
    padding: 60px 0;
  }
  
  #contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  /* Footer */
  footer {
    padding: 20px 0;
    background-color: #f9f9f9;
    margin-top: 40px;
  }
  
  footer p {
    font-size: 14px;
    color: #666;
  }