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;
  }

  /* Styles for the content area */
/* Styles for the content area */
.content-area {
    display: flex;
    align-items: center; /* Vertically center the contents */
    justify-content: center; /* Horizontally center the contents */
    padding: 20px;
    position: relative;
    top: 100px; /* Adjust based on your layout needs */
  }
  
  .image-container img {
    width: 700px;
    height: 500px;
    border-radius: 10px; /* Rounded corners */
    object-fit: cover;
  }
  
  .text-container {
    margin-left: 20px; /* Space between the image and the text */
    color: #666;
    font-size: 18px;
  }
  
  /* Additional styling for text */
  .text-container p {
    margin-top: 0; /* Remove margin-top if not needed */
    margin-bottom: 5px; /* Space between paragraphs */
  }
  



  