/* General Styles */
body {
  font-family: 'Effra', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  font-family: 'Effra', sans-serif;
}

.navbar-title {
  font-size: 2rem;
  color: #000;
  margin: 0;
}

.navbar a {
  text-decoration: none; /* Ensures no underline on the title link */
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  display: inline;
}

.navbar-links a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  color: #888;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #000;
}

/* Add white space below the navbar */
header {
  margin-top: 5%;
  margin-bottom: 5%;
}

/* Gallery Styles */
main {
  text-align: center;
  padding: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic columns */
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Crop images if necessary */
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Footer Styles */
footer {
  text-align: center;
  background-color: #f0f0f0;
  padding: 20px;
}

footer a {
  text-decoration: none;
  color: #333;
  margin: 10px;
  font-weight: bold;
}

footer a:hover {
  color: #007BFF;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .gallery img {
      object-fit: contain; /* Adjust for smaller screens */
  }
}

@media (max-width: 768px) {
  .gallery img {
      object-fit: contain;
  }
}



/* Contact Page Styles */
.contact-page {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Effra', sans-serif;
}

.contact-page h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.contact-page p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.contact-form-section {
  flex: 1;
  max-width: 600px;
}

.contact-image-section {
  flex: 1;
  max-width: 600px;
}

.contact-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Effra', sans-serif;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #181e25;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #656a70;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .contact-container {
      flex-direction: column;
  }

  .contact-image-section {
      margin-top: 20px;
  }
}
