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

html, body {
  height: 100%;
  color: #1c1c1c;
  font-weight: normal;
}

body {
  font-family: Georgia, sans-serif;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #fff;
  padding: 2rem 4rem 0.5rem 4rem; /* Adjusted padding */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #1c1c1c;
  margin: 0;
  font-size: 2rem;
  font-weight: normal;
}

header nav {
  display: flex;
  gap: 1rem; /* Adjust gap between navigation links as needed */
}

header nav a {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: normal;
}

main {
  flex: 1;
  padding: 2rem 4rem; /* Adjusted padding */
}

.gallery {
  column-count: 3;
  column-gap: 15px;
}

.photo {
  break-inside: avoid;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .gallery {
    column-count: 1;
    column-gap: 0;
  }

  header .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    margin-top: 1rem;
  }

  header nav a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

.contact {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact label {
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
}

.contact input,
.contact textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  padding: 0.7rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact button:hover {
  background-color: #555;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: normal;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  color: #1c1c1c;
  font-weight: normal;
}

/* Additional Styles */
.site-title {
  color: #1c1c1c;
  text-decoration: none;
  font-weight: normal;
}

.site-title:visited {
  color: #1c1c1c;
}

.site-title:hover,
.site-title:focus,
.site-title:active {
  color: #1c1c1c;
}

.photo {
  position: relative;
  text-align: center;
}

.photo img {
  display: block;
  width: 100%;
  height: auto;
}

.caption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
}
