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

/* Default styles for larger screens */
body
{
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff; /* light header */
  padding: 20px 40px;
  color: #2869A6;
}

/* Logo colours are - Grn #699F42, LtGrn #83C041, Blu #2869A6, LtBlu #35A0CE */
.logo {
  flex: 1;
  display: flex;
  margin: 0 auto;
  background-color: white;
  padding: 20px 0;
  text-align: center;
}

.logo img {
  flex: 1;
  display: flex;
  width: auto;
  max-width: none;
  height: 200px;
}
.top-gradient-bar {
  flex: 2;
  display: flex;
  width: 100vw;
  height: 10px;
  background: linear-gradient(to right, #83C041, #2869A6);
  margin: 0;  
}

nav.main-menu {
  flex: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap; /* optional for responsiveness */
  gap: 25px;
}

nav.main-menu a {
  text-decoration: none;
  color: #2869A6;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}
nav.main-menu a:hover {
  color: #83C041;
}

.bottom-gradient-bar {
  flex: 4;
  display: flex;
  width: 100vw;
  height: 10px;
  background: linear-gradient(to right, #83C041, #2869A6);
  margin: 0;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #eaf4ff;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
  background-color: #0073aa;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: #005f8d;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.1em;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 0.9em;
}

/* Responsive styles */
@media (max-width: 600px) { /* phones */ }
@media (min-width: 601px) and (max-width: 1024px) { /* tablets */ }
@media (min-width: 1025px) { /* desktops */ }
