/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff; /* Page background */
  display: flex;
  justify-content: center;
  padding: 1rem;
}

/* Site container with SVG blue frame */
.site-container {
  max-width: 1200px;
  width: 100%;
  border: 6px solid #002654; /* SVG blue */
  background: #ffffff; /* Keep interior white */
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  background: #002654; /* Blue */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.site-header h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
}
.nav-toggle {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
}

/* Nav */
.site-nav {
  background: #009739; /* Green */
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 0;
}
.nav-menu a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.nav-menu.open {
  display: block;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; }
}

/* Sections */
main { flex: 1; }
section { padding: 2rem 1rem; }
h2 { color: #009739; margin-bottom: 1rem; }

/* Overview */
.overview {
  background: #ffda44; /* Yellow */
  color: #002654;
}
.overview h2 { color: #009739; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
}

.gallery-large {
  grid-column: 1 / -1; /* Large image spans full width */
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 2px solid #ccc;
}


/* Features + Contact side by side */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
}

/* Right column groups map + contact */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Map Section */
.map-section h2 {
  color: #009739; /* SVG green */
  margin-bottom: 0.5rem;
}
.map-container {
  border: 2px solid #002654; /* SVG blue */
  border-radius: 4px;
  overflow: hidden;
}


/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-weight: bold;
  margin-top: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 2px solid #002654;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.contact-form button {
  background: #009739;
  color: #fff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #007a2f;
}

/* Footer */
.site-footer {
  background: #002654;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.site-footer a {
  color: #ffffff;           /* white link */
  text-decoration: none;    /* optional, removes underline */
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;  /* shows underline on hover/focus */
}

