/*
Theme Name: ICC Final
Theme URI: https://integritycabincaretakers.com/
Author: Integrity Cabin Caretakers
Description: Minimal Elementor-friendly starter theme. Accent: #017b6e. Font: Montserrat. (No floating header.)
Version: 1.0.1
License: GPLv2 or later
Text Domain: iccfinal
*/

:root{
  --icc-accent:#017b6e;
  --icc-text:#1c1c1c;
  --icc-muted: rgba(0,0,0,.65);
  --icc-line: rgba(0,0,0,.08);
  --icc-radius:18px;
  --icc-shadow: 0 12px 32px rgba(0,0,0,.08);
}

body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--icc-text);
}

/* Content container */
.icc-content{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 80px;
}

/* Back to top button */
.icc-back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.icc-back-to-top a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--icc-line);
  box-shadow: var(--icc-shadow);
  text-decoration:none;
  color: var(--icc-accent);
  font-weight: 900;
}

.icc-back-to-top.icc-show{
  opacity: 1;
  pointer-events: auto;
}
