/* Reset default margins */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333333;
}

/* Header styles */
header {
  background-color: #1c2a44;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

header .logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  margin: 10px 0 5px;
  font-size: 2em;
}

header p {
  margin: 0 0 15px;
  font-style: italic;
}

nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content styling */
main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main h2 {
  text-align: center;
  margin-top: 30px;
}

section {
  padding: 20px;
}

section img {
  width: 200px;
  height: auto;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer styles */
footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 60px;
  font-size: 0.9em;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #004b6b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #006a95;
}


.contact-info {
  margin-top: 20px;
  line-height: 1.6em;
}

.note {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
  align-items: start;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  max-width: 300px;
  height: 300px; /* ✅ Forces all images to be same height */
  object-fit: cover; /* ✅ Makes sure images don’t look stretched */
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.caption {
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 0.9rem;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 15px;
  }

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

  .caption {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 80px;
  }
}
.quote-button {
  background-color: #0074D9;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #005fa3;
}
@media (max-width: 600px) {
  .quote-button {
    display: block;
    margin: 10px auto;
    width: 90%;
    text-align: center;
  }
}
