@charset "utf-8";

@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: '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: '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 ****/

:root {
	--dark-blue-cfc: rgb(0, 0, 61);
	--baby-blue-cfc: rgb(0, 174, 239);
	--bbq-orange-cfc: rgb(241, 91, 39);
	--text-light-orange: rgb(247, 148, 33);
	--text-bbq-brown: rgb(60,34,6);
	--text-passion-blue: rgb(118, 154, 168);
	--text-menu-bar-yellow: rgb(255,246,211);
}

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

/**************** Nav-menu (DEFAULT NAV BAR) ********/
/* header {
	display: inline; 
} */
nav {
  width: 100vw;
}
.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-container {
	height: 400px;
	position: relative;
	z-index: 102;
 }
.navbar {
	display: flex;
	width: 100%;
	background-color: var(--dark-blue-cfc);
	font-family: 'Century Gothic';
	height: 150px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 102;
	transition: background-color 0.5s ease-in-out;
}
.navbar-white-space {
	height: 100px;
	width: 100vw;
	background-color: white;
	top: 150px;
	position: fixed;
}
.navbar-white-space.give-shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.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: 1.5em;
  text-shadow: 0 0 1px var(--bbq-orange-cfc);
  transition: font-size 0.1s ease-in-out;
}
.navbar a.btn.secondary {
  padding: 10px 20px;
}
.logo {
	position: absolute;
	top: 25px;
	left: 50px;
	z-index:103;
	margin-bottom: 10px;
	width: 45vw;
	/* 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: 30vw;
	position: fixed;
	top: 30px;
	left: 25px;
}
.shrink-navbar {
	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: 55vw; /* 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: 45px;
  margin-right:12vw;
}
.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: 28px;
  color: white;
  cursor: pointer;
  padding: 15px; /* Increase clickable area */
  min-width: 44px; /* Apple's recommended touch target */
  min-height: 44px;
  z-index:120;
  transition: all 0.2s ease-in-out;
}
.menu-toggle:hover, 
.menu-toggle:focus-within,
.menu-toggle:active {
	color: red;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: 'Heavitas';
}
/* Dropdown button */
.dropdown .dropbtn {
  display: inline-block;
  border: none;
  border-radius: 1px;
  outline: none;
  color: var(--text-menu-bar-yellow);
  text-shadow: 0 0 1px black;
  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: var(--baby-blue-cfc);io
  color: var(--dark-blue-cfc);
}

.navbar .dropbtn a:hover,
.navbar .dropbtn a:focus-within,
.navbar .dropbtn a:active {
	color: var(--dark-blue-cfc);
}

/* 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: 'Heavitas';
  color: var(--text-light-orange);
}
.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;
  }
/************* 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 #1 *******************/
.title-large {
	text-align: center;
	font-family: 'Heavitas';
	font-size: 2.9rem;
	padding-top: 100px;
	padding-bottom: 50px;
	color: var(--bbq-orange-cfc);
	text-shadow: 0 0 1px black;
}
.full-width-block {
	width: 100%;
	margin: 0 auto;
	background-color: var(--bbq-orange-cfc);
}
#cta-block {
	position: relative;
	z-index: 1;
	margin-top: 0;
	padding-top: 50px;
	padding-bottom: 5px;
	transition: transform 0.1s ease-out;
}
#cta-block .flex {
	align-items: flex-end;
	align-items: start;
	font-size: 1.4rem;
}
#cta-block .flex h2 {
	font-family: 'Heavitas';
	text-align: center;
	padding-top: 30px;
  	padding-right: 20px;
	text-shadow: 0 0 1px rgb(30, 30, 30);
}
#cta-block .flex .cta-tagline {
	color: var(--text-bbq-brown);
	font-weight: 800;
	font-style: italic;
	font-family: 'Signifier';
	text-align: center;
	padding-right: 20px;
}
#cta-block .flex div {
	flex: 50%;
}
#cta-block .img-portrait {
	width: 100%; /* Make it fill the container */
	height: auto; /* Maintain aspect ratio */
	border-radius: 2px;
	box-shadow: 5px 5px 10px 2px rgba(30, 30, 30,0.4);
	display: block; /* Remove any inline spacing */
	max-width: 500px;
}

#cta-block .grid .item-half img {
	width: 100%;
	aspect-ratio: 1 / 1; /* Forces perfect square */
	object-fit: cover; /* Crops image to fill square */
	object-position: center; /* Centers the image */
}
#cta-block .grid {
	gap: 0;
	margin-top: 20px;
}
.cta-sidecar {
	flex: 50%;
	z-index: 3;
	flex-shrink: 0;
	min-width: 300px;
	max-width: 400px;
}
#about-section {
	margin-top: 70px;
	color: var(--text-bbq-brown);
	font-size: 1.2rem;
	font-weight: 800;
	padding-bottom: 200px;
}
#about-section .title-large {
	color: var(--text-bbq-brown);
	padding-top: 0;
}
#menu-dropdown-section {
	background-color: rgba(255,255,255,1);
}
#menu-dropdown-section .title-large {
	color: var(--bbq-orange-cfc);
}
#menu-dropdown-section #menu-items {
	color: rgba(50,50,50,1);
	gap: 50px;
}
#menu-dropdown-section #menu-items .card {
	position: relative;
	display: flex;
	flex: 0 0 calc(50% - 25px); /* 50% minus half the gap */
	max-width: calc(50% - 25px);
	min-height: 120px; /* Changed from fixed height */
	height: auto; /* Allow it to grow */
	align-items: flex-start;
	flex-direction: column;
	cursor: pointer;
}
#menu-dropdown-section #menu-items .card.expanded {
	flex: 0 0 100%;
	max-width: 100%;
}
#menu-dropdown-section #menu-items div p.bio-expand-btn {
  cursor: pointer;
}
#menu-dropdown-section #menu-items .bio-full {
	display: none; /* Initially hidden */
	/* padding: 20px 90px 20px 90px; */
	background-color: white;
	color: rgba(10,10,10,1);
	font-weight: 400;
	font-size: 1rem;
	width: 100%;
	font-family: 'Avenir';
	box-sizing: border-box;
}
#menu-dropdown-section #menu-items div {
	background-color: var(--bbq-orange-cfc);
	min-height: 70px;
	width: 100%;
	position: relative;
}
#menu-dropdown-section #menu-items div p {
	font-weight: 800;
	font-size: 1.3rem;
	color: rgba(10,10,10,1);
	font-family: 'heavitas';
	padding-top: 40px;
	padding-left: 50px;
	font-family: 'Avenir';
}
#menu-dropdown-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.fa-solid {
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.fa-solid.expanded {
  transform: rotate(180deg); /* Rotate arrow when expanded */
}
#contact-section {
	margin-top: 200px;
}
#contact-section div {
	margin-top: 100px;
}
#contact-section h3 {
	text-align: center;
	font-size: 1.9em;
	color: var(--text-passion-blue);
	font-family: 'Heavitas';
}
#contact-section h3 .underline {
	text-decoration: underline solid orange 4px;
}
#contact-section h3 span {
	color: var(--bbq-orange-cfc);
}
#contact-section .flex div {
	flex: 24%;
	max-width: 25%;
}
#contact-section .flex div img {
	width: 100%;
	aspect-ratio: 1 / 1; /* Forces perfect square */
	object-fit: cover; /* Crops image to fill square */
	object-position: center; /* Centers the image */
}
.line-break {
	height: 4px;
	width: 40vw;
	margin-left: 30vw;
	margin-top: 25px;
	background: #f5f2f2;
	background: linear-gradient(148deg,rgb(245, 242, 242) 0%, rgb(224, 224, 224) 99%);
	border-radius: 4px;
}
#contact-section #contact-info {
	text-align: center;
}
#contact-section #contact-info .phone-number {
	font-family: 'Avenir';
	font-weight: 800;
	font-size: 1.9rem;
	color: rgb(80,80,80);
	margin-bottom: 12px;
}
#contact-section #contact-info .phone-number span a {
	color: rgb(80,80,80);
	font-size: 1.7rem;
	font-weight: normal;
}
#contact-section #contact-info .call-or-text {
	color: rgba(100,100,100,1);
	font-size: 1.5rem;
}
footer {
	width: 100vw;
}
.footer-envelope {
	width: 100%;
	min-height: 250px;
	margin: 0 auto;
	padding-top: 39px;
	background-color: rgb(244,244,244);
	text-align: center;
	color: var(--dark-blue-cfc);
	font-size: 1.4rem;
	font-family: 'Heavitas';
	}
.footer-envelope .tagline,
#contact-info .tagline {
	font-family: 'Avenir';
	font-size: 1.3rem;
	font-style: italic;
	color: var(--dark-blue-cfc);
}
.footer-envelope .tagline.cb {
	font-style: normal;
	font-size: 0.8rem;
}
.footer-envelope .tagline.cb a {
	color: rgba(165,165,165,1);
	text-decoration: none;
}
.footer-envelope .tagline.cb a:hover {
	color: rgb(242, 204, 143);
}
#menu-dropdown-section,
#about-section{
	scroll-margin-top: 280px;
}
#contact-info {
	scroll-margin-top: 320px;
}
.underline-accent {
	text-decoration: underline var(--text-light-orange) 2px;
}
/******* @layer Queries ************/
@layer components {
  .logo-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/********* @Media Queries ************/
/**** Max Widths ****/
@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: 0px;
		top: 10px;
	  }
	#primary-nav .nav-links {
		display: none;
	  }
	#navbar-container {
  		height: 330px;
	}
	  .nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		background-color: #020133;
		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: 225px;
	}
  .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: 1150px) {
	.mobile-pic-fix {
		display: block;
	}
	#navbar-container {
		height: 300px;
	}
}
@media screen and (max-width: 1100px) {
	#menu-dropdown-section #menu-items  {
		display: block;
	}
	#menu-dropdown-section #menu-items .card {
		display: block;
		width: 90vw;
    	max-width: 100%;
		margin: 0 30px 50px 3vw;
	}
}
@media screen and (max-width: 1075px) {
	.navbar {
		height: 125px;
	}
	.navbar-white-space {
		top: 125px;
	}
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		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;
		margin: 0 auto;
	  }
	.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;
	  }
  #districts-polygon-map {
    width: 1200px;
    height: 1100px;
  }
}
@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: 500px;
		margin: auto;
		text-align: center;
		left: 0;
		right: 0;
	}
  .logo.shrink {
    width: 450px;
  }
	.logo-container,
	.logo-alt-container{
		width: 100%;
	}
	#menu-toggle span {
		position: absolute;
		right: 30px;
		transition: color 500ms ease;
		top: 0px;
	}
	#menu-toggle span:hover {
		color:red;
	}
	.small-logo {
		left: 0;
		position: fixed;
		margin: 0 auto;
		right: 0;
		top: 25px;
	}
}
@media screen and (max-width: 900px) {
	#navbar-container {
  		height: 285px;
	}
}
@media screen and (max-width: 860px) {
	#header-button {
		min-width: 200px;
	}
	#header-button a {
		padding: 5px;
	}
}
@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) {
	nav div .logo {
		left: 0;
		right: unset;
	}
	 .block {
		width: 100vw;
	 }
	 .title-small {
		grid-area: title-small;
		text-align: center;
	 }
	#cta-block .flex {
		display: block;
	}
	.cta-sidecar {
		margin: 0 auto;
	}
	#cta-block .flex h2 {
		text-align: center;
	}
	#cta-block .flex h2 {
		padding-top: 0;
		margin-top: 0;
	}
	#cta-block .flex .cta-tagline {
		font-size: 1.1rem;
		padding: 0;
	}
	#cta-block .flex .cta-tagline {
		padding-bottom: 35px;
	}
}
@media screen and (max-width: 600px) {
	.logo.shrink {
		width: 250px;
	}
	nav div .logo {
		z-index: 103;
		top: 10px;
	}
	#navbar-container {
		height: 200px;
	}
	.navbar {
		height: 80px;
	}
	.navbar-white-space {
		top: 80px;
		height: 50px;
	}
}
@media screen and (max-width: 550px) {
	#contact-section h3 {
		font-size: 1.4rem;
	}
	#contact-section #contact-info .phone-number {
		font-size: 1.3rem;
	}
	.footer-envelope p {
		font-size: 1.2rem;
	}
	.footer-envelope .tagline {
		font-size: 1rem;
	}
	#menu-dropdown-section #menu-items div p {
		padding-left: 25px;
		padding-right: 25px;
	}
}
@media screen and (max-width: 500px) {
	header nav {
		height: 175px;
	}
	nav div .logo {
		width: 300px;
		left: 0;
		right: unset;
	}
	#menu-toggle span {
		z-index: 104;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
	}
}
@media screen and (max-width: 350px) {
	nav div .logo {
		width: 200px;
		z-index: 103;
	}
		#contact-section h3 {
		font-size: 1.2rem;
	}
}

