/*
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{  }



/* =========================================
   English Worldwide Pools & Spas – custom.css
   Brand tokens + light Bootstrap 4 overrides
   ========================================= */

/* 1) Brand tokens */
body {
  --brand-primary: #0077b6;  /* blue */
  --brand-accent:  #F77F00;  /* orange accent */
  --brand-bg:      #F8F9FA;  /* light canvas */
  --brand-black:   #0f0f10;  /* near-black */

  /* Hero defaults (can be overridden inline per block) */
  --hero-bg: url('/domainsfiles/dom-3864/pictures/recent_project.jpg');
  --hero-overlay: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}

/* 2) Typography & canvas */
body{
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--brand-bg);
  color:#333;
}
h1,h2,h3,.display-4{
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing:.2px;
}
.text-brand{ color: var(--brand-primary) !important; }
.lead-muted{ color:#6c757d; }
.text-white-75{ color: rgba(255,255,255,.85) !important; }

/* 3) Buttons (no Bootstrap core edits) */
.btn-brand{
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  color:#fff;
}
.btn-brand:hover,
.btn-brand:focus{ color:#fff; filter:brightness(.95); }

.btn-outline-brand{
  background:#fff;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline-brand:hover,
.btn-outline-brand:focus{
  background: var(--brand-primary);
  color:#fff;
}

/* 4) Blocks (div-only sections) */
.block{ position:relative; }
.block .inner{ position:relative; z-index:2; } /* content sits above bg layers */

/* 5) Hero with full-cover background
      Use inline style to set image: style="--hero-bg:url('/pictures/your.jpg')" */
.block.hero{
  color:#fff;
  min-height: 380px;          /* ensure presence even with little content */
  overflow: hidden;
}
.block.hero::before{
  content:"";
  position:absolute; inset:0;
  background: var(--hero-bg) center/cover no-repeat;   /* full COVER */
  z-index:0;
}
.block.hero::after{
  content:"";
  position:absolute; inset:0;
  background: var(--hero-overlay);                      /* brand overlay */
  z-index:1;
}
/* Responsive hero heights */
@media (min-width:576px){ .block.hero{ min-height:420px; } }
@media (min-width:992px){ .block.hero{ min-height:520px; } }

/* 5b) Helper for element-level background images (if you set background-image on the DIV itself) */
.bg-cover{
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* 6) Cards & icons */
.card.shadow-sm{ border:1px solid rgba(0,0,0,.06); }
.icon-circle{
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background: var(--brand-primary); color:#fff;
}

/* 7) CTA band (brand red/black style not used here; using blue/black gradient) */
.cta-band{
  background: linear-gradient(90deg, var(--brand-black) 0%, #1a1a1a 55%, var(--brand-primary) 100%);
  color:#fff;
}

/* 8) Phone (plain text, no anchor) */
.cta-phone{
  font-weight:700; white-space:nowrap;
}
.cta-phone .fa{ margin-right:.35rem; color: var(--brand-accent); }

/* 9) Accessibility niceties */
.sr-only-focusable:active,
.sr-only-focusable:focus{
  position:static; width:auto; height:auto; margin:0;
  overflow:visible; clip:auto; white-space:normal;
}

