/* ============================================================
   Lake-Link Global Styles
   Purpose: Reusable, non-critical design rules
   Scope: Typography, layout utilities, content styles
   ============================================================ */


 /* ============================================================
   Font Metric Overrides (CLS-safe font swap)
   Matches system fallback metrics to Poppins
   ============================================================ */

   
   html,
body {

    overflow-x: hidden;
	

}
   
 body {

    padding-top: env(safe-area-inset-top);

}  

* {

    box-sizing: border-box;

}
   
/* =========================================================
   SELF-HOSTED POPPINS
========================================================= */

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

  
  

   
/* ============================================================
   Images & SVGs
   ============================================================ */
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}


/* ============================================================
   Headings
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.03em;
  color: #222;
}

h1 {
  font-weight: 700;
}

h2,
h3 {
  font-weight: 600;
}


/* ============================================================
   Font Sizes & Utilities
   ============================================================ */
.fs-12 {
  font-size: 12px;
}

.text-muted {
  opacity: 0.75;
}


/* ============================================================
   Font Awesome Fix
   Prevents layout jitter when icons load asynchronously
   ============================================================ */
i.fa-light,
i.fa-solid,
i.fa-regular,
i.fa-brands {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  text-align: center;
  font-style: normal;
  line-height: 1;
}


/* ============================================================
   Layout Containers
   ============================================================ */
#content {
  position: relative;
  background: #f9f9f9;
}


/* ============================================================
   Menu Wrapper
   ============================================================ */
#menu-wrapper {
  background-color: #fff;
  border: 1px solid #909090;
  border-radius: 10px;
}


/* ============================================================
   Buttons
   ============================================================ */
.menuButton {
  color: #363636;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.menuButton:hover {
  color: #0038a8; /* Lake-Link Blue */
  opacity: 0.85;
}






/* ============================================================
   Ad Slots (CLS-Safe Placeholders)
   ============================================================ */
.ad-slot {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Remove placeholder background once ad content loads */
.ad-slot:has(iframe),
.ad-slot:has(img),
.ad-slot:has(div iframe) {
  background: transparent;
}

/* Ad Sizes */
.ad-300x250 { width: 300px; height: 250px; }
.ad-300x600 { width: 300px; height: 600px; }
.ad-728x90  { width: 728px; height: 90px; }
.ad-320x50  { width: 320px; height: 50px; }


/* ============================================================
   Ad Rail & Sticky
   ============================================================ */
.ad-rail {
  position: relative;
  min-height: calc(100vh + 600px);
  padding-bottom: 150px;
}

.sticky-ad {
  transition: top 0.2s ease;
}


/* ============================================================
   Footer
   ============================================================ */
footer {
  background-color: #e9e9e9;
  border-top: 1px solid #ccc;
}

#copyright {
  font-size: 12px;
  line-height: 1.1em;
  opacity: 0.75;
}
