* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: Arial, sans-serif;*/
  font-family:cursive;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
  z-index: 1000;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

/* Solid-ish navy with glass feel on scroll */
header.scrolled {
  padding: 1rem 0;
  background: rgba(13, 59, 102, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Keep header text readable */
header h1,
nav a {
  color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

nav a:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}
.hero {
  position: relative;
  background: url("LCH\ Logo\ -\ Edited\ copy.png") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: 140px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(109, 159, 207, 0.6); /* navy overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.btn {
  display: inline-block;
  background: #2a629d;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: small;
}

.section {
  padding: 3rem 0;
  text-align: center;
}

.section h2 {
  margin-bottom: 1rem;
  text-align: center;
}
.section h3 {
  margin-bottom: 1rem;
  text-align: center;
}
.light {
  background: #f0f4f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.servicesGrid {
  display: grid;
  gap: 30px;
  margin-top: 2rem;
}

.serviceBlock {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.serviceBlock h3 {
  margin-bottom: 1rem;
  color: #0d3b66;
}

.serviceBlock ul {
  list-style: none;
  padding-left: 0;
}

.serviceBlock li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.serviceBlock li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2a9d8f;
  font-weight: bold;
}

.servicesIntro {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.servicesOutro {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-weight: 500;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Contact section layout */
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.sectionHead h2 {
  text-align: left; /* overrides your centered section title for this area */
  margin-bottom: 0.25rem;
}

.hint {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Grid */
.contactGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.contactCard h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Callout */
.callout {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(13, 59, 102, 0.08);
  border: 1px solid rgba(13, 59, 102, 0.15);
  margin-bottom: 12px;
}

.callout strong {
  display: block;
  margin-bottom: 2px;
}

.callout small {
  display: block;
  opacity: 0.9;
}

/* Contact details */
.contactDetails p {
  margin: 0 0 8px;
}

.contactDetails a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fineprint {
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Form */
label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: rgba(42, 157, 143, 0.6);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.15);
}

/* Rows */
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 620px) {
  .formRow {
    grid-template-columns: 1fr;
  }
}

/* CTA row */
.ctaRow {
  display:flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

/* Buttons (adds a primary variant while keeping your .btn) */
.btn.primary {
  background: #5da1c8;
  color: #fff;
  border: none;
}

.btn.primary:hover {
  opacity: 0.92;
  transition: 0.2s ease;
}

footer {
  background: #0d3b66;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}