/* General Styling */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fdfdfd;
  color: #333; /* Changed to a darker color for better readability */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
h1, h2 {
  font-family: 'Merriweather', serif;
  color: #27467D;
  font-weight: 700;
}

/* Added styles for h3 to h6 */
h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #27467D;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* Paragraph Styling */
p {
  font-size: 1em;
  color: #333;
  margin-bottom: 1em;
  text-align: left;
}

/* List Styling */
ul, ol {
  margin-left: 2em;
  margin-bottom: 1em;
  text-align: left;
}

li {
  margin-bottom: 0.5em;
}

/* Link Styling */
a {
  color: #1f3d7a;
  text-decoration: none;
  border-bottom: 1px dotted #1f3d7a;
}

a:hover {
  border-bottom: 1px solid #b59f44;
}

/* Logo Styling */
.logo {
  text-align: center;
  margin-top: 40px;
}

.logo img {
  max-width: 100%; /* Ensure the logo scales appropriately */
  height: auto;
  mix-blend-mode: multiply;
}

/* Layout */
.container {
  max-width: 800px; /* Increased width for better readability */
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left; /* Changed to left-align text */
}

.business-name h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.access-container p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.access-form input[type="text"] {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 80%;
  margin-bottom: 20px;
}

.access-form .submit-btn {
  background-color: #1f3d7a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.access-form .submit-btn:hover {
  background-color: #99BDD8;
}

.contact {
  margin-top: 50px;
}

.contact a {
  font-weight: 400;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 30px 10px;
  }

  h1 {
    font-size: 2em;
  }

  .access-form input[type="text"] {
    width: 100%;
  }
}

/* Booking Page Styles */
.booking-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.booking-container iframe,
.booking-container #msb-container {
  width: 100%;
  height: 800px; /* Adjust the height as needed */
  border: none;
}
