/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how to render a web page. You may delete these comments and get started with your customizations.

By default, your stylesheet will be loaded after the theme stylesheets, which means that your rules can take precedence and override the theme CSS rules. Just write here what you want to change, you don't need to copy all your theme's stylesheet content.
*/


/* checkout buttons: */
.checkoutbtn{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }
.checkoutbtn:hover{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }


/* fixed banners: */
#fixedpanelleft{  }
#fixedpanelright{  }
#fixedpanelbottom{  }


/* Brand tokens */
body {
/*  --brand-primary:#0B1F3A;    Navy */
--brand-primary:       #0E2A18;  /* deep spruce (elegant, pairs with green) */
  --brand-accent:#7dc241;     /* green 62a730 (AA-accessible)   C75A00 */
  --brand-bg:#FFFFFF;
/*   --brand-text:#222222;
  --brand-muted:#6C757D; */
--brand-text:          #1E1E1E;  /* primary text */
  --brand-muted:         #6C757D;  /* secondary text */

  --brand-light:#F5F7FA;
 
}
.hero-content a{color:white}

.fa {color:var(--brand-accent);}

/* Base typography */
:root{
  background:var(--brand-bg);
  color:var(--brand-text);
  font-family:"Source Sans 3", "Helvetica Neue", Arial, sans-serif !important;
  line-height:1.6;
}
h1,h2,h3,.display-4,.display-3{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif !important;
  color:var(--brand-primary);
}

.display-4{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif !important;
  color:var(--brand-bg);
}


.small-label, .badge-label{
  font-family:"Montserrat", Arial, sans-serif !important;
  font-weight:600;
  letter-spacing:.02em;
}

/* Buttons */
.btn-brand{
  background:var(--brand-accent);
  color:#fff;
  border:none;
}
.btn-brand:hover,.btn-brand:focus{
  background:#09213F;
  color:#fff;
}
.btn-accent{
  background:var(--brand-accent);
  color:#fff;
  border:none;
}
.btn-accent:hover,.btn-accent:focus{
  background:#A44A00;
  color:#fff;
}
.btn-outline-accent{
  background:transparent;
  color:var(--brand-accent);
  border:2px solid var(--brand-accent);
}
.btn-outline-accent:hover,.btn-outline-accent:focus{
  background:var(--brand-accent);
  color:#fff;
}

/* Sections */
.section-pad{ padding:48px 0; }
.section-muted{ background:var(--brand-light); }
.section-dark{ background:var(--brand-primary); color:#fff; }
.section-dark h2, .section-dark h3{ color:#fff; }

/* Hero */
.hero{
  position:relative;
  min-height:60vh;
  display:flex; align-items:center;
  background-size:cover; background-position:center;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
 /* background:linear-gradient(to bottom, rgba(11,31,58,.65), rgba(11,31,58,.55)); */

 
  background: linear-gradient(
    180deg,
    #3C6B1E 0%,   /* darker, less saturated */
    #4B8425 60%,
    #5A9B2C 100%
  );
 
/*
background: linear-gradient(
    to bottom,
    #4f8f28, /* darker shade of #62A730 */
    #62A730 60%,
    #76bd48 100% /* lighter shade */
  );
opacity: .65; /* optional overlay strength */
}
.hero .hero-content{
  position:relative; z-index:1; color:#fff;
}
*/


.hero .lead{ color:#E6EBF2; }

/* Cards */
.card-shadow{
  border:none; border-radius:.5rem;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.gap-2 {padding:48px 0px; }

/* Lists & utilities */
.icon-list li{ margin-bottom:.5rem; }
hr.divider{ border:0; height:1px; background:#e6e9ee; margin:24px 0; }

/* Accessibility focus */
a:focus, button:focus{ outline:3px solid #99C2FF; outline-offset:2px; }

/* Footer CTA */
.footer-cta .btn{ min-width:220px; }

