@charset "utf-8";

@font-face {
	font-family: 'Cinzel';
	src: url("../fonts/CinzelDecorative-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'Century Gothic';
	src: url("../fonts/centurygothic.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'Avenir';
	src: url("../fonts/AvenirLTProLight.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist';
  src: url("../fonts/Urbanist-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist Bold';
  src: url("../fonts/Urbanist-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-Light.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-LightItalic.otf") format("opentype");
	font-style: italic;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Carla Sans';
  src: url("../fonts/CarlaSansSemibold.ttf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}
@font-face {
  font-family: 'Heavitas';
  src: url("../fonts/Heavitas.ttf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}
@font-face {
  font-family: 'Addington';
  src: url("../fonts/AddingtonCF-Thin.otf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}

/**** Global CSS ****/
body, html {
  scroll-behavior: smooth;
	margin: 0;
	box-sizing: border-box;
	font: 300 18px/1.8 "Avenir", sans-serif;
	overflow-x: hidden;
	color: rgb(252, 244, 174);
	background: rgb(255,255,255);
}

nav {
  width: 100vw;
}

/**************** Nav-menu (DEFAULT NAV BAR) ********/
/* header {
	display: inline; 
} */

.fa.fa-caret-down {
  display: none;
}
.navbar a i.fas {
  font-size: 25px;
  color: rgb(240, 240, 225);
  transition: color 0.1s ease;
}
.navbar a i.fas:hover {
  color: yellow;
}
/*************** Dropdown menu ******/
 /* Navbar container */
.navbar {
	z-index: 102;
	display: flex;
	width: 100%;
	background-color: rgba(53,53,53,1);
	font-family: 'Century Gothic';
	/* z-index: 9; */
	height: 100px;
	position: fixed;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: background-color 0.5s ease-in-out;
}
.navbar.nav-menu-alt {
  background-color: white;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 10px 6px;
  text-decoration: none;
  font-size: 17px;
  transition: font-size 0.1s ease-in-out;
}
.navbar a.btn.secondary {
  padding: 10px 20px;
}
.logo {
	position: absolute;
	top:5px;
	left:0;
	z-index:103;
	margin-top: 25px;
	margin-bottom: 10px;
	margin-left: 50px;
	width: 130px;
	/* box-shadow: 1px 3px 5px rgba(30,30,30,0.8); */
	transition: all 0.4s ease-in-out;
}
.logo-nav-2 {
  width:85px;
  margin-top: 10px;
}
.logo img,
.logo-nav-2 img {
	width: 100%;
	z-index: 103;
}
.shrink {
	width: 90px;
	position: fixed;
	top: 0;
	left: 0;
}
.shrink-navbar {
	height: 60px;
	background-color: rgba(35,35,35,1);
	top: 0;
}
.shrink-nav-text {
	font-size: 12px;
}
.fade-out {
  opacity: 0;
  pointer-events: none; /* Prevents interaction */
}
.small-logo {
  z-index: 104;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 130px; /* Adjust as needed */
  opacity: 0;
  margin-top: 16px;
  margin-left: 50px;
  transition: opacity 0.3s ease-in-out;
}
.show {
  opacity: 1;
  z-index: 20;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
/*  padding-left: 15%;*/
}
.nav-links .dropdown {
	display: inline;
}
.nav-links .dropdown a {
	text-decoration: none;
	/* color: rgb(179, 255, 255); */
}
/* Hide the menu toggle button on large screens */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  border-radius: 1px;
  outline: none;
  color: white;
  padding: 2px 15px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
/*  background-color: transparent;*/
  transition: all 0.3s ease-in-out;
}
/* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn,
.dropdown:active .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:active .dropdown-content {
	visibility: visible;
	background-color: white;
}
/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 650ms ease;
}
/* grey to white on hover of dropdown items */
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown-content a:active {
	background-color: white;
}
.navbar .nav-links .dropdown button:first-child {
	border-left: 2px solid grey;
}	
.navbar .dropbtn a {
  font-family: Carla Sans;
}
.cta-buttons  {
  right: 50px;
  position: absolute;
}
.navbar .cta-buttons ul:nth-child(n+2) li {
  border:1px solid rgb(246,179,0);
  border-radius: 5px;
}
.navbar .cta-buttons .search-icon li {
  border: none;
}
.menu .btn{
  background-color: rgb(1, 170, 248);
  transition: 0.2s all ease-in-out;
}
.menu .btn:hover {
  background-color: rgb(252, 182, 51);
}
.btn-slide {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    border: 2px solid #00ffcc;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .btn-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00ffcc;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-slide:hover::before {
    transform: translateX(0);
  }
  .btn-slide:hover {
    color: black;
  }
/************** Nav-menu-alt (NAT GEO STYLE) *****************/
div.nav-menu-alt .nav-links .dropdown button:first-child {
	border-left: 3px solid rgb(250, 230, 51);
}
.navbar.nav-menu-alt .dropdown:hover .dropbtn,
.navbar.nav-menu-alt .dropdown:focus-within .dropbtn,
.navbar.nav-menu-alt .dropdown:active .dropbtn {
  background-color: rgb(252, 239, 56);
}
.navbar.nav-menu-alt .dropdown:hover .dropdown-content,
.navbar.nav-menu-alt .dropdown:focus-within .dropdown-content,
.navbar.nav-menu-alt .dropdown:active .dropdown-content {
	visibility: visible;
	background-color: white;
  border-left: solid rgb(250, 236, 39);
  border-right: solid rgb(250, 236, 39);
}
div.nav-menu-alt a {
  color: rgba(20,20,20,1);
}
div.nav-menu-alt a.btn.secondary {
  background-color: transparent;
  padding: 0;
}
div.nav-menu-alt a i.fas {
  font-size: 25px;
  color: rgb(124, 124, 124);
}
div.nav-menu-alt .menu .btn {
  background-color: transparrent;
}
div.nav-menu-alt .cta-buttons ul:nth-child(n+2) li {
  border: initial;
  border-radius: iniitial;
}
div.nav-menu-alt .cta-buttons {
  height: 100%;
}
div.nav-menu-alt .btn-slide {
  background: rgb(250, 218, 39);
  border: transparent;
  transition: all 0.3s ease-in-out;
}
div.nav-menu-alt .btn-slide::before {
  background: rgb(39, 250, 134);
}
div.nav-menu-alt .btn-slide:hover {
  background: rgb(15,14,14);
  /* border: 5px solid rgb(250, 218, 39); */
}
div.nav-menu-alt .btn-slide:hover a {
  color: rgba(244,244,244,1);
}
/******************* Nav-menu-alt-2 (SOUND CON STYLE ***************/
body#nav-menu-sound-version {
	background-color: #4a9b9f;
}
#site-header {
	z-index: 10;
	background-color: rgba(255,255,255,0);
	height: 100px;
	width: 100%;
	transition: all 0.3s ease-in;
	position: absolute;
	padding: 0 25px;
  display: flex;
}
.site-title {
	float:left;
	width: 500px;
	padding: 25px 0;
}
html:not([data-scroll="0"]) .site-title {
	padding:
  15px 0;
  }
#site-header.fade-and-shrink-hdr {
	background-color: rgb(8,18,74);
	position: fixed !important;
	top: 0 !important;
	height: 80px;
}
.site-title h1 {
	letter-spacing: 2px;
	font-size: 25px;
	font-family: 'Urbanist';
  color: rgba(253,253,253,1);
}
.site-title h1.shrink-site-title-h1 {
	font-size: 20px;
}
.site-title a {
	color: #fff;
	text-decoration: none;
  transition: color 0.2s ease-in-out;
  text-shadow: 0 0 2px grey;
}
.site-title h1.shrink-site-title-h1 a {
  color: rgba(198, 233, 239, 0.9);
}
.site-title p {
	display: none;
}
.menu-item a span {
	text-transform: uppercase;
}
.menu-item {
	background-color: rgba(255,255,255,0);
	transition: all 0.3s ease-in-out;
}
.menu-item:hover,
.menu-item:focus-within,
.menu-item:active {
	background-color: rgba(251,36,30,0.7);
	border-radius: 1px;
}
.primary-nav {
	display: flex;
	font-family: 'Urbanist';
	font-size: 18.5px;
	font-weight: 200;
	line-height: 1.5;
	letter-spacing: 1.5px;
	padding: 15px 0;
	padding-left: 20px;
	text-decoration: none;
  text-shadow: 0 0 2px rgba(50,50,50,0.9);
	color: beige
}
.primary-nav ul {
	touch-action: pan-y;
	list-style-type: none;
	list-style-image: none;
	}
.primary-nav ul li {
	display: inline-block;
	padding: 15px 25px 15px 25px;
}
.primary-nav ul li a {
/*	color: #fff;*/
	display: block;
	text-decoration: none;
	color: beige;
}

#header-button {
	float: right;
	height: 56px;
	margin-right: 50px;
	margin-top: 5px;
	text-transform: uppercase;
	position: absolute;
	right: 50px;
}
#header-button .header-button {
	border-radius: 5px;
	background: rgb(246,179,0);
	padding: 9px 10px;
	background: linear-gradient(131deg, 
		rgba(246,179,0,0.9) 11%, 
		rgba(246,222,75,0.9) 25%, 
		rgba(246,222,75,0.9) 87%, 
		rgba(246,179,0,1) 100%);
	border:2px solid white;
	box-shadow: 1px -1px 14px 5px rgba(30,30,30,0.5);
	transition: all 0.3s ease-in-out;
}
#header-button .header-button:hover,
#header-button .header-button:focus-within,
#header-button .header-button:active {
	background: linear-gradient(320deg, 
	rgba(246,222,75,0.9) 11%, 
	rgba(246,222,75,0.9) 25%, 
	rgba(246,179,0,0.9) 87%, 
	rgba(190,130,0,1) 100%);
	border: 2.5px solid rgba(3,110,130,1);
}
.header-button a {
	color: #fff;
	padding: 6px 20px;
	font-family: 'Urbanist Bold';
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2.5px;
}
/* Hide the menu toggle button on large screens */
.menu-toggle {
	display: none;
	font-size: 24px;
	color: white;
	cursor: pointer;
  }
/************* CAROUSEL SLIDESHOW PAGE *************/
#cta-headline {
  position: fixed;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 2px rgba(30,30,30,0.9);
  transition: all 0.2s ease-in-out;
}      
#cta-headline h1 {
  font-size: 50px;
  font-family: 'Heavitas';
}
#cta-headline h2 {
  font-family: 'Signifier';
  font-style: italic;
  font-size: 30px;
  width: 75%;
  text-align: center;
  margin: 0 auto;
  color: rgb(80,80,80);
  background-color: rgba(187,252,246,0.8);
  padding: 20px 40px;
  border-radius: 2px;
  box-shadow: 0 0 5px 1px rgba(200,200,200,0.5);
  text-shadow: initial;
}
#cta-headline.undock-cta {
  position: sticky;
  width: 960px;
}
#slide-test {
  height: 843px;
}
.part-one-slideshow-container {
        max-width: 100vw;
        position: sticky;
        margin: auto;
        height: 843px;
        width: 100%;
      }
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 20px;
  padding: 8px 12px;
  /*  position: absolute;*/
  bottom: 8px;
  width: 100%;
  text-align: center;
  margin-top: -45px;
  display: none;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  display: none;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}



/******************** BLOCK ITEM #3 *******************/
.block-container-3 {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 220px;
	background-color: rgba(83,83,84,1);
}

.gallery {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	grid-auto-flow: dense;
	height: 100%;
	padding: 110px 5px 50px 5px; 
	/* max-width: 900px; */
}
.gallery > * {
	flex: 1 1 200px;
	position: relative;
	/* use this to make an in-frame zoom on hover */
/*	overflow: hidden;*/
}
/* .gallery img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 2px solid rgb(150,150,150);
} */
.gallery img {
	position: relative;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
 .gallery li {
	position: relative;
    break-inside: avoid;
    margin-bottom: 6px; /* matches your column-gap for consistent spacing */
}
.gallery li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0);
	/* Initially transparent */
	transition: background-color 0.5s ease;
	/* Add a smooth transition effect */
	pointer-events: none;
			/* Allow interactions with elements beneath the overlay */
}
.gallery li:hover::before {
	z-index: 101; 
	background-color: rgba(0, 0, 255, 0.25);
    transition: all 0.8s ease;
}
.gallery li img {
	border: 2px solid rgba(150,150,150,0.4);
}
.gallery li:hover img {
	/* z-index: 100; */
	/* scale: 1.1; */
	border: 2px solid rgb(228, 82, 82);
    transition: all 0.8s ease;
}
.landscape {
	flex: 1 1 400px;
	grid-column: auto / span 2;
}
.grid.mosaic {
	grid-template-columns: repeat(autofill, minmax(900px, 1fr));
	background-color: unset;
	margin-left: 100px;
}
.gallery-info {
	list-style-type: none;
}
.gallery-info {
	list-style-type: none;
}


html {
  box-sizing: border-box;
}

body {
  background-color: #32425a;
  color: #7e7e7e;
  font-family: Source Sans Pro, sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}
body#body-navbar-2 {
  background-color: rgb(15,15,13);
}

/******* @layer Queries ************/
@layer components {
  .logo-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .map-container {
    margin: 0;
  }
  .map-title { 
	grid-area: map-title;
	max-width: 100%;
  color: blanchedalmond;
  font-family: 'Signifier';
  text-align: center;
  position: absolute;
  top: 130px;
  transition: 0.2s all ease-in-out;
	}

/********* @Media Queries ************/

/*** Min Widths: ***/

/**** Max Widths ****/
@media screen and (max-width: 1275px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #333;
		padding: 25px 0;
		text-align: center;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		pointer-events: none;
		min-height: 100vh;
	  }
	.nav-links.active {
		display:flex !important;
		opacity: 1;
		pointer-events: auto;
	}
  .nav-links .dropdown {
		display: block;
		text-align: center;
		padding: 10px 0;
	  }
	.dropdown-content {
		width: 100%;
	}
	
	.dropdown:hover .dropdown-content,
	.dropdown:focus-within .dropdown-content,
	.dropdown:active .dropdown-content {
		position: relative;
	}
	.dropdown-content a {
		text-align: center;
	}
  .menu-toggle {
		display: block;
		font-size: 42px;
	  	z-index: 11;
	  }
  #districts-polygon-map {
    width: 1200px;
    height: 1100px;
  }
}
@media screen and (max-width: 1150px) {
	.mobile-pic-fix {
		display: block;
	}
}
@media screen and (max-width: 1050px) {
	.small-logo {
		width: 100px;
		left: 0;
	}
		.block {
		width: 90vw;
	}
}

@media screen and (max-width: 950px) {
	nav div .logo {
		position: fixed;
		z-index: 103;
		width: 130px;
		margin: auto;
		text-align: center;
		left: 0;
		right: 0;
	}
  .logo.shrink {
    width: 90px;
  }
	.logo-container,
	.logo-alt-container{
		width: 100%;
	}
	#menu-toggle span {
		position: absolute;
		right: 50px;
		transition: color 500ms ease;
	}
	#menu-toggle span:hover {
		color:red;
	}
	.small-logo {
		left: 0;
		position: fixed;
		margin: 0 auto;
		right: 0;
		top: 25px;
	}
}
@media screen and (max-width: 800px) {
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
}
@media all and (max-width: 800px) {
  #district-info { width: 40%; }
}
@media all and (max-width: 750px) {
  #district-info { 
    width: 100%; 
    position: static; 
    background: none;
  }
#district-info.show p { 
  color: #000 !important; 
  margin-bottom: 2rem; 
  }
}
@media screen and (max-width: 650px) {
	 .block {
		width: 100vw;
	 }
	 .title-small {
		grid-area: title-small;
		text-align: center;
	 }
}
@media screen and (max-width: 600px) {
	nav div .logo {
		width: 140px;
		z-index: 103;
	}

}
@media screen and (max-width: 500px) {
	nav div .logo {
		top: 42px;
		z-index: 103;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
	}
}
@media screen and (max-width: 350px) {
	nav div .logo {
		width: 200px;
		z-index: 103;
	}
}

/********** @media queries for Nav Bar Sound *************/
@media screen and (max-width: 1560px) {
    #header-button {
      top: 60px;
    }

}
@media screen and (max-width: 1475px) {
	.primary-nav {
	font-size: 15px;
	}
}


@media screen and (max-width: 1412px) {
	.primary-nav ul li {
		padding: 25px 18px;
	  }
	.primary-nav {
		padding: 5px 0 0 0;
	}
	#header-button {
		margin-right: 0;
		right: 15px;
		top: 90px;
		left: 20px;
	}
}

@media screen and (max-width: 1300px) {
            #site-header {
		height: 170px;
		}
}

@media screen and (max-width: 1200px) {

	#primary-nav .nav-links {
		display: none;
	  }
	.menu-toggle {
		display: block;
		font-size: 42px;
	  	z-index: 11;
		position: fixed;
		right: 10px;
		top: 10px;
	  }
	#primary-nav .nav-links {
		display: none;
	  }
	  .nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #333;
		padding: 25px 0;
		text-align: center;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		pointer-events: none;
		min-height: 100vh;
	  }
	.nav-links.active {
		display:flex !important;
		opacity: 1;
		pointer-events: auto;
		padding-top: 85px;
	}
  .nav-links ul li {
		display: block;
		text-align: center;
		padding: 10px 0;
	  }
	.dropdown-content {
		width: 100%;
	}
	
	.dropdown:hover .dropdown-content,
	.dropdown:focus-within .dropdown-content,
	.dropdown:active .dropdown-content {
		position: relative;
	}
	.dropdown-content a {
		text-align: center;
	}
}

@media screen and (max-width: 860px) {
	#header-button {
		min-width: 200px;
	}
	#header-button a {
		padding: 5px;
	}
}

@media screen and (max-width: 600px) {
	.menu-toggle {
		top: 83px;
		/* color: rgba(20,20,20,1); */
	}
	.site-title h1 {
		font-size: 22px;
		text-align: center;
	}
	.site-title {
		width: 350px;
	}
	.contact-us-title {
		font-size: 25px;
	}
}

