/* ==========================================================================
   Landlogic Realty — landing page
   Brand: dark green #006242 (PMS 3425), light green #75BC43,
          olive #3D441F, tan #D0B787
   ========================================================================== */

/* Montserrat (self-hosted) */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.eot');
    src: url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff'),
        url('../fonts/Montserrat-Light.ttf') format('truetype'),
        url('../fonts/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat-Medium.ttf') format('truetype'),
        url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-MediumItalic.eot');
    src: url('../fonts/Montserrat-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-MediumItalic.woff2') format('woff2'),
        url('../fonts/Montserrat-MediumItalic.woff') format('woff'),
        url('../fonts/Montserrat-MediumItalic.ttf') format('truetype'),
        url('../fonts/Montserrat-MediumItalic.svg#Montserrat-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

:root {
  --ll-dark-green: #006242;
  --ll-light-green: #75BC43;
  --ll-olive: #3D441F;
  --ll-text: #1d1d1b;
}

html, body {
  height: 100%;
}

body {
  font-family: "Montserrat", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: var(--ll-text);
  background: url("../img/background.jpg") center center / cover no-repeat fixed #dfe5d8;
}

.page {
  min-height: 100vh;
}

/* Header logo */
.header-logo {
  width: clamp(220px, 28vw, 370px);
}

/* Ghosted panel — Fill: White @ 83% Strength */
.panel-ghost {
  background: rgba(255, 255, 255, 0.55);
  max-width: 900px;
  width: 100%;
}

/* Intro copy — Montserrat Medium, centred */
.intro {
  font-weight: 500;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.35;
}

/* Services — two columns, 60px gutter on desktop, range left */
@media (min-width: 768px) {
  .gx-services {
    --bs-gutter-x: 60px;
  }
}

.service-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 500;
  font-size: clamp(0.92rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.32em;
  height: 0.32em;
  border-radius: 50%;
  background: var(--ll-text);
}

/* Panel footer — logo | rule | tagline */
.footer-logo {
  width: clamp(190px, 22vw, 250px);
  height: auto;
}

.tagline-rule {
  width: 3px;
  align-self: stretch;
  background: var(--ll-dark-green); /* Rule 3pt — PMS 3425 */
}

.tagline-bold {
  font-weight: 700;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  line-height: 1.45;
}

.tagline-italic {
  font-weight: 500;
  font-style: italic;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  line-height: 1.45;
}

/* Keep each tagline on a single line once there is room */
@media (min-width: 768px) {
  .tagline-bold,
  .tagline-italic {
    white-space: nowrap;
  }
}

/* Coming soon */
.coming-soon {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3rem + 1.2vw, 2.1rem);
  line-height: 1.2;
}

.contact {
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.9vw, 1.8rem);
  line-height: 1.25;
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus {
  color: var(--ll-dark-green);
  text-decoration: underline;
}

/* Mobile: fixed backgrounds are janky on iOS — scroll instead */
@media (max-width: 767.98px) {
  body {
    background-attachment: scroll;
  }
}
