.elementor-590 .elementor-element.elementor-element-e667f75{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-5e37f7f *//* IMPORT FONTS (global, but only used in this block) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;800&display=swap');

/* All variables & styles are scoped to this block */
.simplicity-nav-block {
	--neon-pink: #FF5CA8;
	--retro-purple: #B956FF;
	--deep-purple: #462898;
	--cyan-teal: #01F4F5;
	--dark-bg: #251E3E;
	--off-white: #F9F9F9;
	--glass-bg: rgba(255, 255, 255, 0.85);
	font-family: 'Montserrat', sans-serif;
	color: var(--dark-bg);
}

/* ------------------ NAV BAR RE-DESIGN ------------------ */
.simplicity-nav-block .simplicity-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(185, 86, 255, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.simplicity-nav-block .nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* --- LOGO SCALED UP --- */
.simplicity-nav-block .simplicity-logo {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 0.3s ease;
}

.simplicity-nav-block .simplicity-logo:hover {
	transform: scale(1.02);
}

.simplicity-nav-block .logo-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--retro-purple), var(--deep-purple));
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 3px 3px 0px var(--cyan-teal);
	margin: 0 10px;
}

.simplicity-nav-block .inner-diamond {
	width: 14px;
	height: 14px;
	background: var(--off-white);
}

.simplicity-nav-block .logo-text {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.2rem;
	line-height: 1;
	color: var(--dark-bg);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.simplicity-nav-block .logo-text .accent-text {
	color: var(--neon-pink);
}

/* --- LINKS REFINED --- */
.simplicity-nav-block .nav-links {
	display: flex;
	gap: 40px;
	align-items: center;
}

/* Hide links on small tablets/mobile */
@media (max-width: 900px) {
	.simplicity-nav-block .nav-links {
		display: none;
	}
}

.simplicity-nav-block .nav-item {
	text-decoration: none;
	color: var(--dark-bg);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	padding: 5px 0;
	transition: color 0.3s ease;
}

/* Sophisticated Underline Animation */
.simplicity-nav-block .nav-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, var(--neon-pink), var(--retro-purple));
	transition: width 0.3s ease;
}

.simplicity-nav-block .nav-item:hover {
	color: var(--retro-purple);
}

.simplicity-nav-block .nav-item:hover::after {
	width: 100%;
}

/* --- BUTTON UPGRADE (COLORS SWAPPED) --- */
.simplicity-nav-block .contact-btn {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;

	/* Solid background color under the gradient overlay */
	background: var(--deep-purple);

	color: #ffffff;
	padding: 12px 28px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;

	/* Main look shadow */
	box-shadow: 4px 4px 0px var(--cyan-teal);
}

/* GRADIENT OVERLAY: visible by default */
.simplicity-nav-block .contact-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--retro-purple), var(--neon-pink));
	opacity: 1;
	z-index: 0;
	transition: opacity 0.3s ease;
}

.simplicity-nav-block .contact-btn span {
	position: relative;
	z-index: 1;
}

/* HOVER STATES */
.simplicity-nav-block .contact-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0px var(--neon-pink);
}

.simplicity-nav-block .contact-btn:hover::before {
	opacity: 0; /* reveal deep purple base */
}

.simplicity-nav-block .contact-btn .icon {
	font-size: 1.1rem;
}/* End custom CSS */