/* css/style.css */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
  }
  main {
    flex: 1;
  }
  .site-header {
    background-color: #A8D5BA;
    padding: 20px;
  }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
  }
  .logo img {
    height: 100px;
    max-height: 100px;
    width: auto;
    vertical-align: middle;
  }
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .nav-links li {
    margin-left: 20px;
  }
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
  }
  .hero {
    background-color: #F0F9F4;
    text-align: center;
    padding: 100px 20px;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #A8D5BA;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
  }
  .btn-secondary {
    background-color: #ffffff;
    color: #A8D5BA;
    border: 2px solid #A8D5BA;
  }
  .gallery {
    padding: 50px 20px;
    background-color: #ffffff;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .gallery-item {
    background-color: #F9F9F9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .gallery-item figure {
    margin: 0;
  }
  .gallery-item img {
    width: 100%;
    display: block;
    cursor: pointer;
  }
  .gallery-item figcaption {
    padding: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #555555;
  }
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
  }
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
  }
  .lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
  }
  .upload-form {
    padding: 50px 20px;
    background-color: #F0F9F4;
    max-width: 600px;
    margin: 0 auto;
  }
  .upload-form label {
    display: block;
    margin-bottom: 15px;
  }
  .upload-form textarea {
    width: 100%;
  }
  .dropzone {
    border: 2px dashed #A8D5BA;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
    background-color: #F0F9F4;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .dropzone.highlight {
    background-color: rgba(168, 213, 186, 0.5);
  }
  .dropzone input[type="file"] {
    display: none;
  }
  .success {
    color: green;
    margin-bottom: 20px;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: #F0F9F4;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-details h2 {
    margin-bottom: 20px;
  }
  .contact-image {
    display: block;
    margin: 20px auto 0;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .site-footer {
    background-color: #A8D5BA;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: auto;
  }
  /* Responsive tweaks for mobile */
  @media (max-width: 600px) {
    .logo img {
        height: 50px;
        max-height: 50px;
      }
    .hero {
      padding: 40px 10px;
    }
    .hero h1 {
      font-size: 1.8rem;
    }
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .gallery-item {
      box-shadow: none;
      margin-bottom: 15px;
    }
    .gallery-item figcaption {
      font-size: 0.85rem;
      padding: 8px;
    }
  }
  