/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header and Navigation Styles */
header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

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

/* Main Section */
section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input[type="file"], 
select, 
input[type="submit"] {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
}

input[type="submit"] {
  background-color: #333;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #ff6347;
}


    /* Add some basic styling */
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #333;
      color: white;
      padding: 10px 0;
      text-align: center;
    }
    nav ul {
      list-style-type: none;
      padding: 0;
    }
    nav ul li {
      display: inline;
      margin: 0 15px;
    }
    nav ul li a {
      color: white;
      text-decoration: none;
    }
    nav ul li a:hover {
      color: #0056b3;
      text-decoration: underline;
    }
    section {
      padding: 20px;
      margin: 0 15px;
    }
    .gallery {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }
    .photo-category {
      text-align: center;
    }
    .photo-category img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .photo-category img:hover {
      opacity: 0.8;
      transform: scale(1.05);
    }
    footer {
      text-align: center;
      margin-top: 40px;
      padding: 10px 0;
      background-color: #333;
      color: white;
    }
    footer a {
      color: white;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
  
}

.share-buttons {
  text-align: center;
  margin-top: 2rem;
}

.share-buttons a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border: 2px solid #333;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.share-buttons a:hover {
  background-color: #333;
  color: white;
}

/* Footer Styles */
footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #333;
  color: white;
  border-radius: 4px;
}

footer a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

footer a:hover {
  color: #ff6347;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 100%;
    height: auto;
  }
}