/*

Theme Name: MJTE 2026

Theme URI: http://thetrafficexchangescript.com/

Description: The default theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* ==========================================================================
   Magical Journey TE - Brand Palette
   Mystical purple + teal theme extracted from the site design
   ========================================================================== */
:root {
	--mj-purple-deep: #241a45;   /* darkest indigo (hero top) */
	--mj-purple: #5b30d6;        /* vibrant brand purple */
	--mj-purple-light: #7c4dff;  /* lighter purple accent */
	--mj-mauve: #9d6fa5;         /* muted nav mauve */
	--mj-teal: #2ee6c5;          /* bright teal highlight */
	--mj-teal-dark: #17b89b;     /* deep teal */
	--mj-pink-bg: #f7d9ef;       /* soft pink section bg */
	--mj-lavender-bg: #efeafb;   /* light lavender section bg */
	--mj-dark: #14111f;          /* near-black footer */
	--mj-text: #2a2140;          /* body text */
}


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: var(--mj-text);
	background: linear-gradient(160deg, #f4e6f7 0%, #efeafb 45%, #f7d9ef 100%);
	background-attachment: fixed;
	min-height: 100vh;
}


/* Main styles for the top level of the main menu */

.lfm_menu_bar {
	background: linear-gradient(180deg, #6a4a8f 0%, #4b2f7a 55%, #362258 100%);
	border-bottom: 3px solid var(--mj-teal);
	box-shadow: 0 4px 18px rgba(36, 26, 69, 0.45);
	padding: 12px 0 45px;
	margin-bottom: 20px; /* If your menu bar is overlapping the page content, increase the margin here */
}

/* Center the top-level navigation (logo removed) */
.lfm_menu_bar .navbar {
	justify-content: center;
}
@media (min-width: 992px) {
	.lfm_menu_bar .navbar-nav {
		margin: 0 auto;
	}
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation */
	.lfm_menu_bar {
		padding: 8px 0;
		margin-bottom: 20px;
	}
	.lfm_menu_bar .navbar {
		justify-content: flex-start;
	}
}

/* Mobile hamburger toggle (replaces removed logo) */
.mj-mobile-toggle {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #FFFFFF !important;
	text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.mj-mobile-toggle .fa-bars {
	margin-right: 8px;
	color: var(--mj-teal);
}


/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}


.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Fancy button style for every top level nav item */
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #FFFFFF;
	background: linear-gradient(145deg, #8a5cff 0%, #6236c9 55%, #4a2a9e 100%);
	border-radius: 10px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
	box-shadow: 0 3px 8px rgba(36, 26, 69, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transition: all 0.2s ease-out;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Active/opened tab lights up in bright teal */
	color: #17324a;
	background: linear-gradient(145deg, #52f0d4 0%, #2ee6c5 55%, #17b89b 100%);
	text-shadow: none;
	box-shadow: 0 4px 14px rgba(46, 230, 197, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened - brighten and lift */
	background: linear-gradient(145deg, #2ee6c5 0%, #7c4dff 100%);
	color: #FFFFFF;
	box-shadow: 0 6px 16px rgba(46, 230, 197, 0.5);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened - keep the teal active look */
	color: #17324a;
	background: linear-gradient(145deg, #52f0d4 0%, #2ee6c5 55%, #17b89b 100%);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link .fas,
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link .far {
	margin-right: 5px;
}

@media (min-width: 992px) {
	/* Desktop view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		margin: 0px 6px;
		padding: 9px 20px;
		position: relative;
	}

	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
		transform: translateY(-2px);
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
		/* Flatten the bottom so the tab connects to its dropdown panel */
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		transform: none;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		/* Teal connector bridging the opened tab and the dropdown panel */
		content: "";
		background: linear-gradient(180deg, #2ee6c5 0%, #17b89b 100%);
		width: 100%;
		height: 12px;
		position: absolute;
		bottom: -10px;
		left: 0;
	}
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		padding: 11px 18px;
		margin: 4px 8px;
		text-align: left;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
		/* Returns to the purple button look when a tab is closed in mobile */
		color: #FFFFFF;
		background: linear-gradient(145deg, #8a5cff 0%, #6236c9 55%, #4a2a9e 100%);
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		/* Hover effect when closed in mobile  */
		color: #FFFFFF;
		background: linear-gradient(145deg, #2ee6c5 0%, #7c4dff 100%);
	}
	
	/* Adds an arrow in mobile view */
	.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: #FFFFFF;
		transform: rotate(-90deg);
		position: absolute;
		right: 1.25rem;
		transition: all 0.1s ease-out;
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		color: #17324a;
		transform: rotate(0deg);
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		color: #FFFFFF;
		transform: rotate(-90deg);
	}
}


/* Main styles for the second level of the main menu */

.lfm_menu_tab {
	background-color: #FFFFFF;
	border: 1px solid #d8c9ef;
	border-top: 3px solid var(--mj-teal);
	border-radius: 0 0 8px 8px;
	box-shadow: 0 10px 24px rgba(36, 26, 69, 0.25);
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
}

li.lfm_tab_opened .lfm_menu_tab {
	display: flex;
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the second level navigation */
	.lfm_menu_tab {
		background-color: var(--mj-lavender-bg);
		box-shadow: none;
		border-radius: 0;
		position: relative;
		flex-direction: column;
		top: 0;
		padding: 5px 0;
	}
	li.lfm_tab_closed .lfm_menu_tab {
		display: none;
	}
}


.lfm_menu_tab > li > a {
	/* Sets the navigation links for the second level */
	font-size: 15px;
	padding: 0 20px;
	line-height: 45px;
	color: var(--mj-text);
	text-decoration: none;
	display: block;
	transition: all 0.15s ease-out;
}
.lfm_menu_tab > li > a:hover {
	color: var(--mj-purple);
	background-color: var(--mj-lavender-bg);
}

.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-size: 15px;
	padding: 0 20px;
	line-height: 32px;
	color: var(--mj-text);
	text-decoration: none;
	white-space: nowrap;
	display: block;
}
.lfm_menu_tab .dropdown-menu a:hover {
	color: var(--mj-purple);
}
.lfm_menu_tab .dropdown-menu li:hover {
	background-color: var(--mj-lavender-bg);
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the second level navigation links */
	.lfm_menu_tab > li > a {
		padding-left: 40px;
		line-height: 36px;
		width: 100%;
	}
	
	/* Mobile view settings for the third level navigation links */
	.lfm_menu_tab .dropdown-menu a {
		padding-left: 50px;
	}
}


/* Styles for the footer */

.lfm_footer {
	background: linear-gradient(180deg, #241a45 0%, #14111f 100%);
	color: #FFFFFF;
	border-top: 3px solid var(--mj-teal);
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#3097D1;
	font-size:20px;
	margin-right:5px;
}


/* Profile picture sizes */

.profilepic_small {
	width:40px;
	height:40px;
}

.profilepic_med {
	width:75px;
	height:75px;
}

.profilepic_large {
	width:200px;
	height:200px;
}


/* Various styles */

.buttonlink {
	/* This class defines <a> tag links that look like buttons */
	cursor: pointer;
	background: linear-gradient(145deg, #52f0d4 0%, #2ee6c5 55%, #17b89b 100%);
	border-radius:8px;
	border:none;
	display:inline-block;
	cursor:pointer;
	color:#17324a;
	font-family:arial;
	font-size:18px;
	font-weight:700;
	padding:6px 14px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
	box-shadow: 0 3px 10px rgba(46, 230, 197, 0.4);
	transition: all 0.2s ease-out;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#17324a;
	background: linear-gradient(145deg, #7c4dff 0%, #5b30d6 100%);
	color:#FFFFFF;
	text-decoration:none;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(124, 77, 255, 0.5);
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFFFFF;
	background: linear-gradient(120deg, #5b30d6 0%, #7c4dff 100%);
}
.infobar h2 {
	color:#FFFFFF;
}


.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: "Arial"; color:#333333; font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color:#111111; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}


/* ==========================================================================
   Magical Journey TE - Custom theme additions
   ========================================================================== */

/* --- Header banner (top of every page) --- */
.mj-header-banner {
	width: 100%;
	background: linear-gradient(180deg, #1e1338 0%, #241a45 100%);
	line-height: 0;
	text-align: center;
}
.mj-header-banner img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	max-width: 1900px;
}

/* --- Footer banner (bottom of every page) --- */
.mj-footer-banner {
	width: 100%;
	background: #14111f;
	line-height: 0;
	text-align: center;
}
.mj-footer-banner img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	max-width: 1901px;
}

/* --- Footer text styling --- */
.mj-footer-title {
	color: var(--mj-teal);
	font-weight: 700;
	text-shadow: 0 1px 6px rgba(46, 230, 197, 0.4);
}
.mj-footer-heading {
	color: #ffffff;
	letter-spacing: 1px;
	font-weight: 700;
}
.mj-footer-link {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.15s ease-out;
}
.mj-footer-link:hover {
	color: var(--mj-teal);
	text-decoration: none;
}
.mj-social {
	width: 40px;
	color: #ffffff;
	background: linear-gradient(145deg, #7c4dff 0%, #5b30d6 100%);
	border: none;
	margin-right: 6px;
	font-size: 18px;
	box-shadow: 0 3px 8px rgba(124, 77, 255, 0.4);
}
.mj-social:hover {
	color: #17324a;
	background: linear-gradient(145deg, #52f0d4 0%, #2ee6c5 100%);
}

/* --- Brand-matched Bootstrap buttons (site-wide) --- */
.btn-primary,
.btn-primary:focus {
	background: linear-gradient(145deg, #7c4dff 0%, #5b30d6 100%);
	border: none;
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 3px 10px rgba(91, 48, 214, 0.35);
}
.btn-primary:hover {
	background: linear-gradient(145deg, #8a5cff 0%, #6236c9 100%);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(91, 48, 214, 0.5);
}

.btn-success,
.btn-success:focus {
	background: linear-gradient(145deg, #52f0d4 0%, #17b89b 100%);
	border: none;
	color: #17324a;
	font-weight: 700;
	box-shadow: 0 3px 10px rgba(46, 230, 197, 0.4);
}
.btn-success:hover {
	background: linear-gradient(145deg, #2ee6c5 0%, #14a88d 100%);
	color: #17324a;
	box-shadow: 0 6px 16px rgba(46, 230, 197, 0.55);
}

.btn-info,
.btn-info:focus {
	background: linear-gradient(145deg, #2ee6c5 0%, #17b89b 100%);
	border: none;
	color: #17324a;
	font-weight: 700;
}
.btn-info:hover {
	background: linear-gradient(145deg, #52f0d4 0%, #14a88d 100%);
	color: #17324a;
}

.btn-secondary,
.btn-secondary:focus {
	background: linear-gradient(145deg, #9d6fa5 0%, #6a4a8f 100%);
	border: none;
	color: #ffffff;
}
.btn-secondary:hover {
	background: linear-gradient(145deg, #b184b8 0%, #7c559f 100%);
	color: #ffffff;
}

/* Links throughout the members area */
a {
	color: var(--mj-purple);
}
a:hover {
	color: var(--mj-teal-dark);
}

/* Soft magical card styling for Bootstrap cards / panels */
.card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(36, 26, 69, 0.12);
}

/* Section headings pick up the brand purple */
.lfm_title {
	color: var(--mj-purple-deep);
	font-weight: 700;
}