/* General font */
body, p, h1, h2, h5, h6, a {
  font-family: 'Open Sans', sans-serif;
  color: #727174;
  margin: 0;
  padding: 0;
}
h3, h4 {
  font-family: 'Open Sans', sans-serif;
  color: #1c7289; 
  margin: 0;
  padding: 0;
}
.welcome-highlight {
  color: #1c7289;
}
/* --- Top banner with logo and title --- */
.site-header {
  background-color: #1c7289;
  color: white;
  padding: 20px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-wrapper {
  flex: 1;
}

.header-logo {
  height: 60px;
  width: auto;
}

.title-wrapper {
  flex: 2;
  text-align: center;
}

.site-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.site-tagline {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: #FFFFFF;
}

.phone-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* --- Navigation menu --- */
.secondary_header {
  background-color: #727174; /* darker blue */
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.15);
}

.secondary_header ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.secondary_header ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary_header ul li a:hover,
.secondary_header ul li a:focus {
  background-color: #5d5c5f; /* lighter blue */
  color: #fff;
  outline: none;
  cursor: pointer;
}
.mobile-phone {

  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
}

.mobile-phone a {
  text-decoration: none;
  color: #FFFFFF; /* Adjust as needed to match your branding */
}
/* Container to center main content with padding */
.main-content {
  max-width: 900px;     /* limits the width */
  margin: 30px auto;       /* centers horizontally */
  padding: 0 20px;      /* adds space on left and right */
  box-sizing: border-box; /* ensures padding doesn't add to width */
}

.content-with-map {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.form-content {
  flex: 1 1 60%;
  min-width: 300px;
}

.map-wrapper {
  flex: 1 1 35%;
  max-width: 400px;
      padding-top: 75px;     /* Pushes it down a bit */
  padding-right: 50px;    /* Adds spacing from the form */
  box-sizing: border-box;
}
.contact-page {
  padding: 2rem 1rem;
  background: #f5f5f5;
}

.contact-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-hero h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #727174;
}

.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #727174;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1c7289;
}

.btn-primary {
  background: #1c7289;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
      text-decoration: none;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 500px;
}

.contact-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #727174;
}
.btn-primary:hover {
  background: #114b5b;
}
#form-status {
  margin-top: 1rem;
  font-weight: bold;
  color: #1c7289; /* your brand blue */
}
.cta-about {
  max-width: 900px;     /* limits the width */
  margin: 30px auto;       /* centers horizontally */
  padding: 0 20px;      /* adds space on left and right */
  box-sizing: border-box; /* ensures padding doesn't add to width */
}

.testimonials {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: #f8f8f8;
  border-radius: 1rem;
}

.testimonials h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial p {
  font-size: 0.95rem;   /* smaller text */
  font-style: italic;
  line-height: 1.4;
  color: #444;
  margin-bottom: 0.3rem;
}

.testimonial span {
  display: block;
  font-size: 0.85rem;   /* smaller name text */
  font-weight: 600;
  color: #666;
}


@media (max-width: 768px) {
  .map-wrapper {
    margin-top: 30px;
    margin-right: 0;
    padding: 0 10px;
  }
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;

  }
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5%;  /* controls spacing neatly */
  width: 100%;
  background-color: #FFFFFF;
  padding-bottom: 35px;
  padding-top: 0;
  margin-top: -5px;
  margin-bottom: 0;
  font-family: open-sans, sans-serif;
  box-sizing: border-box;
}

.thumbnail {
  flex: 1 1 22%;
  max-width: 22%;
    min-width: 380px;
  margin: 0;  /* no margin needed */
  background-color: #F8F8F8;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 3px;
  border-bottom: 4px solid #1c7289;
  text-align: center;
  box-sizing: border-box;
}

.link-clean {
  text-decoration: none;     /* removes underline */
  color: inherit;            /* keeps the text the same colour as surrounding text */
}
/* --- Social Icons --- */
.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 25px 0;
  background-color: #f8f8f8;
}

.social_icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.social_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social_icon:hover,
.social_icon:focus {
  transform: scale(1.15);
  cursor: pointer;
  outline: none;
}

/* --- Footer --- */
.footer {
  background-color: #1c7289; /* same as top banner */
  color: white;
  text-align: center;
  
  padding: 15px 0;
  font-size: 0.9rem;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.15);
	color: #FFFFFF;    
}
.footer .copyright p {
  color: #ffffff; /* Replace with your desired color */
}

.intro-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

.intro-text {
  flex: 1 1 55%;
}

.intro-image {
  flex: 1 1 40%;
  text-align: right;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}



@media screen and (max-width: 768px) {
 .top-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-wrapper {
    order: 1;
    margin-bottom: 10px;
  }

  .title-wrapper {
    order: 2;
    margin-bottom: 10px;
  }

  .phone-wrapper {
    order: 3;
    justify-content: flex-end; /* push right */
    width: 100%;
    margin-top: 0;
  }
  .content-with-map {
    flex-direction: column;
  }

  .map-wrapper {
    max-width: 100%;

  }

  .header-logo {
    height: 50px; /* slightly smaller on mobile if you like */
  }

  .site-title {
    font-size: 1.8rem; /* slightly smaller for mobile if needed */
  }

.site-tagline {
  font-size: 1rem;
  font-style: italic;
  margin: 5px 0;
  color: #FFFFFF; /* Makes it white */
} 
    
  .secondary_header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0.5rem 1rem; /* Add horizontal padding */
    box-sizing: border-box;
  }

  .secondary_header ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .secondary_header li {
    width: 100%;
    text-align: center;
  }

  .secondary_header .clickable p {
    padding: 0.75rem 1rem;
    word-break: break-word;
  }
      .mobile-phone {
    display: block;
  }

.gallery {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem; /* spacing on sides */
  }

  .thumbnail {
    flex: 1 1 100%;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .testimonials {
    margin-top: auto;   /* pushes it to the bottom */
  
}

    
  .layla-text {
    order: 2;
    text-align: left;
  }

  .layla-image {
    order: 1;
  }

  .layla-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
  }
      .intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    order: 2;
    text-align: left;
    padding: 0 1rem;
  }

  .intro-image {
    order: 1;
    text-align: center;
  }

  .intro-image img {
    max-width: 90%;
    margin: 0 auto;
  }

.site-tagline {
  color: #FFFFFF !important;
}    
    
}