@import url('https://fonts.cdnfonts.com/css/satoshi');

body {
	background-color: #fefaf7;
	font-family: "Noto Serif", serif;
	font-size: 1.125rem;
	line-height: 2.25rem;
	color: #212121;
}

.entry-content a { color: #212121; font-weight: bold; }
.entry-content a:visited { color: #212121; }
.entry-content a:active { color: #212121; }

.btn  { 
	color: #fefaf7 !important;
	font-family: 'Satoshi', sans-serif;
}
.btn:visited { color: #fefaf7 !important; }
.btn:active { color: #fefaf7 !important; }

.btn i { color: #fefaf7 !important; }
.btn:hover i { color: #fefaf7 !important; }

.socials i { color: #212121; }

p {
	margin-bottom: 2rem;
}

h1, h2, h3, h4, h5 {
	font-family: 'Satoshi', sans-serif;
}

h1 {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: 0.05rem;
	padding: 2rem 0;
	margin-top: 1rem;
}

@media (min-width: 575.98px) {
	h1 {
		font-size: 4rem;
	}
 }

h2 {
	font-weight: 600;
	font-size: 2rem;
	margin: 5rem 0 2rem 0;
}

h3 {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 1rem 0;
}

h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

strong {
	font-weight: 800;
}

hr {
	margin: 5rem 0;
	border: none;
	height: 1px;
	background-color: #212121;
	opacity: 1;
}

/* BOOTSTRAP STYLES */

.border-top 	{ border-top: 1px solid #212121 !important; }
.border-bottom 	{ border-bottom: 1px solid #212121 !important; }

.btn {
	margin: 2rem 0;
	padding: 0.5rem 2rem;
	font-weight: bold;
}

/* NAVIGATION */

.main-navigation ul ul a {
	width: fit-content !important;
}

.main-navigation li {
	text-transform: uppercase;
	font-family: 'Satoshi', sans-serif;
	font-weight: 600;
	padding-left: 1rem;
	letter-spacing: 0.05rem;
	font-size: 0.9rem;
}

.main-navigation .nav-menu > li > a {
	padding: 0.5rem 0;
	border-bottom: 4px solid transparent;
}

.main-navigation .nav-menu > li > a:hover {
	border-bottom: 4px solid #212121;
	text-decoration: none;
}

.nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap; /* prevent line wrapping */
}

.nav-menu li {
	white-space: nowrap; /* prevent wrapping inside items */
}

ul.nav-menu > li::after {
	content: "\f067"; /* Unicode for fa-plus */
	font-family: "Font Awesome 6 Free";
	font-weight: 900; /* Font Awesome solid style */
	padding-left: 1rem;
	color: #212121;
}

.nav-menu li:last-child::after {
	content: "";
}

.nav-menu a {
	text-decoration: none;
	display: inline;
	white-space: nowrap;
}

.sub-menu {
	padding: 1rem;
	background: #212121;
	flex-direction: column; /* ensure vertical stacking if using flex later */
	margin-top: 2px !important;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li {
	letter-spacing: 0.05rem;
	font-size: 0.8rem;
}

.sub-menu li a {
	display: block;
	color: #fefaf7 !important;
	padding: 0 0 0.5rem 0;
}

.sub-menu li a:hover {
	text-decoration: none;
}

.menu-item:hover .sub-menu {
	display: block; /* show submenu on hover */
}

@media screen and (max-width: 1199.98px) {
	.rmp_menu_trigger {
		display: block !important;
	}
}

.rmp-menu-title-image {
	width: 100px !important;
	height: 100px !important;
	margin: 0 0 1rem 0 !important;
    mix-blend-mode: normal; /* or overlay, screen, etc. */
	background-color: rgba(255, 0, 0, 1); /* your overlay color */
}

.rmp-menu-title-link {
	font-size: 1.4rem !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05rem !important;
}

.rmp-menu-item-link {
	font-size: 1.2rem !important;
	font-weight: 500 !important;
	padding: 0 !important;
	margin: 5% 0 !important;
}

.rmp-container {
	max-width: 100% !important;
	min-width: 100% !important;
	font-family: 'Satoshi', sans-serif !important;
	font-size: 1.2rem !important;
}
.rmp_menu_trigger {
	padding: 0 !important;
}

.responsive-menu-pro-inner, .responsive-menu-pro-inner::before, .responsive-menu-pro-inner::after {
	background-color: #fefaf7 !important;
}

ul .wpml-ls-menu-item a {
	display: inline;
}

.wpml-ls-native {
	background-color: #000;
	padding: 0.5rem 0.6rem;
	color: #fff;
	border-radius: 0.3rem;
}

.main-navigation .nav-menu > li.wpml-ls-item > a:hover {
	border-bottom-color: transparent;
}

/* LIGHTBOX */

.lightbox:hover {
	cursor: pointer;
}

#lightbox-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

#lightbox-overlay img {
	max-width: 80%;
	max-height: 80%;
	box-shadow: 0 0 25px black;
	border-radius: 4px;
	transition: transform 0.2s ease;
}

@keyframes fadeOut {
	to {
		opacity: 0;
	}
}

#lightbox-overlay.fade-out {
	animation: fadeOut 0.8s ease-in forwards;
}

div#lightbox-close {
	padding: 0;
}

#lightbox-close {
	opacity: 1;
	position: absolute;
	top: 30px;
	right: 40px;
	background: none;
	border: none;
	font-size: 2rem;
	color: #fff;
	cursor: pointer;
	z-index: 10000;
	transition: color 0.2s ease;
}

.btn-close i {
	color: #ffffff !important;
}

/* GRAVITY FORMS */

.gfield_label, .gform-field-label--type-sub, .gfield_description {
	font-family: 'Satoshi', sans-serif !important;
	font-size: 1.1rem !important;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"] {
	padding: 1rem !important;
	border-radius: 0.5rem !important;
}

.gform-field-label, .gfield_label, .gfield_description {
	font-size: 1.1rem !important;
}

.ginput_container {
	margin-top: 0.5rem;	
}

textarea {
	border-radius: 0.5rem !important;
}

input::placeholder {
	color: #ccc !important;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
	background-color: #212121 !important;
	font-family: 'Satoshi', sans-serif !important;
	margin: 0 !important;
	padding: 0.8rem 2.75rem !important;
	font-weight: bold !important;
	font-size: 1rem !important;
}

.gfield_required {
	font-weight: bold;
}

.gform_validation_errors {
	background-color: #212121 !important;
	border-color: #212121 !important;
	color: #fefaf7 !important;
	font-family: 'Satoshi', sans-serif !important;
}

.gform_submission_error, .gform_submission_error .gform-icon  {
	color: #fefaf7 !important;
}

.gform_submission_error .gform-icon  {
	border-color: #fefaf7 !important;
}


.comingsoon .subscribe label {
	display: none;
}

/* HEADER */

header a 			{ color: #000000; }
header a:active 	{ color: #000000; }
header a:visited 	{ color: #000000; }
header a:hover 		{ color: #000000; text-decoration: underline; }

.site-header {
	padding: 0 6rem 0 6rem;
	background: linear-gradient(
		to bottom,
		rgba(254, 250, 247, 1),    /* 100% opacity at top */
		rgba(254, 250, 247, 0.75)  /* 65% opacity at bottom */
	  );
}

#h-symbol-1 {
	width: 64px;
	padding-bottom: 22px;
	color: #000000;
}

#h-symbol-2 {
	width: 64px;
	padding-bottom: 0;
	color: #000000;
}

img.h-name {
	width: 230px;
	padding-left: 31px;
}

@media (max-width: 576px) {
	.site-header {
		padding: 0 2rem 0 2rem;
	}
	
	#h-symbol-1 {
		width: 45px;
		padding-bottom: 15px;
		color: #000000;
	}
	
	#h-symbol-2 {
		width: 45px;
		padding-bottom: 0;
		color: #000000;
	}
	
	img.h-name {
		width: 161px;
		padding-left: 21px;
	}
}

/* CONTENT */

.boxit {
	background-color: rgba(33, 33, 33, 0.05);
	padding: 3rem;
	border-radius: 1rem;
	font-family: 'Satoshi', sans-serif !important;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.7rem;
}

.entry-content > p.lead {
	border-bottom: 1px solid #212121;
	padding-bottom: 5rem;
}

.page-id-834 .entry-content > p.lead {
	border-bottom: none;
	padding-bottom: 0;
}

.lead {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2.5rem;
	margin-bottom: 2rem;
}

.lead strong {
	font-weight: 700;
}

.plus-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.entry-content li {
	position: relative;
	font-family: 'Satoshi', sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
}

.plus-list li {
	position: relative;
	padding: 0 0 0.75rem 1.5rem;
	font-family: 'Satoshi', sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
}

.plus-list li::before {
	content: "\f067"; /* Unicode for fa-plus */
	font-family: "Font Awesome 6 Free"; /* or "Font Awesome 5 Free" depending on your version */
	font-weight: 900; /* required for solid icons */
	position: absolute;
	left: 0;
	top: 0;
}

i.fa-solid {
	margin-right: 0.75rem;
}

.explore-link {
	margin-top: 1rem;
}

.explore-link a {
	color: #212121 !important;
	text-decoration: underline;
	font-weight: bold;
	margin-right: 0.25rem;
	font-family: 'Satoshi', sans-serif;
	font-size: 1.2rem;
}

.icon-selector {
	width: 75%;
	margin: 1rem 0;
}

.packages ul {
	padding-left: 0;
	margin-left: 1rem !important;
}

.packages ul li {
	font-size: 1rem;
	line-height: 1.4rem;
	margin-bottom: 0.9rem;
}

.project .project-description {
	font-size: 1.15rem;
	line-height: 2.25rem;
}

.project .project-details {
	font-size: 1.1rem;
	font-family: 'Satoshi', sans-serif;
	line-height: 1.75rem;
}

.image-link a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-link a img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.image-link a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* allows clicks to pass through */
}

.image-link a:hover::after {
  opacity: 0.10; /* 5% opacity for a subtle dark overlay */
}

.split ul {
  columns: 2;
  column-gap: 20px;
}

@media (max-width: 991.98px) {
	.deliverables ul {
	  columns: 1;
	}
 }

.deliverables ul.plus-list li {
	padding: 0 0 0 1.5rem;
	font-size: 1rem;
}

/* FOOTER */

.footer {
	margin: 3rem 0;
	font-size: 1.1rem;
	font-weight: 500;
	font-family: 'Satoshi', sans-serif;
	line-height: 2rem;
}

.footer a { color: #ff6671; }
.footer a:visited { color: #ff6671; }
.footer a:active { color: #ff6671; }
.footer a:hover { color: #212121; }

.footer a.btn { color: #ffffff; }

#chat-icon-circle-1, #chat-icon-circle-2 {
	width: 38px;
	height: 38px;
	color: #212121;
}

#chat-icon-circle-2 {
	margin: 6px 0;
}

#chat-icon-speech-bubble {
	margin-left: 12px;
	color: #212121;
}