/*

Theme Name: TOP DOG TE - Modern Hero Edition

Theme URI: https://topdogte.com/

Description: A modernized hero-style theme for LFMTE traffic exchanges.

Version: 4.0

Author: Josh Abbott. Designed by Linda Hoang. Modernized layout.

*/


@charset "utf-8";


/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
	--lfm-primary: #6d28d9;
	--lfm-primary-light: #8b5cf6;
	--lfm-primary-dark: #4c1d95;
	--lfm-accent: #22d3ee;
	--lfm-accent-2: #f59e0b;
	--lfm-dark: #0f0b1f;
	--lfm-dark-2: #161029;
	--lfm-text: #1f2130;
	--lfm-text-muted: #6b7280;
	--lfm-light: #f6f5fb;
	--lfm-white: #ffffff;
	--lfm-radius: 14px;
	--lfm-radius-sm: 8px;
	--lfm-shadow: 0 10px 30px rgba(31, 20, 70, 0.12);
	--lfm-shadow-sm: 0 4px 14px rgba(31, 20, 70, 0.10);
	--lfm-font-heading: 'Poppins', 'Arial', sans-serif;
	--lfm-font-body: 'Inter', 'Arial', sans-serif;
}


/* ==========================================================================
   Main font settings
   ========================================================================== */

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--lfm-font-body);
	font-size: 16px;
	font-weight: 400;
	color: var(--lfm-text);
	background-color: var(--lfm-light);
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lfm-font-heading);
}

a {
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.lfm_hero {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 90px 20px 70px;
	background-image: url(images/world.jpg);
	background-size: cover;
	background-position: center;
	color: var(--lfm-white);
}

.lfm_hero_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 11, 31, 0.90) 0%, rgba(76, 29, 149, 0.85) 55%, rgba(15, 11, 31, 0.94) 100%);
	z-index: 0;
}

.lfm_hero_glow {
	position: absolute;
	width: 500px;
	height: 500px;
	top: -220px;
	right: -160px;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, transparent 70%);
	filter: blur(10px);
	z-index: 0;
	pointer-events: none;
}

.lfm_hero_content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	max-width: 780px;
}

.lfm_hero_logo {
	max-height: 64px;
	margin-bottom: 22px;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.lfm_hero_title {
	font-family: var(--lfm-font-heading);
	font-weight: 800;
	font-size: 44px;
	letter-spacing: -0.5px;
	color: var(--lfm-white);
	margin: 0 0 14px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.lfm_hero_tagline {
	font-size: 19px;
	font-weight: 500;
	color: #e6e3f7;
	min-height: 30px;
	margin: 0;
}

.lfm_hero_tagline .typed-cursor {
	color: var(--lfm-accent);
}

.lfm_hero_cta {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 34px;
}

.lfm_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lfm-font-heading);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 28px;
	border-radius: 50px;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
}

.lfm_btn_primary {
	background: linear-gradient(135deg, var(--lfm-accent) 0%, #0ea5e9 100%);
	color: #0b1120;
	box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
}

.lfm_btn_primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(34, 211, 238, 0.45);
	color: #0b1120;
}

.lfm_btn_ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--lfm-white);
	border-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(6px);
}

.lfm_btn_ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--lfm-white);
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.lfm_hero {
		padding: 60px 18px 50px;
	}
	.lfm_hero_title {
		font-size: 30px;
	}
	.lfm_hero_tagline {
		font-size: 16px;
	}
	.lfm_hero_logo {
		max-height: 48px;
	}
	.lfm_btn {
		padding: 12px 22px;
		font-size: 14px;
	}
}


/* ==========================================================================
   NAVIGATION - top level (sticky modern navbar)
   ========================================================================== */

.lfm_menu_bar {
	background: var(--lfm-dark-2);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--lfm-shadow);
	padding: 0;
	margin-bottom: 0;
}

.lfm_nav_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.lfm_menu_bar .navbar {
	padding: 6px 0;
}

/* Site logo styles */

.lfm_menu_logo {
	max-height: 34px;
	border-radius: 6px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 24px;
	}
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	font-family: var(--lfm-font-heading);
	font-size: 15px;
	color: #cbd2f2;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-primary-light) 100%);
	color: var(--lfm-white);
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(109, 40, 217, 0.45);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--lfm-white);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-primary-light) 100%);
	color: var(--lfm-white);
}

@media (min-width: 992px) {
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		margin: 10px 4px;
		padding: 9px 18px;
		border: none;
		border-radius: 50px;
		position: relative;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link,
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
		border: none;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		content: "";
		background-color: transparent;
		width: 100%;
		height: 14px;
		position: absolute;
		bottom: -14px;
		left: 0;
		border: none;
	}
}

@media (max-width: 991.98px) {
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		padding: 12px 16px;
		text-align: left;
		border-radius: var(--lfm-radius-sm);
		margin: 3px 0;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
		color: #cbd2f2;
		background-color: rgba(255, 255, 255, 0.06);
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		color: var(--lfm-white);
		background-color: rgba(255, 255, 255, 0.12);
	}

	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:after {
		content: "";
		border-top: 0.3em solid;
		border-right: 0.3em solid transparent;
		border-bottom: 0;
		border-left: 0.3em solid transparent;
		color: #cbd2f2;
		transform: rotate(-90deg);
		position: absolute;
		right: 1.25rem;
		transition: all 0.15s ease-out;
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		color: var(--lfm-white);
		transform: rotate(0deg);
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		color: #cbd2f2;
		transform: rotate(-90deg);
	}

	.navbar-toggler {
		border: none;
		padding: 6px 0;
	}
}


/* ==========================================================================
   NAVIGATION - second level dropdown panel
   ========================================================================== */

.lfm_menu_tab {
	background: var(--lfm-white);
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
	font-weight: 600;
	border: none;
	border-radius: 0 0 var(--lfm-radius) var(--lfm-radius);
	box-shadow: var(--lfm-shadow);
	padding: 10px 0;
	margin-top: 4px;
}

li.lfm_tab_opened .lfm_menu_tab {
	display: flex;
}

@media (max-width: 991.98px) {
	.lfm_menu_tab {
		background-color: rgba(255, 255, 255, 0.04);
		position: relative;
		flex-direction: column;
		top: 0;
		padding: 4px 0 4px 8px;
		box-shadow: none;
		border-radius: var(--lfm-radius-sm);
	}
	li.lfm_tab_closed .lfm_menu_tab {
		display: none;
	}
}


.lfm_menu_tab > li > a {
	font-family: var(--lfm-font-body);
	font-size: 15px;
	padding: 0 22px;
	line-height: 44px;
	color: var(--lfm-text);
	text-decoration: none;
	display: block;
	border-radius: var(--lfm-radius-sm);
	margin: 0 8px;
}
.lfm_menu_tab > li > a:hover {
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-primary-light) 100%);
	color: var(--lfm-white);
}


.lfm_menu_tab .dropdown-menu {
	border: none;
	box-shadow: var(--lfm-shadow-sm);
	border-radius: var(--lfm-radius-sm);
	padding: 6px;
}

.lfm_menu_tab .dropdown-menu a {
	font-size: 14px;
	padding: 0 16px;
	line-height: 34px;
	color: var(--lfm-white);
	text-decoration: none;
	white-space: nowrap;
	display: block;
	background-color: var(--lfm-primary-dark);
	border-radius: var(--lfm-radius-sm);
	margin-bottom: 2px;
}
.lfm_menu_tab .dropdown-menu a:hover {
	background-color: var(--lfm-accent);
	color: #0b1120;
}

@media (max-width: 991.98px) {
	.lfm_menu_tab > li > a {
		padding-left: 20px;
		line-height: 38px;
		width: calc(100% - 16px);
		color: #cbd2f2;
	}

	.lfm_menu_tab .dropdown-menu a {
		padding-left: 26px;
	}
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.lfm_footer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--lfm-dark) 0%, var(--lfm-dark-2) 55%, #1a1033 100%);
}

.lfm_footer_glow {
	position: absolute;
	width: 420px;
	height: 420px;
	bottom: -220px;
	left: -140px;
	background: radial-gradient(circle, rgba(109, 40, 217, 0.35) 0%, transparent 70%);
	pointer-events: none;
}

.lfm_footer .container {
	position: relative;
	z-index: 1;
}

.lfm_footer_brand {
	font-family: var(--lfm-font-heading);
	font-weight: 700;
	letter-spacing: -0.3px;
}

.lfm_footer_muted {
	color: #a3a7c7;
}

.lfm_footer_heading {
	font-family: var(--lfm-font-heading);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	color: #e6e3f7 !important;
}

.lfm_footer_links li a {
	color: #a3a7c7;
	text-decoration: none;
	font-size: 14.5px;
}

.lfm_footer_links li a i {
	font-size: 11px;
	margin-right: 6px;
	color: var(--lfm-accent);
}

.lfm_footer_links li a:hover {
	color: var(--lfm-white);
	padding-left: 3px;
}

.lfm_social_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--lfm-white);
	margin: 14px 6px 0 0;
	font-size: 16px;
	text-decoration: none;
}

.lfm_social_btn:hover {
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-accent) 100%);
	color: var(--lfm-white);
	transform: translateY(-3px);
}


/* ==========================================================================
   Icon settings
   ========================================================================== */

.far, .fas {
	margin-right: 3px;
}

.feedicon {
	color: var(--lfm-primary-light);
	font-size: 20px;
	margin-right: 5px;
}


/* ==========================================================================
   Profile picture sizes
   ========================================================================== */

.profilepic_small {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.profilepic_med {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	object-fit: cover;
}

.profilepic_large {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}


/* ==========================================================================
   Various shared styles used throughout the LFM Members Area
   ========================================================================== */

.buttonlink {
	/* This class defines <a> tag links that look like buttons */
	cursor: pointer;
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-primary-light) 100%);
	border-radius: 50px;
	border: none;
	display: inline-block;
	color: var(--lfm-white);
	font-family: var(--lfm-font-heading);
	font-size: 16px;
	font-weight: 600;
	padding: 8px 18px;
	margin: 2px 1px;
	text-decoration: none;
	box-shadow: var(--lfm-shadow-sm);
}
.buttonlink:hover {
	color: var(--lfm-white);
	background: linear-gradient(135deg, var(--lfm-primary-light) 0%, var(--lfm-accent) 100%);
	text-decoration: none;
	transform: translateY(-1px);
}


.infobar {
	/* This class defines sections that span the entire page width */
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color: var(--lfm-white);
	background: linear-gradient(135deg, var(--lfm-dark-2) 0%, var(--lfm-primary-dark) 100%);
	border-radius: var(--lfm-radius);
}
.infobar h2 {
	color: var(--lfm-white);
}


.vcenter {
	/* This is a class that can be used in Bootstrap rows to vertically center the content */
	display: flex;
	align-items: center;
}


/* The next 3 sections control various text styles used throughout the LFM Members Area */
.lfm_title {
	font-family: var(--lfm-font-heading);
	color: var(--lfm-text);
	font-size: 30px;
	font-weight: 700;
}

.lfm_descr {
	font-family: var(--lfm-font-body);
	color: var(--lfm-text-muted);
	font-size: 16px;
}

.lfm_descr_bold {
	font-family: var(--lfm-font-body);
	color: var(--lfm-text);
	font-size: 16px;
	font-weight: 700;
}


/* ==========================================================================
   Generic content cards (used inside members area pages / content.php)
   ========================================================================== */

.card, .panel, .lfm_card {
	border: none;
	border-radius: var(--lfm-radius);
	box-shadow: var(--lfm-shadow-sm);
}


/* ==========================================================================
   SALES PAGE SECTIONS (homepage / promo content)
   ========================================================================== */

.lfm_sp_section {
	position: relative;
	background-color: var(--lfm-white);
}

.lfm_sp_section_dark {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at 15% 20%, #3b1478 0%, transparent 45%),
	            linear-gradient(135deg, var(--lfm-dark) 0%, var(--lfm-primary-dark) 60%, var(--lfm-primary) 100%);
	color: var(--lfm-white);
}

.lfm_sp_glow_blob {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	filter: blur(20px);
	pointer-events: none;
	z-index: 0;
}
.lfm_sp_glow_blob_a {
	background: radial-gradient(circle, rgba(34, 211, 238, 0.30) 0%, transparent 70%);
	top: -160px;
	right: -120px;
}
.lfm_sp_glow_blob_b {
	background: radial-gradient(circle, rgba(139, 92, 246, 0.30) 0%, transparent 70%);
	bottom: -180px;
	left: -140px;
}

.lfm_sp_section_dark .container,
.lfm_sp_cta_banner .container {
	position: relative;
	z-index: 1;
}

.lfm_sp_heading {
	font-family: var(--lfm-font-heading);
	font-weight: 800;
	font-size: 42px;
	letter-spacing: -0.5px;
	color: var(--lfm-text);
	line-height: 1.15;
}

.lfm_sp_heading_light {
	color: var(--lfm-white);
}

.lfm_gradient_text {
	background: linear-gradient(135deg, var(--lfm-accent) 0%, var(--lfm-primary-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.lfm_sp_lead {
	font-family: var(--lfm-font-body);
	font-size: 18px;
	color: var(--lfm-text-muted);
}

.lfm_sp_lead_light {
	color: #d8d5f0;
}

.lfm_sp_cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.lfm_sp_cta_center {
	justify-content: center;
}

.lfm_btn_lg {
	padding: 16px 34px;
	font-size: 16px;
}

.lfm_badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--lfm-font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--lfm-primary-dark);
	background: rgba(109, 40, 217, 0.10);
	padding: 7px 16px;
	border-radius: 50px;
}

.lfm_badge_dark {
	color: var(--lfm-white);
	background: rgba(255, 255, 255, 0.10);
}

.lfm_sp_stats {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.lfm_stat_chip {
	font-family: var(--lfm-font-body);
	font-size: 14px;
	color: var(--lfm-text-muted);
	background: var(--lfm-light);
	border-radius: 50px;
	padding: 8px 16px;
}

.lfm_stat_chip strong {
	color: var(--lfm-primary);
	font-family: var(--lfm-font-heading);
}

.lfm_img_frame {
	border-radius: var(--lfm-radius);
	overflow: hidden;
	box-shadow: var(--lfm-shadow);
}

.lfm_img_frame img {
	display: block;
	width: 100%;
	border-radius: var(--lfm-radius);
}

.lfm_img_frame_glow {
	box-shadow: 0 20px 45px rgba(34, 211, 238, 0.25), 0 10px 25px rgba(0, 0, 0, 0.35);
}

.lfm_sp_typed_section {
	background: linear-gradient(180deg, var(--lfm-light) 0%, #efeaff 100%);
}

.lfm_feature_card {
	height: 100%;
	background: var(--lfm-white);
	border-radius: var(--lfm-radius);
	box-shadow: var(--lfm-shadow-sm);
	padding: 34px 28px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lfm_feature_card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lfm-shadow);
}

.lfm_feature_icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 22px;
	color: var(--lfm-white);
	background: linear-gradient(135deg, var(--lfm-primary) 0%, var(--lfm-primary-light) 100%);
}

.lfm_feature_title {
	font-family: var(--lfm-font-heading);
	font-weight: 700;
	font-size: 19px;
	margin-bottom: 10px;
}

.lfm_sp_cta_banner {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--lfm-primary-dark) 0%, var(--lfm-primary) 100%);
	color: var(--lfm-white);
}

@media (max-width: 767.98px) {
	.lfm_sp_heading {
		font-size: 30px;
	}
	.lfm_sp_lead {
		font-size: 16px;
	}
	.lfm_sp_cta {
		justify-content: center;
	}
	.lfm_sp_stats {
		justify-content: center;
	}
}
