body {
    font-family: 'Lato', sans-serif;
    color: #333;
    margin: 0;
    background-color: #fdf6e3;
  }
  
  .hero {
    background: url('images/bermuda-beach.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    text-shadow: 1px 1px 3px #000;
  }  
  
  header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
  }
  
  header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
  }
  
  nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #b2e2df;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  nav a {
    color: #1c9a88;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: background 0.3s, color 0.3s;
  }
  
  nav a:hover {
    background-color: #f28b82;
    color: white;
  }

  .profile {
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 1rem auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }  
  
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
  }
  
  section {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  h2 {
    color: #1c9a88;
    font-family: 'Playfair Display', serif;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    background-color: #f9f9f9;
    margin-top: 2rem;
  }
  
  footer a {
    color: #1c9a88;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  /* Gallery Fix */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  form input,
form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

form textarea {
  min-height: 120px;
  resize: vertical; /* allows the user to resize if needed */
}

form button {
    background-color: #1c9a88;
    color: white;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #35b3a9;
  }
  
  #contact {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
  }
  
  #contact h2 {
    color: #1c9a88;
    text-align: center;
  }
  
  #contact p {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #contact input,
  #contact textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
  }
  
  #contact textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  #contact button {
    background-color: #1c9a88;
    color: #fff;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 1rem;
  }
  
  #contact button:hover {
    background-color: #35b3a9;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

#gallery h3 {
  color: #1c9a88;
  margin-top: 2rem;
  font-size: 1.5rem;
}

#latest-blog {
  background-color: #fff;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#latest-blog h2 {
  color: #1c9a88;
  text-align: center;
}

