/* General Styles for Gallery Page */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
  }
  
  /* Header & Navigation */
  header {
    background: #007A5E;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
  }
  .logo img {
    height: 60px;
  }
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .navbar ul li a {
    text-decoration: none;
    color: #FFD700;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .navbar ul li a:hover {
    background: #005f4a;
    color: white;
  }
  .donate-btn {
    background: #CE1126;
    border-radius: 8px;
    color: white;
  }
  
  /* Main Content for Gallery */
  .main {
    padding: 20px;
    margin-top: 20px;
    text-align: center;
  }
  h1, h4 {
    color: #007A5E;
  }
  
  /* Gallery Grid */
  .FPictures {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .FPictures img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background-color: #21130d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* Footer */
  footer {
    background: #007A5E;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      padding: 10px;
    }
    .navbar ul {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
      margin-right: 10px;
    }
    .logo img {
      height: 50px;
    }
    .info-container {
      flex-direction: column;
      align-items: center;
    }
  }