body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
  }
  
  #navbar {
    background: #fff;
    opacity: .85;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    z-index: 10;
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  #navbar li {
    padding: 0 15px;
  }
  
  #navbar li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }
  
  #navbar li a:hover {
    text-decoration: underline;
  }
  
  #brand-name {
    font-size: 1.5em;
    color: black;
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
    margin-right: 200px;
    font-style: italic;
  }
  
  #book-slot {
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    color: black;
    font-size: 1em;
    cursor: pointer;
    margin-right: 35px;
  }

  #book-slot:hover {
    background: black;
    color: white;
    transition: background-color 0.3s, color 0.3s;
  }
  .location-bar {
    background-color: #ccc;
    color: #000;
    text-align: center;
    padding: 20px;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    top: 63px; /* Distance from the top including nav bar */
    width: 1400px;
    height: 100px;
  }
  .location-bar p {
    opacity: .45;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
  }
/* Updated styles for the photo gallery to create a two-row, three-column layout */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three columns */
    grid-gap: 20px; /* Space between images */
    max-width: 1000px; /* Maximum width of the gallery */
    margin: 50px auto; 
    margin-top : 170px; /* Vertically space out from previous content and center horizontally */
  }
  
  .photo-gallery img {
    width: 100%; /* Each image fills its cell */
    height: 400px; /* Maintain aspect ratio */
    border-radius: 0px; /* Rounded corners as seen in the screenshot */
  }
  

  