/* ============================== 
   QCRENCONTRE HERO STYLES
   White Sticky Bars + Beautiful Grey Backgrounds
   ============================== */

/* ============================== 
   HIDE DUPLICATE LOGOS
   ============================== */

/* Hide any standalone logo/header elements to prevent duplicates */
body > img.logo,
body > a > img.logo,
.header-container > img.logo {
	display: none !important;
}

/* ============================== 
   DESKTOP STICKY HEADER - WHITE
   ============================== */

.sticky-header-desktop {
	position: fixed;
	top: -80px;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	transition: top 0.3s ease-in-out;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
}

.sticky-header-desktop.visible {
	top: 0;
}

.sticky-header-desktop .logo {
	height: 45px;
	width: auto;
}

.sticky-header-desktop .btn-signup-sticky {
	background: var(--color-primary);
	color: #fff;
	padding: 12px 32px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.sticky-header-desktop .btn-signup-sticky:hover {
	background: var(--color-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(226, 51, 82, 0.4);
}

/* ============================== 
   MOBILE STICKY BOTTOM BAR - WHITE
   ============================== */

.sticky-bottom-mobile {
	position: fixed;
	bottom: -80px;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	transition: bottom 0.3s ease-in-out;
	height: 70px;
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.sticky-bottom-mobile.visible {
	bottom: 0;
}

.sticky-bottom-mobile .logo {
	height: 38px;
	width: auto;
}

.sticky-bottom-mobile .btn-signup-sticky-mobile {
	background: var(--color-primary);
	color: #fff;
	padding: 10px 24px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

/* ============================== 
   HERO SECTION - FULL HEIGHT
   Dark Grey Background
   ============================== */

.hero-fullscreen {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 80px 60px;
	background: #3c3c3c;  /* Lighter dark grey to match sections */
	overflow: hidden;
}

/* Hero Background Image */
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

/* Desktop Login Link (Top-Right) */
.desktop-login-link {
	position: absolute;
	top: 30px;
	right: 40px;
	z-index: 10;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 22px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.desktop-login-link:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

/* Hero Content Container */
.hero-content-wrapper {
	position: relative;
	z-index: 5;
	max-width: 600px;
}

/* Desktop: QCRENCONTRE Text */
.hero-brand-text {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 6px;
	color: #fff;
	margin-bottom: 12px;
	text-transform: uppercase;
	line-height: 1.1;
}

/* Tagline */
.hero-tagline {
	font-size: 22px;
	color: #fff;
	margin-bottom: 40px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Primary CTA Button (On LEFT) */
.btn-hero-cta {
	display: inline-block;
	background: var(--color-primary);
	color: #fff;
	padding: 18px 50px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(226, 51, 82, 0.4);
}

.btn-hero-cta:hover {
	background: var(--color-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(226, 51, 82, 0.5);
}

/* Mobile Login Button */
.mobile-login-btn {
	display: none;
	width: 100%;
	background: transparent;
	color: #fff;
	padding: 15px;
	border: 2px solid #fff;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: all 0.3s ease;
	margin-top: 15px;
}

.mobile-login-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* Mobile Hero: Logo Only (Centered) */
.hero-logo-mobile {
	display: none;
	max-width: 250px;
	height: auto;
	margin: 0 auto 20px;
}

/* ============================== 
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 768px) {
	/* Hide desktop sticky header */
	.sticky-header-desktop {
		display: none;
	}

	/* Show mobile sticky bottom bar */
	.sticky-bottom-mobile {
		display: flex;
	}

	/* Hide desktop login link */
	.desktop-login-link {
		display: none;
	}

	/* Show mobile login button */
	.mobile-login-btn {
		display: block;
	}

	/* Center content on mobile */
	.hero-content-wrapper {
		text-align: center;
		max-width: 100%;
		margin: 0 auto;
	}

	/* Hide "QCRENCONTRE" text on mobile */
	.hero-brand-text {
		display: none;
	}

	/* Show logo on mobile */
	.hero-logo-mobile {
		display: block;
	}

	.hero-tagline {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.btn-hero-cta {
		width: 100%;
		padding: 16px 40px;
		font-size: 16px;
	}

	.hero-fullscreen {
		padding: 60px 20px;
	}
}

@media (max-width: 480px) {
	.hero-logo-mobile {
		max-width: 200px;
	}

	.hero-tagline {
		font-size: 16px;
	}

	.sticky-bottom-mobile .logo {
		height: 32px;
	}

	.sticky-bottom-mobile .btn-signup-sticky-mobile {
		padding: 8px 20px;
		font-size: 13px;
	}

	.hero-fullscreen {
		padding: 50px 20px;
	}
}

/*173542.1.399.120.88445ab*/