/* === GLOBAL STYLES === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Nunito", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	color: #2e2e2e;
	background-color: #fafafa;
	line-height: 1.6;
}

.container {
	max-width: 1330px;
	margin: auto;
}

button {
	font-family: "Nunito", sans-serif;
}

/* === NAVIGATION === */
.nav-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f5f8fa;
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-bar-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: #2b4c6f;
}

.nav-bar-contact-list,
.nav-bar-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.nav-bar-contact-list li,
.nav-bar-links li {
	font-size: 0.95rem;
	color: #2b4c6f;
	cursor: pointer;
	transition: color 0.3s ease;
	margin: 5px;
}

.nav-bar-links li {
	padding: 20px;
	padding-bottom: 1px;
}

.contact-anchor {
	color: #2b4c6f;
	text-decoration: none;
}

.nav-link {
	color: #2b4c6f;
	text-decoration: none;
}

.nav-bar-links li:hover {
	color: #2b4c6f;
	border-bottom: 1px solid #2b4c6f;
}

.location-link {
	margin-left: 0px !important;
}

/* === HERO SECTION === */
.hero-section {
	background: linear-gradient(rgba(43, 76, 111, 0.33),
			rgba(43, 76, 111, 0.33)),
		url("/assets/hero-bg.jpg") center/cover no-repeat;
	color: white;
	text-align: center;
	padding: 8rem 2rem;
	min-height: 80vh;
	border-radius: 10px;
	margin-top: 5vh;
}

.hero-content {
	max-width: 700px;
	margin: 0 auto;
}

.tagline {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.sub-tagline {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.contact-me-btn {
	background-color: #ffffff;
	color: #2b4c6f;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-me-btn:hover {
	background-color: #e1eaf1;
}

/* === HIGHLIGHTS === */
.highlights {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 4rem 1rem 0 1rem;
	color: #2b4c6f;
}

.highlight-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.highlight-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
	filter: invert(27%) sepia(58%) saturate(403%) hue-rotate(169deg) brightness(94%) contrast(102%);
}

/* === ABOUT SECTION === */
.about {
	text-align: center;
	padding: 5rem 2rem;
	background-color: #f9f9f9;
}

.about-header {
	font-size: 2rem;
	color: #2b4c6f;
	margin-bottom: 1.5rem;
}

.about-content {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.headshot-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.headshot {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.headshot-caption {
	font-weight: 600;
	color: #2b4c6f;
}

.headshot-subcaption {
	font-size: 0.9rem;
	color: #777;
}

/* === SERVICES SECTION === */
.services {
	padding: 5rem 2rem;
	background-color: #2B4C6F;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 80%;
	margin: auto;
}

.services-container {
	min-width: 300px;
	padding: 5px;
	flex: 1 1 0px;
}

.approaches-container {
	padding: 5px;
	flex: 1 1 0px;
}

.services-header {
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
	margin-bottom: 1.5rem;
}

.services-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
	list-style: none;
}

.service-tag {
	background: rgba(255, 255, 255, 0.1);
	color: #F4F4F2;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 500;
}

.approaches-header {
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
}

.approaches-list {
	list-style: none;
	max-width: 600px;
	margin: 0 auto 3rem;
	text-align: left;
	line-height: 1.8;
	color: #F4F4F2;
}

/* === LOCATION === */

.location {
	min-height: 50vh;
	background-color: #F4F4F2;
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 30px;
}

.location-header {
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .3);
}

.maps-flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.maps-container {
	margin: 10px;
}

.location-caption {
	margin: 10px;
}

/* === ARTICLESE === */

.articles {
	background-color: #2B4C6F;
	margin: 30px 0;
	padding: 60px;
	border-radius: 10px;
}

.article-header-text {
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
}

.article-header {
	display: flex;
	align-items: center;
}

.svg-icon {
	height: 50px;
	filter: invert(100%) sepia(93%) saturate(29%) hue-rotate(96deg) brightness(106%) contrast(107%);
	opacity: 0.7;
}

.articles-content {
	display: flex;
	flex-wrap: wrap;
}

.articles-list {
	list-style: none;
}

.articles-link {
	color: #F4F4F2;
	text-decoration: none;
	display: flex;
	align-items: center;

}
.articles-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 500;
	width: fit-content;
	margin: 10px;
}

.svg-link-icon {
	height: 20px;
	opacity: 0.7;
	margin-right: 10px;
	filter: invert(100%) sepia(93%) saturate(29%) hue-rotate(96deg) brightness(106%) contrast(107%);

}

/* === FOOTER === */
.footer {
	background-color: #2b4c6f;
	color: #fff;
	padding: 3rem 2rem;
}

.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.footer-name {
	font-weight: 700;
	font-size: 1.2rem;
}

.footer-contact p,
.footer-location {
	font-size: 0.9rem;
	color: #dbe5f1;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.nav-bar {
		flex-direction: column;
		padding: 10px;
	}

	.nav-bar-name {
		text-align: center;
	}
	

	.nav-bar-links {
		/* flex-wrap: wrap;
		justify-content: center; */
		display: none;
	}

	.highlights {
		flex-direction: column;
	}

	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.services-container {
		width: 100%;
	}
}

/* ===== Contact Form Styles ===== */
#contact-form {
  max-width: 480px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#contact-form .form-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}

/* Group spacing */
#contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

/* Labels */
#contact-form .form-label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #444;
}

/* Inputs and textarea */
#contact-form .form-input,
#contact-form .form-textarea {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-form .form-input:focus,
#contact-form .form-textarea:focus {
  outline: none;
  border-color: #2563eb; /* Blue accent */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Textarea specifics */
#contact-form .form-textarea {
  resize: none;
  min-height: 120px;
}

/* Submit button */
#contact-form .form-button {
  width: 100%;
  background-color: #2b4c6f;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

#contact-form .form-button:hover {
  background-color: #415e7e;
}

#contact-form .form-button:active {
  transform: scale(0.98);
}

/* Responsive tweak */
@media (max-width: 480px) {
  #contact-form {
    padding: 1.5rem;
  }
}



.anchor-button {
	background-color: #ffffff;
	color: #2b4c6f;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.anchor-button:hover {
	background-color: #e1eaf1;
}
