/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  display: flex;
  font-family: "Lora", Georgia, serif;
  background: #f8f3ea;


  color: #2b2b2b;
  line-height: 1.7;
}


/* Sidebar */
.sidebar {
  width: 260px;
  min-height: 100vh;
  position: fixed;
  background: #eef4f2;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid #d6e2de;
}

.sidebar-logo {
  width: 220px;
  max-width: 100%;
  display: block;
  margin: 0 auto 3rem auto;
}


.sidebar nav a {
  display: block;
  text-decoration: none;
  color: #1f3f39;
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: 10px;
  background: #e2ece9;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sidebar nav a:hover {
  background: #d3e4df;
  transform: translateX(2px);
}


/* Main content */
.main-content {
  margin-left: 260px;
  padding: 4rem 6rem 4rem 4rem;
  max-width: 1200px;
  
}


/* Sections */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #eef4f2;
  border-radius: 14px;
  padding: 4rem;
  margin: 3rem 0;
}

/* Grid */
.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

/* Typography */
h1, h2 {
  color: #1f3f39;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

/* Lists */
.list {
  list-style: disc;
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.6rem;
}


/* Images */
.about-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
}

.map {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

/* Table */
.availability {
  width: 100%;
  border-collapse: collapse;
}
.availability th,
.availability td {
  border: 1px solid #cfdad6;
  padding: 0.7rem;
}
.availability th {
  background: #dfe9e6;
}

.availability td:not(:first-child),
.availability th:not(:first-child) {
  text-align: center;
}


/* Footer */
footer {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #5f6f6a;
}
.bacp-badge {
  max-width: 320px;
  margin-bottom: 1rem;
}

/* 📱 Mobile */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  .sidebar {
    position: static;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d6e2de;
  }

  .main-content {
    margin-left: 0;
    padding: 2rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section.alt {
    padding: 2.5rem;
  }
}

/* Bupa link */
/* Bupa link */
.bupa-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #eef4f2;
  border-radius: 12px;
}

.bupa-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.8rem;
}

.bupa-logo {
  height: 36px;
  width: auto;
}

.bupa-button {
  padding: 0.6rem 1.4rem;
  background: #2f6f62;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.bupa-button:hover {
  background: #265c52;
}


.divider-1 {
  background-position: center top;
}

.divider-2 {
  background-position: center center;
}

.divider-3 {
  background-position: center bottom;
}


.section-divider {
  position: relative;
  height: 130px;
  margin: 4rem 0;

  opacity: 0.85;

  background-image: url("assets/forest.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  /* controlled width */
  width: calc(100vw - 260px - 6rem);
}

.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
 
}

/* Mobile Header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #eef4f2;
  border-bottom: 1px solid #d6e2de;
}

.mobile-logo {
  height: 42px;
}

.menu-toggle {
  font-size: 1.8rem;
  color: #1f3f39;
  font-weight: 600;
}


/* Mobile Menu Behaviour */
@media (max-width: 900px) {
  body {
    flex-direction: column;
    overflow-x: hidden;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1000;

    width: 80vw;
    max-width: 300px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-logo {
    display: none;
  }

  .main-content {
    margin-left: 0;
    padding: 2rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-divider {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .section-divider {
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
    height: 90px;
  }
}

@media (max-width: 900px) {
  .section-media {
    overflow-x: auto;
  }

  .availability {
    min-width: 480px;
  }
}

@media (max-width: 900px) {
  .bacp-badge {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .bupa-button {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .sidebar-logo {
    width: 200px;
    margin: 0 auto 1.5rem auto;
  }
}

/* ---------- LOGO SIZE OVERRIDES ---------- */

/* Desktop sidebar logo */
.sidebar-logo {
  width: 260px;   /* increase more if you want */
  max-width: 100%;
  margin: 0 auto 3rem auto;
  display: block;
}

/* Mobile top logo */
.mobile-logo {
  height: 80px;   /* THIS is the key change */
  width: auto;
}

#services .section-grid + .section-grid {
  margin-top: 2rem;
}

#services .section-grid {
  gap: 1.25rem;
}

#services .section-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.two-column {
  columns: 3;
  column-gap: 3rem;
}

.two-column li {
  break-inside: avoid;
}


@media (max-width: 900px) {
  #services .section-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .two-column {
  columns: 1;
  column-gap: 3rem;
  
}

.two-column li {
  break-inside: avoid;
}
}

.about-figure {
  text-align: center;
}

.about-quote {
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;

  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;

  color: #1f3f39;
  background: #eef4f2;

  border-radius: 18px;

  max-width: 340px;
  margin-left: auto;
  margin-right: auto;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}













