/*
Theme Name: LFMVM Sidebar Theme - Challenger Edition
Theme URI: http://theviralmailerscript.com/
Description: A modern sidebar theme for LFMVM viral mailers with Challenger branding.
Version: 3.1
Author: Josh Abbott (Customized)
*/

@charset "utf-8";

/* ============================================
   CUSTOM FONTS & BASE SETTINGS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
	font-size: 16px;
	font-weight: 400;
	color: #1A1A2E;
	background-color: #F0F4F8;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
}

/* ============================================
   MAIN PAGE STRUCTURE
   ============================================ */
.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}

.main {
	width: 100%;
}

/* ============================================
   SITE LOGO
   ============================================ */
.lfm_menu_logo {
	max-height: 40px;
	margin: 0.8rem 1.2rem 0.5rem 1.2rem;
	filter: brightness(0) invert(1);
}

/* ============================================
   TOP BAR - Electric Azure
   ============================================ */
.lfm_topbar {
	background: #1A73E8;
	background: linear-gradient(135deg, #1A73E8 0%, #0B1E4E 100%);
	color: #FFFFFF;
	margin-bottom: 25px;
	padding: 8px 20px;
	box-shadow: 0 2px 12px rgba(26, 115, 232, 0.3);
}

.lfm_topbar .btn-success {
	background: #FFC107;
	border: none;
	color: #0B1E4E;
	font-weight: 700;
	padding: 6px 20px;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.lfm_topbar .btn-success:hover {
	background: #FFD54F;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* ============================================
   SIDEBAR - Challenger Blue
   ============================================ */
.lfm_slidebar {
	min-width: 230px;
	max-width: 230px;
	min-height: 100vh;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #0B1E4E;
	background: linear-gradient(180deg, #0B1E4E 0%, #143A7A 100%);
	box-shadow: 2px 0 20px rgba(11, 30, 78, 0.15);
}

/* Desktop View - Expand by default */
@media (min-width: 890px) {
	.lfm_slidebar {
		margin-left: 0px;
	}
	.lfm_slidebar.toggled {
		margin-left: -230px;
	}
}

/* Mobile View - Collapse by default */
@media (max-width: 889px) {
	.lfm_slidebar {
		margin-left: -230px;
	}
	.lfm_slidebar.toggled {
		margin-left: 0px;
	}
}

/* Sidebar Toggle Switch */
.lfm_slidebar_toggleswitch {
	cursor: pointer;
	font-size: 26px;
	color: #FFFFFF;
	padding-right: 15px;
	transition: all 0.3s ease;
}

.lfm_slidebar_toggleswitch:hover {
	color: #FFC107;
	transform: rotate(90deg);
}

/* ============================================
   SIDEBAR MENU ITEMS
   ============================================ */
.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	overflow: auto;
	margin-top: 10px;
}

.lfm_slidebar_mainmenu li > a {
	color: rgba(255, 255, 255, 0.8);
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.65rem 1.2rem 0.65rem 1.2rem;
	font-size: 14px;
	position: relative;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
	letter-spacing: 0.3px;
}

.lfm_slidebar_mainmenu li > a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: #FFC107;
	transform: scaleY(0);
	transition: transform 0.25s ease;
}

.lfm_slidebar_mainmenu li > a:hover::before,
.lfm_slidebar_mainmenu li > a.active::before {
	transform: scaleY(1);
}

.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	color: #FFFFFF;
	background: rgba(255, 193, 7, 0.12);
}

.lfm_slidebar_mainmenu li > a i,
.lfm_slidebar_mainmenu li > a .fas,
.lfm_slidebar_mainmenu li > a .far {
	margin-right: 10px;
	width: 20px;
	text-align: center;
	color: #FFC107;
}

/* Menu item hover effect with icon */
.lfm_slidebar_mainmenu li > a:hover i {
	color: #FFFFFF;
}

/* ============================================
   FOOTER - Dark Navy
   ============================================ */
.lfm_footer {
	background: #0B1E4E;
	background: linear-gradient(180deg, #0B1E4E 0%, #07133A 100%);
	border-top: 3px solid #FFC107;
	margin-top: 30px;
}

.lfm_footer h4,
.lfm_footer h5 {
	font-weight: 700;
	letter-spacing: 0.5px;
}

.lfm_footer .text-white {
	color: rgba(255, 255, 255, 0.85) !important;
}

.lfm_footer .text-white:hover {
	color: #FFC107 !important;
	transition: color 0.3s ease;
}

.lfm_footer .btn-primary {
	background: #1A73E8;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lfm_footer .btn-primary:hover {
	background: #FFC107;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ============================================
   ICON STYLES
   ============================================ */
.far, .fas {
	margin-right: 5px;
}

.feedicon {
	color: #1A73E8;
	font-size: 20px;
	margin-right: 5px;
}

/* ============================================
   PROFILE PICTURES
   ============================================ */
.profilepic_small {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #FFC107;
}

.profilepic_med {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #FFC107;
}

.profilepic_large {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #FFC107;
}

/* ============================================
   BUTTON LINKS
   ============================================ */
.buttonlink {
	cursor: pointer;
	background: #1A73E8;
	background: linear-gradient(135deg, #1A73E8, #0B1E4E);
	border-radius: 50px;
	border: none;
	display: inline-block;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 8px 24px;
	margin: 2px 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 10px rgba(26, 115, 232, 0.3);
}

.buttonlink:hover {
	color: #FFFFFF;
	background: #FFC107;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
	text-decoration: none;
}

/* ============================================
   INFO BAR
   ============================================ */
.infobar {
	width: 100%;
	padding: 20px 0;
	color: #FFFFFF;
	background: linear-gradient(135deg, #0B1E4E, #1A73E8);
	border-radius: 8px;
	margin-bottom: 20px;
}

.infobar h2 {
	color: #FFFFFF;
	font-weight: 800;
}

/* ============================================
   VERTICAL CENTER
   ============================================ */
.vcenter {
	display: flex;
	align-items: center;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.lfm_title {
	font-family: 'Inter', sans-serif;
	color: #0B1E4E;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.lfm_title span {
	color: #FFC107;
}

.lfm_descr {
	font-family: 'Inter', sans-serif;
	color: #1A1A2E;
	font-size: 16px;
	line-height: 1.7;
}

.lfm_descr_bold {
	font-family: 'Inter', sans-serif;
	color: #0B1E4E;
	font-size: 16px;
	font-weight: 700;
}

/* ============================================
   ADDITIONAL MODERN ELEMENTS
   ============================================ */

/* Cards */
.card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(11, 30, 78, 0.08);
	transition: all 0.3s ease;
}

.card:hover {
	box-shadow: 0 8px 30px rgba(11, 30, 78, 0.15);
	transform: translateY(-2px);
}

/* Badge / Highlight */
.badge-challenger {
	background: #FFC107;
	color: #0B1E4E;
	padding: 6px 14px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Dividers */
.divider-gold {
	width: 60px;
	height: 3px;
	background: #FFC107;
	border-radius: 3px;
	margin: 10px 0 20px 0;
}

/* Stats Card Hover Effect */
.stats-card {
	transition: all 0.3s ease;
	cursor: default;
}

.stats-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(11,30,78,0.12) !important;
}

.stats-card:hover h3 {
	color: #FFC107 !important;
}
