@charset "UTF-8";
/* CSS Document */
/* Content ====================================================== 
   0. BRANDING
   1. TYPOGRAPHY
   2. ICONS / FONTAWESOME
   3. NAVIGATION
   4. SIGNATURES
   5. CARDS / CONTENT BLOCKS
   6. FOOTER
   7. HELPER CLASSES / UTILITIES
   8. FONTS / CUSTOM TYPEFACES
   9. MISC / ONE OFFS
   10. ACCESSIBILIY
   11. RESPONSIVE / MEDIA QUERIES
   12. Buttons
   13. Google SEARCH
====================================================== */

/* 0.
BRANDING / BASELINE
======================================================
====================================================== */


html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-size: clamp(14px, 1vw + 0.2rem, 16px);
  line-height: 1.3;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "wght" 400;
  font-size: 1rem;
  letter-spacing: 0.125px;
  color: #151515;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.05rem;
	line-height: 1.8; /* comfortable readability */
  margin-bottom: 1.25rem;
}

p a {
  font-variation-settings: "wght" calc(var(--p-font-weight, 400) * 1.7);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-thickness 0.2s ease;
}

p a:hover,
p a:focus {
  text-decoration-thickness: 2px;
}

ul.no-bullets {
  list-style: none;
  padding-left: 0;
}

ul.no-bullets li {
  margin-left: 40px;
  margin-right: 40px;
}

/* COLOR DECLARATIONS.
====================================================== */
.t-blk  { color: #151515; }
.t-wht  { color: #f6f6f6; }
.t-gray { color: #909090; }
.t-gray-dk { color: #363636; }
.t-red  { color: #d62828; }
.t-blue { color: #0085ca; }

.bg-blk  { background-color: #151515; }
.bg-wht  { background-color: #f6f6f6; }
.bg-F6F6F6 { background-color: #E6E6E6; }
.bg-gray { background-color: #909090; }
.bg-gray-dk { background-color: #363636; }
.bg-red  { background-color: #d62828; }
.bg-blue { background-color: #0085ca; }

/* 1.
TYPOGRAPHY
======================================================
====================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-family: "YankeeBold", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700; /* all bold */
  letter-spacing: -0.25px;
  margin-top: 0;
}

/* Sizes and line heights */
h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.0; margin-bottom: clamp(0.35em, 1vw, 0.5em); }
h2 { font-size: clamp(1.875rem, 5vw, 3.25rem); line-height: 1.1; margin-bottom: clamp(0.3em, 0.9vw, 0.45em); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.25; margin-bottom: clamp(0.25em, 0.8vw, 0.4em); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.4; margin-bottom: clamp(0.2em, 0.7vw, 0.35em); }
h5 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.5; margin-bottom: clamp(0.2em, 0.6vw, 0.3em); }
h6 { font-size: clamp(1.125rem, 2vw, 1.25rem); line-height: 1.6; margin-bottom: clamp(0.15em, 0.5vw, 0.25em); }

h-black {
	font-family: "YankeeBlack", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

/* ==========================
   Links
   ========================== */
a,
a:visited {
  color: inherit;
  text-decoration: none;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

/* underline without layout shift */
a:hover,
a:focus {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px; /* keeps underline below text */
}

a:hover,
a:focus {
  color: inherit;
}
/* ==========================
   SPECIAL
   ========================== */

.ubar {
  border-top: 5px solid #de0520;
  display: inline-block;
  padding-top: 0.125em;
}

.ubar150 {
  position: relative;
  display: inline-block;
  padding-top: 20px; /* space for the bar */
}

.ubar150::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 3px;
  background-color: #de0520;
}

.ubar75 {
  position: relative;
  display: inline-block;
  padding-top: 15px; /* space for the bar */
}

.ubar75::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 2px;
  background-color: #de0520;
}
/* Centering the bar
left: 50%;
transform: translateX(-50%); */

.h1-with-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.h1-with-bar::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 2px;
  background-color: #d32339; /* red bar */
  margin-right: 15px;
  vertical-align: middle;
}

/*
2. ICONS / FONTAWESOME
======================================================
====================================================== */
.fa, .fas, .far, .fal, .fab {
  vertical-align: middle;
}




/*
3. NAVIGATION
======================================================
====================================================== */





/*
4A. Signatures
======================================================
====================================================== */
.band-signature {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
  background-color: #FFFFFF;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 75px 0 10px;
  min-height: clamp(550px, 35vw + 225px, 725px);
}
.band-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%), linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 0;
  pointer-events: none;
}
.band-signature > * {
  position: relative;
  z-index: 1;
}

.band-callout {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; /* vertically center text */
  text-align: center;
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  min-height: 475px;
}

.band-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 0;
  pointer-events: none;
}

.band-callout > * {
  position: relative;
  z-index: 1;
}

.band-utility {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
  background-color: #0085ca;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 75px 0 10px;
  min-height: 325px;
}
.band-utility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 90%), linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 90%);
  z-index: 0;
  pointer-events: none;
}
.band-utility > * {
  position: relative;
  z-index: 1;
}

/* Signature Imgs
====================================================== */
.usa-test1 {
  background-image: url("../../_assets/imgs/test/destinations/joris-berthelot-EnTU_hr9wPA-unsplash.jpg");
  background-position: center center;
}
.usa-test2 {
  background-image: url("../../_assets/imgs/test/destinations/glade-optics-ttGLlNElbCc-unsplash.jpg");
  background-position: center center;
}

.usa-test3 {
  background-image: url("../../_assets/imgs/test/destinations/getty-images-xj_lCOeSCbU-unsplash.jpg");
  background-position: center center;
}

.usa-band-ut {
  background-color: #505050 !important;
}

/*
4. Page Bands
======================================================
====================================================== */
.container {
  width: 94% !important;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Add this RIGHT HERE */


.nav-matched {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.usa-base {
  padding: clamp(50px, 8vw, 100px) 0;
}

.usa-base-first {
  padding: clamp(40px, 8vw, 70px) 0;
}

.base-band-grad  {
background-color: #151515;
  background-image: 
    linear-gradient(135deg, #002f59 0%, transparent 40%),
    linear-gradient(315deg, #6b0000 0%, transparent 40%);
  background-blend-mode: normal;
}


/*
5. CARDS / CONTENT BLOCKS
======================================================
====================================================== */
/* general card .card {
  background-color: rgba(0, 0, 0, 0.0);
  border: 1px solid rgba(0, 0, 0, 0.0);
  word-wrap: normal;
} */

.usacol {
  margin-bottom: clamp(25px, 4vw, 50px);
}

.usacard {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 5px;
}

.spacer {
  flex-grow: 1;
}

.usacard-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #E6E6E6;
  padding: 10px 15px 2px 15px;
  border: 5px solid #E6E6E6;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	text-transform: none;
}

.usacard-body2 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #F6F6F6;
  padding: 10px 15px 2px 15px;
  border: 5px solid #F6F6F6;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	text-transform: none;
}

.usa-source {
  font-family: 'PBSSans', sans-serif;
  font-weight: 400;
  font-size: .825rem;  
  font-style: normal;       
  color: #2e2e2e;   
  margin-top: 1em;
}

.usa-source::before {  content: "[ "; }
.usa-source::after {  content: " ]"; }

.usarow-gap {
  margin-left: -15px;
  margin-right: -15px;
}

.usarow-gap > .usacol {
  padding-left: 15px;
  padding-right: 15px;
}
/*
6. FOOTER
======================================================
====================================================== */



/* =============================== */
/*        FOOTER TYPOGRAPHY        */
/* =============================== */



/*        MOBILE FOOTER NAV        */
/* =============================== */



/* =============================== */
/*        FOOTER LAYOUT FIXES      */
/* =============================== */


.link-separator {
  margin: 0 0.25rem;
  color: #FFFFFF;
}

/* Optional container spacing */
.usa-base {
  padding: clamp(50px, 8vw, 100px) 0;
}

/* Adjust mobile spacing */
@media (max-width: 767.98px) {
  .usa-base {
    padding: clamp(30px, 6vw, 70px) 0;
  }
}

.band-super .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
  position: relative;
  z-index: 1;
}


/*
7. HELPER CLASSES / UTILITIES
======================================================
====================================================== */
.row.equalize {
  align-items: stretch; /* columns align to tallest sibling */
}

.grow {
  transition: all .5s ease-in-out;
}
.grow:hover {
  transform: scale(0.65);
} /* ===== inside div === */ imgzoom img {
  opacity: 1;
  -webkit-transition: .4s ease-in-out;
  -webkit-transform: scale(1);
  transition: .4s ease-in-out;
}
imgzoom:hover img { /**** DEACTIVE opacity: .7; OR -webkit-filter: brightness(60%);****/ transform: scale(1.1);
}
.imgzoom-wrapper {
  overflow: hidden;
} /* ===== inside ad or logo === */ imgzoom-ad img {
  opacity: 1;
  -webkit-transition: .4s ease-in-out;
  -webkit-transform: scale(1);
  transition: .4s ease-in-out;
}
imgzoom-ad:hover img { /**** DEACTIVE opacity: .7; OR -webkit-filter: brightness(60%);****/ transform: scale(1.05);
}



/*
8. FONTS / CUSTOM TYPEFACES
======================================================
====================================================== */


@font-face {
  font-family: "YankeeLight";
  src: url('../webFonts/YankeeLight/font.woff2') format('woff2'),
       url('../webFonts/YankeeLight/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeLightItalic";
  src: url('../webFonts/YankeeLightItalic/font.woff2') format('woff2'),
       url('../webFonts/YankeeLightItalic/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeRegular";
  src: url('../webFonts/YankeeRegular/font.woff2') format('woff2'),
       url('../webFonts/YankeeRegular/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeRegularItalic";
  src: url('../webFonts/YankeeRegularItalic/font.woff2') format('woff2'),
       url('../webFonts/YankeeRegularItalic/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeMedium";
  src: url('../webFonts/YankeeMedium/font.woff2') format('woff2'),
       url('../webFonts/YankeeMedium/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeBold";
  src: url('../webFonts/YankeeBold/font.woff2') format('woff2'),
       url('../webFonts/YankeeBold/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeBoldItalic";
  src: url('../webFonts/YankeeBoldItalic/font.woff2') format('woff2'),
       url('../webFonts/YankeeBoldItalic/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeBlack";
  src: url('../webFonts/YankeeBlack/font.woff2') format('woff2'),
       url('../webFonts/YankeeBlack/font.woff') format('woff');
}

@font-face {
  font-family: "YankeeBlackItalic";
  src: url('../webFonts/YankeeBlackItalic/font.woff2') format('woff2'),
       url('../webFonts/YankeeBlackItalic/font.woff') format('woff');
}




/*
9. MISC / ONE OFFS
======================================================
====================================================== */




/*
10. ACCESSIBILIY
======================================================
====================================================== */
/* Remove default outlines only on mouse click, not keyboard nav */
:focus {
  outline: 2px solid #5a9bd4; /* neutral soft blue focus */
  outline-offset: 3px;
}

/* Optional: make focus rings appear only for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Add a nice transition for smooth focus appearance */
a, button, input, textarea {
  transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}

/* Optional subtle enhancement */
a:focus-visible,
button:focus-visible {
  box-shadow: 0 0 0 3px rgba(90, 155, 212, 0.35); /* soft glow */
  border-radius: 4px;
}

/* 
11. RESPONSIVE / MEDIA QUERIES
======================================================
====================================================== */


/* 
12. Buttons
======================================================
====================================================== */

	
[class^="usa-button-"] a {
  font-family: "YankeeMedium", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  margin: 15px 25px 20px 0;
  padding: 0.5em 2em;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.6s ease;
}

/* Variants */
.usa-button-light a { border: 1px solid #fff; color: #fff; background: rgba(0,0,0,0.2); }
.usa-button-light a:hover { background: rgba(255,255,255,0.65); color: #000; border-color: #000; }

.usa-button-dark a { border: 1px solid #000; color: #000; background: rgba(0,0,0,0.15); }
.usa-button-dark a:hover { background: #000; color: #fff; }

.usa-button-red a { background: #D7263D; border-color: #D7263D; color: #fff; }
.usa-button-blue a { background: #007BFF; border-color: #007BFF; color: #fff; }
.usa-button-dkblue a { background: #262561; border-color: #262561; color: #fff; }

.usa-button-red a:hover,
.usa-button-blue a:hover,
.usa-button-dkblue a:hover {
  background: #fff;
  color: inherit;
}

/* White Button */
.usa-button-white a {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-family: 'PBSSans-Bold', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
  padding: 0.75em 1.5em;
  border-radius: 5px;
}
.usa-button-white a:hover { background: #000; color: #fff; border-color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
/* 
13. Google SEARCH
======================================================
====================================================== */


.gs-title {
  font-size: 24px !important;
  font-family: "YankeeBold", "Helvetica Neue", Arial, sans-serif;
	font-optical-sizing: auto !important;
  /* font-family: 'Roboto', sans-serif !important; */
  font-weight: 700 !important; 
  margin-top: 10px;
	color: aqua;
  /** display: none !important; **/
	
}	


.gs-snippet {
  font-size: 18px !important;
	line-height: 1.375 !important;
  font-family: "YankeeMedium", "Helvetica Neue", Arial, sans-serif;
	font-optical-sizing: auto !important;
  /* font-family: 'Roboto', sans-serif !important; */
  font-weight: 600 !important; 
	
}

.gs-url {
  font-size: 50px !important;
  font-family: "YankeeMedium", "Helvetica Neue", Arial, sans-serif;
	font-optical-sizing: auto !important;
  /* font-family: 'Roboto', sans-serif !important; */
  font-weight: 400 !important; 
  color: #151515 !important;
	
}
/**
.gs-webResult {
    border-top: 5px solid #FFCC00;
    padding: 1em;
  }
**/

.gsc-control-cse {
	background-color: transparent !important;

}
