/* General styles for the website */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

main h1 {
    margin: 0;
    font-size: 2em;
    text-align: center;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Styling for the navigation bar */
nav {
    background: #35424a;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4f4f4;
}

.waiting-list-text {
    font-size: 1.2em;
    text-align: center;
    margin: 20px 0;
}

/* Styling for the contact form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input, form textarea, form button {
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input:focus, form textarea:focus {
    border-color: #35424a;
    outline: none;
}

form button {
    background: #35424a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #2a373e;
}

/* Styling for links */
a {
    color: #35424a;
    text-decoration: underline;
    transition: color 0.3s;    
}

a:hover {
    color: #2a373e;
}

.iframe-map {
    border: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    max-width: 200px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* .gallery {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
} */
.gallery img {
  max-width: 200px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0; width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
}
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
#caption {
  text-align: center;
  color: #fff;
  margin-top: 10px;
}