*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat';
}
header {
background-color: #2b2d42;
padding: 30px;
text-align: center;
}

.title {
font-family: 'Montserrat';
font-size: 40px;
font-weight: bold;
color: white; 
text-decoration: none;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}

nav li {
margin-right: 20px;
}

nav a {
text-decoration: none;
font-weight: bold;
color: white;
font-size: 20px;
padding: 10px;
border-radius: 10px;
}

nav a:hover {
background-color: darkgrey;
color: #FFFFFF;
}

nav a.active {
background-color: darkgrey;
color: #FFFFFF;
}

body {
  background-color: #F0F0F0;
}


main {
background-color: white;    
max-width: 800px;
margin: 0 auto;
padding: 20px;
border-left: 10px solid white;
border-right: 10px solid white
}

h1 {
padding-top: 20px;
font-family: 'Montserrat';
font-size: 30px;
font-weight: bold;
margin-bottom: 20px;
}

h2 {
font-family: 'Montserrat';
font-weight: bold;
font-size: 20px;
}

.container {
    overflow: auto;
}
img {
    float: right;
    padding-left: 20px;
    max-width: 30%;
    height: auto;
}

img {
    float: right;
    padding-left: 20px;
    max-width: 30%;
    height: auto;
}

ul {
margin-bottom: 20px;
}

li {
margin-bottom: 10px;
margin-left:15px;
}

p {
line-height: 1.5;
padding-bottom: 40px;
}

footer {
background-color: #2b2d42;
padding: 20px;
text-align: center;
}

footer p {
font-size: 14px;
color: white; /* changed from #a36445 to a luxurious shade of red */
}

table {
            border-collapse: collapse;
            width: 100%;
        }

        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        tr:hover {
            background-color: #f5f5f5;
        }

        th {
            background-color: #333;
            color: #fff;
        }


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gallery img:hover {
  cursor: pointer;
}

.gallery img {
  max-width: 45%;
  margin: 10px;
  object-fit: cover;
}

.enlarged-image {
  border: 20px solid rgba(255, 255, 255, 0.8);
  filter: grayscale(100%);
}


/* CSS for the modal overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}


  /*contact form */
form {
  max-width: 800px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 16px;
  resize: vertical;
}

textarea {
  height: 150px;
}

button[type=submit] {
  background-color: #45a049;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

button[type=submit]:hover {
  background-color: lightgrey;
}

input[type=reset] {
  background-color: #f44336;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=reset]:hover {
  background-color: #da190b;
}

form::after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  input[type=submit], input[type=reset] {
    width: 100%;
    margin-top: 0;
  }
  
  label {
    font-size: 14px;
  }
  
  textarea {
    height: 100px;
  }
}

.testimonial {
    margin-bottom: 20px;
    margin-top:20px;
    font-style:italic;
}

.testimonial-author {
    font-style:normal;
    style=display: inline;
}
