



/* =========================
   THEME VARIABLES
========================= */
:root {
  --brand: #003049;        /* Header navy */
  --nav:   #002244;        /* Nav/Footer navy */
  --ink:   #000;
  --paper: #fff;
  --maxw:  1000px;
  color-scheme: light;
}

/* =========================
   BASE / GLOBAL
========================= */
html, body {
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
}


 
  
  
/* Links inherit color unless styled */
a, a:visited, a:active, a:hover { color: inherit; }

/* =========================
   HEADER (static, emoji contact)
========================= */




.site-header {
  background: var(--brand);
  color: #fff;
  padding: 0.45rem 1rem;      /* was 0.75rem – less top/bottom space */
  text-align: center;
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  grid-template-areas:
    "left title right"
    "left contact right";
  align-items: center;
  justify-items: center;
  max-width: var(--maxw);
  margin: 0 auto;

  row-gap: 0;                 /* 🔹 no extra vertical gap between rows */
}

/* areas */
.header-left   { grid-area: left;   justify-self: start; }
.header-center { grid-area: title;  text-align: center; }
.header-right  { grid-area: right;  justify-self: end;   }
.header-contact{
  grid-area: contact;
  text-align: center;
  margin-top: 0.1rem;         /* tiny controlled gap below title */
}

/* logo */
.logo {
  height: 55px;
  width: auto;
  display: block;
}

/* larger brand/title */
.brand {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.05;          /* tighter */
  margin: 0;                  /* 🔹 remove any default spacing */
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  white-space: nowrap;
}

/* centered contact line */
.header-contact p {
  margin: 0;                  /* no extra margin */
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;           /* a bit tighter */
  color: #fff;
}

.header-contact a {
  color: #fff;
  text-decoration: none;
}

.header-contact a:hover {
  text-decoration: underline;
}

/* Small screens */
@media (max-width: 700px) {
  .header-bar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "contact";
    padding: 0.4rem 0;        /* less vertical padding on mobile */
  }
  .header-left,
  .header-right { display: none; }

  .brand { font-size: 1.6rem; }
  .header-contact p { font-size: 0.95rem; }
}



/* =========================
   MAIN CONTENT
========================= */
.container { max-width: var(--maxw); margin: auto; padding: 2rem 1rem; }

.card {
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.hero {
  height: 60vh;
  background: url('/assets/home.JPEG') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.hero h1 {
  background: rgba(0,0,0,0.55);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 2rem;
  margin: 0;
}

/* =========================
   NAVIGATION
========================= */
.site-nav {
  background: var(--nav);
  color: #fff;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-item {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-item:hover,
.nav-item:focus { color: #ffcc33; }
.nav-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background-color: #ffcc33;
  transition: width 0.3s ease;
}
.nav-item:hover::after,
.nav-item:focus::after { width: 100%; }

/* =========================
   FOOTER (static, emoji contact)
========================= */
.site-footer {
  background: var(--nav);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer-inner { max-width: var(--maxw); margin: 0 auto; }

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-contact {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* Ba


/* Base layout (desktop stays horizontal pills) */
/* ---------- DESKTOP (one centered line) ---------- */
.social-links {
  display: flex;
  justify-content: center;    /* ⬅ centers the whole row */
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;          /* ⬅ forces ONE LINE on desktop */
  list-style: none;
  padding: 0;
  margin: 0 auto;             /* center the container */
}

/* Desktop chip colors */
.social-links a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #C8F5C8;        /* light green */
  color: #064420;             /* dark green text */
  border: 1px solid #8FD88F;  /* soft green border */
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;        /* stay on one line */
}

.social-links a:hover {
  background: #B6EDB6;
  border-color: #7ACC7A;
}

/* ---------- MOBILE: 2-column grid (no overlap) ---------- */
@media (max-width: 600px) {

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
    justify-items: center;
  }

  .social-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.35rem 0.4rem;

    background: #C8F5C8;
    color: #064420;
    border: 1px solid #8FD88F;

    border-radius: 10px;     /* less round so text fits nicely */
    white-space: normal;     /* allow wrapping */
    line-height: 1.25;
  }
}





.social-links a:hover { background: #ffffff; transform: translateY(-2px); }

/* Google review pointer + underline */
.google-review { margin: 1rem 0 0.75rem; }
.google-review a { color: #fff; text-decoration: underline; }

/* Copyright */
.copyright {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.75rem;
}

/* =========================
   FORCED-COLORS (Windows/Edge)
========================= */
@media (forced-colors: active) {
  .site-nav, .site-footer {
    forced-color-adjust: none;
    background-color: var(--nav) !important;
    color: #fff !important;
  }
  .site-nav a, .site-nav .nav-item { color: #fff !important; }
}

html {
  overflow-y: scroll;
}


/* =========================
   EXTRA RESPONSIVE TWEAKS
========================= */
@media (max-width: 600px) {
  .nav-inner { gap: 1rem; }
  .footer-contact { font-size: 0.95rem; line-height: 1.5; }
}

