/* Base layout and fonts */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f9ff;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #004466;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {

  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

p {
  font-size: 1.2em;
}

h2 {
  color: #004466;
  font-size: 1.9em;
}

h1 {
color: white;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
	font-size: 1.2em;
  padding: 5px 0;
}

.gallery-preview img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-top: 10px;
}

.contact-cta {
  background-color: #e0f7ff;
  font-size: 1.5em;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

section {

margin-bottom: 30px;

}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
  z-index: 1;
}

.header-title h1 {
  margin: 0;
  font-size: 1.8em;
}

.header-logo {
  margin-left: auto;
}

.logo {
  width: 180px;
  height: auto;
  
  margin: 0;
}



footer {
  background-color: #004466;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.gallery-item {
  width: 100%;
  max-width: 250px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.gallery-item p {
  margin-top: 8px;
  font-size: 0.9em;
  color: #555;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1em;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info a {
  color: #004466;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-embed {
  margin-top: 30px;
}



