/* Mike Webster Framework */
/* Mobile First System with NO Defaults */

/* Global CSS Variables */

/* ------------------- Alert global variables ------------------- */
:root {
  --alert-padding: 15px;
  --alert-radius: 4px;
  --alert-font-size: 14px;
  --alert-bg: #f5f5f5;
  --alert-border: #ddd;
  --alert-color: #333;
/* ------------------- Button Global Variables ------------------- */
--btn-padding: 10px 16px;
  --btn-font-size: 14px;
  --btn-radius: 4px;
  --btn-bg: #f5f5f5;
  --btn-color: #333;
  --btn-border: transparent;
  --btn-hover-opacity: 0.9;
/* ------------------- Card Global Variables ------------------- */
--card-bg: #fff;
  --card-border: #e5e5e5;
  --card-radius: 6px;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --card-header-bg: #ff0000;
  --card-header-color:#fff;
  --card-footer-bg: #ff0000;
  --card-title-color: #222;
  --card-text-color: #000;
  --card-link-color: #1e87f0;
  --card-padding: 16px;
/* ------------------- Slideshow Global Variables ------------------- */
--slideshow-height: 400px;
  --overlay-bg: rgba(0,0,0,0.4);
  --overlay-color: #fff;
  --arrow-size: 40px;
  --arrow-bg: rgba(0, 0, 0, 0.4);
  --dot-size: 20px;
  --dot-active: #f00;
  --dot-inactive: rgba(0,0,0,0.5);
/* ------------------- ToTop Global Variables ------------------- */
  --totop-size: 20px;
  --totop-bg: #ff0000;
  --totop-color: #fff;
  --totop-radius: 50%;
  --totop-shadow: 0 4px 12px rgba(0,0,0,0.15);
/* ------------------- Menu Global Variables ------------------- */
--menu-width: 280px;
  --menu-bg: #fff;
  --menu-color: #333;
  --menu-border: #e5e5e5;
  --overlay-bg: rgba(0,0,0,0.4);
  --transition: 0.3s ease;
  --hamburger-color: white;
/* ------------------- Hero Colors ------------------- */
  --hero-text-color: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.3);
  --hero-btn-bg: #00ff00;
  --hero-btn-text: #ffffff;
  --hero-btn-hover-bg: #ff0000;
  --hero-btn-hover-text: #000000;
/* ------------------- Hero Typography ------------------- */
  --hero-title-size: 3rem;
  --hero-text-size: 1.8rem;
  /* ------------------- Hero Layout ------------------- */
  --hero-height: 100vh;
  --hero-max-width: 500px;
  --hero-padding: 20px;
  /* ------------------- Hero Call to Action Button ------------------- */
  --btn-padding: 12px 30px;
  --btn-radius: 30px;
  /* ------------------- Hero Background Image ------------------- */
  --hero-bg-image: url(/img/murraycanal.webp);

/* Green Text */
.gt {
  color: lawngreen;
}
/* Black Text */
.bt {
  color: black;
}
.wt {
  color: white;
}
.rt {
  color: red;
}
}

/* Alert Variants (override variables) */
.alert-primary {
  --alert-bg: #e6f2ff;
  --alert-border: #b3d7ff;
  --alert-color: #084298;
}
.alert-success {
  --alert-bg: #e6ffed;
  --alert-border: #b3ffcc;
  --alert-color: #0f5132;
}
.alert-warning {
  --alert-bg: #fff8e1;
  --alert-border: #ffecb3;
  --alert-color: #664d03;
}
.alert-danger {
  --alert-bg: #fdecea;
  --alert-border: #f5c2c0;
  --alert-color: #842029;
}
/* Button Variants (override variables) */
.btn-primary {
  --btn-bg: #1e87f0;
  --btn-color: #fff;
}
.btn-secondary {
  --btn-bg: #ffffff;
  --btn-color: #000000;
}
.btn-success {
  --btn-bg: #32d296;
  --btn-color: #fff;
}
.btn-danger {
  --btn-bg: #f0506e;
  --btn-color: #fff;
}
/* Outline Button */
.btn-outline {
  --btn-bg: transparent;
  --btn-color: #1e87f0;
  --btn-border: #1e87f0;
}
.btn-outline:hover {
  --btn-bg: #1e87f0;
  --btn-color: #fff;
}
/* Button Sizes */
.btn-small {
  --btn-padding: 6px 10px;
  --btn-font-size: 12px;
}
.btn-large {
  --btn-padding: 14px 22px;
  --btn-font-size: 16px;
}
/* rounded buttons */
.btn-pill {
  --btn-radius: 20px;
}
.card-flat {
  --card-border: transparent;
  --card-shadow: none;
}
.card-elevated {
  --card-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ------------------- Grid Global Variables ------------------- */
/* Center Content Grid Container with 5K Retina display maximum */
.grid {
  width: 100%;
  max-width: 5120px;
  margin: 0 auto;
}
/* Row Using Flex Box */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
/* Columns */
[class*="col-"] {
  box-sizing: border-box;
}
/* 12-column widths */
.col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3  { flex: 0 0 25%;     max-width: 25%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6  { flex: 0 0 50%;     max-width: 50%; }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9  { flex: 0 0 75%;     max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%;    max-width: 100%; }

/* Optional styling */
.opt {
  background: #f80404;
  border: 1px solid #000;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}
/* Offsets based on # Columns */
.offset-1  { margin-left: 8.333%; }
.offset-2  { margin-left: 16.666%; }
.offset-3  { margin-left: 25%; }
.offset-4  { margin-left: 33.333%; }
.offset-5  { margin-left: 41.666%; }
.offset-6  { margin-left: 50%; }
.offset-7  { margin-left: 58.333%; }
.offset-8  { margin-left: 66.666%; }
.offset-9  { margin-left: 75%; }
.offset-10 { margin-left: 83.333%; }
.offset-11 { margin-left: 91.666%; }
/* Extra Small width - just in case */
@media (min-width: 100px) {
  .col-xs-1  { flex: 0 0 8.333%; }
  .col-xs-2  { flex: 0 0 16.666%; }
  .col-xs-3  { flex: 0 0 25%; }
  .col-xs-4  { flex: 0 0 33.333%; }
  .col-xs-5  { flex: 0 0 41.666%; }
  .col-xs-6  { flex: 0 0 50%; }
  .col-xs-7  { flex: 0 0 58.333%; }
  .col-xs-8  { flex: 0 0 66.666%; }
  .col-xs-9  { flex: 0 0 75%; }
  .col-xs-10 { flex: 0 0 83.333%; }
  .col-xs-11 { flex: 0 0 91.666%; }
  .col-xs-12 { flex: 0 0 100%; }

  .offset-xs-1 { margin-left: 8.333%; }
  .offset-xs-2 { margin-left: 16.666%; }
  .offset-xs-3 { margin-left: 25%; }
  .offset-xs-4 { margin-left: 33.333%; }
  .offset-xs-5 { margin-left: 41.666%; }
  .offset-xs-6 { margin-left: 50%; }
}
/* Mobile width about 360 */
@media (min-width: 360px) {
  .col-sm-1  { flex: 0 0 8.333%; }
  .col-sm-2  { flex: 0 0 16.666%; }
  .col-sm-3  { flex: 0 0 25%; }
  .col-sm-4  { flex: 0 0 33.333%; }
  .col-sm-5  { flex: 0 0 41.666%; }
  .col-sm-6  { flex: 0 0 50%; }
  .col-sm-7  { flex: 0 0 58.333%; }
  .col-sm-8  { flex: 0 0 66.666%; }
  .col-sm-9  { flex: 0 0 75%; }
  .col-sm-10 { flex: 0 0 83.333%; }
  .col-sm-11 { flex: 0 0 91.666%; }
  .col-sm-12 { flex: 0 0 100%; }

  .offset-sm-1 { margin-left: 8.333%; }
  .offset-sm-2 { margin-left: 16.666%; }
  .offset-sm-3 { margin-left: 25%; }
  .offset-sm-4 { margin-left: 33.333%; }
  .offset-sm-5 { margin-left: 41.666%; }
  .offset-sm-6 { margin-left: 50%; }
}
/* Tablet width about 768 */
@media (min-width: 768px) {
  .col-md-1  { flex: 0 0 8.333%; }
  .col-md-2  { flex: 0 0 16.666%; }
  .col-md-3  { flex: 0 0 25%; }
  .col-md-4  { flex: 0 0 33.333%; }
  .col-md-5  { flex: 0 0 41.666%; }
  .col-md-6  { flex: 0 0 50%; }
  .col-md-7  { flex: 0 0 58.333%; }
  .col-md-8  { flex: 0 0 66.666%; }
  .col-md-9  { flex: 0 0 75%; }
  .col-md-10 { flex: 0 0 83.333%; }
  .col-md-11 { flex: 0 0 91.666%; }
  .col-md-12 { flex: 0 0 100%; }

  .offset-md-1 { margin-left: 8.333%; }
  .offset-md-2 { margin-left: 16.666%; }
  .offset-md-3 { margin-left: 25%; }
  .offset-md-4 { margin-left: 33.333%; }
  .offset-md-5 { margin-left: 41.666%; }
  .offset-md-6 { margin-left: 50%; }
}
/* Laptop and Desktop */
@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 8.333%; }
  .col-lg-2  { flex: 0 0 16.666%; }
  .col-lg-3  { flex: 0 0 25%; }
  .col-lg-4  { flex: 0 0 33.333%; }
  .col-lg-5  { flex: 0 0 41.666%; }
  .col-lg-6  { flex: 0 0 50%; }
  .col-lg-7  { flex: 0 0 58.333%; }
  .col-lg-8  { flex: 0 0 66.666%; }
  .col-lg-9  { flex: 0 0 75%; }
  .col-lg-10 { flex: 0 0 83.333%; }
  .col-lg-11 { flex: 0 0 91.666%; }
  .col-lg-12 { flex: 0 0 100%; }

  .offset-lg-1 { margin-left: 8.333%; }
  .offset-lg-2 { margin-left: 16.666%; }
  .offset-lg-3 { margin-left: 25%; }
  .offset-lg-4 { margin-left: 33.333%; }
  .offset-lg-5 { margin-left: 41.666%; }
  .offset-lg-6 { margin-left: 50%; }
}
/* Laptop and Desktop */
@media (min-width: 1200px) {
  .col-xl-1  { flex: 0 0 8.333%; }
  .col-xl-2  { flex: 0 0 16.666%; }
  .col-xl-3  { flex: 0 0 25%; }
  .col-xl-4  { flex: 0 0 33.333%; }
  .col-xl-5  { flex: 0 0 41.666%; }
  .col-xl-6  { flex: 0 0 50%; }
  .col-xl-7  { flex: 0 0 58.333%; }
  .col-xl-8  { flex: 0 0 66.666%; }
  .col-xl-9  { flex: 0 0 75%; }
  .col-xl-10 { flex: 0 0 83.333%; }
  .col-xl-11 { flex: 0 0 91.666%; }
  .col-xl-12 { flex: 0 0 100%; }

  .offset-xl-1 { margin-left: 8.333%; }
  .offset-xl-2 { margin-left: 16.666%; }
  .offset-xl-3 { margin-left: 25%; }
  .offset-xl-4 { margin-left: 33.333%; }
  .offset-xl-5 { margin-left: 41.666%; }
  .offset-xl-6 { margin-left: 50%; }
}
/* Laptop and Desktop */
@media (min-width: 1920px) {
  .col-xxl-1  { flex: 0 0 8.333%; }
  .col-xxl-2  { flex: 0 0 16.666%; }
  .col-xxl-3  { flex: 0 0 25%; }
  .col-xxl-4  { flex: 0 0 33.333%; }
  .col-xxl-5  { flex: 0 0 41.666%; }
  .col-xxl-6  { flex: 0 0 50%; }
  .col-xxl-7  { flex: 0 0 58.333%; }
  .col-xxl-8  { flex: 0 0 66.666%; }
  .col-xxl-9  { flex: 0 0 75%; }
  .col-xxl-10 { flex: 0 0 83.333%; }
  .col-xxl-11 { flex: 0 0 91.666%; }
  .col-xxl-12 { flex: 0 0 100%; }

  .offset-xxl-1 { margin-left: 8.333%; }
  .offset-xxl-2 { margin-left: 16.666%; }
  .offset-xxl-3 { margin-left: 25%; }
  .offset-xxl-4 { margin-left: 33.333%; }
  .offset-xxl-5 { margin-left: 41.666%; }
  .offset-xxl-6 { margin-left: 50%; }
}
/* Laptop and Desktop */
@media (min-width: 2560px) {
  .col-jl-1  { flex: 0 0 8.333%; }
  .col-jl-2  { flex: 0 0 16.666%; }
  .col-jl-3  { flex: 0 0 25%; }
  .col-jl-4  { flex: 0 0 33.333%; }
  .col-jl-5  { flex: 0 0 41.666%; }
  .col-jl-6  { flex: 0 0 50%; }
  .col-jl-7  { flex: 0 0 58.333%; }
  .col-jl-8  { flex: 0 0 66.666%; }
  .col-jl-9  { flex: 0 0 75%; }
  .col-jl-10 { flex: 0 0 83.333%; }
  .col-jl-11 { flex: 0 0 91.666%; }
  .col-jl-12 { flex: 0 0 100%; }

  .offset-jl-1 { margin-left: 8.333%; }
  .offset-jl-2 { margin-left: 16.666%; }
  .offset-jl-3 { margin-left: 25%; }
  .offset-jl-4 { margin-left: 33.333%; }
  .offset-jl-5 { margin-left: 41.666%; }
  .offset-jl-6 { margin-left: 50%; }
}
/* ------------------- Accordion Global Variables ------------------- */
.accordion {
  max-width: 100%;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}
/* Hide checkboxes */
.accordion input {
  display: none;
}
/* Header */
.accordion label {
  display: block;
  padding: 15px;
  background: burlywood;
  border: 1px solid burlywood;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
/* + / - icon */
.accordion label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.2s ease;
}
/* Accordion Content */
.accordion .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border: 1px solid #ccc;
  border-top: none;
  padding: 0 15px;
}
/* Open state */
.accordion input:checked + label + .content {
  max-height: 2500px; /* --------------------- adjust as needed ----------------------------- */
  padding: 15px;
}
/* Change Accordion icon when open */
.accordion input:checked + label::after {
  content: "−";
}
/* ------------------- Alert Global Variables ------------------- */
.alert {
  position: relative;
  padding: 15px 40px 15px 15px;
  border-radius: 4px;
  margin: 10px 0;
  font-family: Arial, sans-serif;
  background: var(--alert-bg, #f5f5f5);
  border: 1px solid var(--alert-border, #ddd);
  color: var(--alert-color, #333);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Hide checkbox */
.alert input {
  display: none;
}
/* Close button */
.alert-close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
}
.alert-close:hover {
  opacity: 1;
}
.alert:has(input:checked) {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
/* ------------------- Button Base ------------------- */
.btn {
  display: inline-block;
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, sans-serif;
  line-height: 1;
  transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
}
/* full width button */
.btn-block {
  display: block;
  width: 100%;
}  
/* ------------------- Card Base ------------------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  max-width: 450px;
  font-family: Arial, sans-serif;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
/* ------------------- Card Hover effect ------------------- */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
/* ------------------- card header ------------------- */
.card-header {
  padding: var(--card-padding);
  color: var(--card-header-color);
  background: var(--card-header-bg);
  border-bottom: 1px solid var(--card-border);
  font-weight: bold;
}
/* ------------------- card body ------------------- */
.card-body {
  padding: var(--card-padding);
}
.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--card-title-color);
}
.card-text {
  margin: 0;
  font-size: 18px;
  color: var(--card-text-color);
  line-height: 1.5;
}
/* ------------------- card footer ------------------- */
.card-footer {
  padding: var(--card-padding);
  background: var(--card-footer-bg);
  border-top: 1px solid var(--card-border);
  text-align: left;
}
/* ------------------- Card Link ------------------- */
.card-link {
  color: var(--card-link-color);
  text-decoration: none;
  font-weight: 500;
}
.card-link:hover {
  text-decoration: underline;
}
/* ------------------- General Links - No Underline ------------------- */
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
/* ------------------- ToTop Button ------------------- */
.to-top {
  position: fixed;
  right: 10px;
  bottom: 25px;
  width: var(--totop-size);
  height: var(--totop-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--totop-bg);
  color: var(--totop-color);
  border-radius: var(--totop-radius);
  box-shadow: var(--totop-shadow);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 101;
}
/* ------------------- ToTop Hover effect ------------------- */
.to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}
/* ------------------- To Top Active click effect ------------------- */
.to-top:active {
  transform: scale(0.95);
}
.to-top {
  --totop-size: 30px;
  font-size: 22px;
}
/* ------------------- Slideshow Base ------------------- */
.slideshow {
  max-width: 800px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}
.slideshow input {
  display: none;
}
/* ------------------- Slides (fade system) ------------------- */
.slides {
  position: relative;
  height: var(--slideshow-height);
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
/* ------------------- Active slide ------------------- */
#slide1:checked ~ .slides .slide:nth-child(1),
#slide2:checked ~ .slides .slide:nth-child(2),
#slide3:checked ~ .slides .slide:nth-child(3) {
  opacity: 1;
  z-index: 1;
}
/* ------------------- Slide Image ------------------- */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ------------------- Slide Overlay ------------------- */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: var(--overlay-bg);
  color: var(--overlay-color);
}
/* ------------------- Slideshow Arrows ------------------- */
.arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.arrows label {
  width: var(--arrow-size);
  height: var(--arrow-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--arrow-bg);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.2s ease;
}
.arrows label:hover {
  transform: scale(1.1);
}
/* ------------------- Slideshow Dots BELOW ------------------- */
.dots {
  margin-top: 15px;
  text-align: center;
}
.dots label {
  display: inline-block;
  width: var(--dot-size);
  height: var(--dot-size);
  margin: 0 15px;
  border-radius: 50%;
  background: var(--dot-inactive);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.dots label:hover {
  transform: scale(1.2);
}
/* ------------------- Slideshow Active dot ------------------- */
#slide1:checked ~ .dots label[for="slide1"],
#slide2:checked ~ .dots label[for="slide2"],
#slide3:checked ~ .dots label[for="slide3"] {
  background: var(--dot-active);
}
/* ------------------- Menu Base ------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
#menu-toggle {
  display: none;
}
/* ------------------- Hamburger (RIGHT) ------------------- */
.menu-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1001;
  width: 26px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-btn span {
  height: 2px;
  background: var(--hamburger-color);
  transition: 0.3s;
}
/* ------------------- Animate Hamburger → X ------------------- */
#menu-toggle:checked + .menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked + .menu-btn span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* Logo (LEFT) Behind Menu */
.logo {
  position: fixed;
  top: 2px;
  left: 2px;
  z-index: 999;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
/* ------------------- Offcanvas (LEFT) ------------------- */
.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--menu-width);
  height: 100vh;
  background: var(--menu-bg);
  color: var(--menu-color);
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
#menu-toggle:checked ~ .offcanvas {
  transform: translateX(0);
}
/* ------------------- OffCanvas Overlay ------------------- */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
/* Off Canvas Header */
.offcanvas-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--menu-border);
}
.close-btn {
  cursor: pointer;
  font-size: 20px;
}
/* Navigation */
.offcanvas-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-nav li {
  border-bottom: 1px solid var(--menu-border);
}
.offcanvas-nav a,
.offcanvas-nav label {
  display: block;
  padding: 12px 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--menu-color);
  position: relative;
}
/* ------------------- Offcanvas hide inputs ------------------- */
.offcanvas-nav input {
  display: none;
}
/* ------------------- Menu Accordion (multi-level) ------------------- */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.02);
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.offcanvas-nav input:checked + label + .submenu {
  max-height: 500px;
}
/* ------------------- Offcanvas menu arrow indicator ------------------- */
.has-submenu > label::after {
  content: "›";
  position: absolute;
  right: 15px;
  transition: transform 0.2s ease;
}
.offcanvas-nav input:checked + label::after {
  transform: rotate(90deg);
}
/* ------------------- Menu indentation ------------------- */
.submenu a,
.submenu label {
  padding-left: 25px;
}
.submenu .submenu a,
.submenu .submenu label {
  padding-left: 40px;
}
/* ------------------- Desktop (NO NAVBAR) ------------------- */
@media (min-width: 768px) {
  .overlay {
    display: none;
  }
  /* ------------------- still off-canvas on desktop ------------------- */
  .offcanvas {
    position: fixed;
  }
}
/* ------------------- Hero Reset ------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ------------------- Hero ------------------- */
.hero {
  height: var(--hero-height);
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    var(--hero-bg-image) no-repeat center/cover;
  display: flex;
  align-items:center;
  justify-content: center;
  text-align: center;
  color: var(--hero-text-color);
  padding: var(--hero-padding);
}
/* ------------------- Hero Content ------------------- */
.hero-content {
  max-width: var(--hero-max-width);
}
.hero h1 {
  font-size: var(--hero-title-size);
  margin-bottom: 20px;
}
.hero p {
  font-size: var(--hero-text-size);
  margin-bottom: 30px;
  line-height: 1.5;
}
/* ------------------- Hero Button ------------------- */
.hero-btn {
  display: inline-block;
  padding: var(--btn-padding);
  background: var(--hero-btn-bg);
  color: var(--hero-btn-text);
  text-decoration: none;
  border-radius: var(--btn-radius);
  font-size: 1rem;
  transition: 0.3s ease;
   width: clamp(200px, 65%, 80vh);
}
.hero-btn:hover {
  background: var(--hero-btn-hover-bg);
  color: var(--hero-btn-hover-text);
}
/* ------------------- Hero Responsive variables ------------------- */
@media (max-width: 768px) {
  :root {
    --hero-title-size: 2.5rem;
    --hero-text-size: 1rem;
  }
}
   