/*

Theme Name: Bridge2May2026

Theme URI: http://thetrafficexchangescript.com/

Description: A purple sunset themed sidebar for LFMTE traffic exchanges featuring Golden Gate Bridge silhouette.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";

/* Purple Sunset Color Palette */
:root {
	--purple-deep: #1a0a2e;
	--purple-dark: #2d1854;
	--purple-mid: #5b2d8e;
	--purple-light: #8b5fbf;
	--sunset-orange: #e8752a;
	--sunset-pink: #d94f7a;
	--sunset-gold: #f0a030;
	--sky-purple: #4a1a6b;
	--text-color: #000000;
	--text-light: #000000;
	--sidebar-bg: #2d1854;
	--menu-bg: #6b3fa0;
	--menu-hover: #8b5fbf;
	--topbar-bg: linear-gradient(135deg, #5b2d8e, #d94f7a);
}

/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #000000;
	background: linear-gradient(180deg, #1a0a2e 0%, #2d1854 30%, #4a1a6b 60%, #1a0a2e 100%);
	background-attachment: fixed;
	min-height: 100vh;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
	background-color: #ffffff;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
	margin: 0.5rem 1.2rem 0.3rem 1.2rem;
	filter: brightness(1.2);
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(135deg, #5b2d8e, #d94f7a, #e8752a);
	color: #ffffff;
	margin-bottom: 0px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


/* Golden Gate Bridge Header Banner */
.custom-header-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.header-background {
	position: relative;
	width: 100%;
	height: 200px;
	background: linear-gradient(
		180deg,
		#e8752a 0%,
		#d94f7a 25%,
		#8b5fbf 50%,
		#5b2d8e 75%,
		#2d1854 100%
	);
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.header-background .bridge-silhouette {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.header-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-bottom: 15px;
}

.header-content h1 {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 117, 42, 0.5);
	margin: 0;
	letter-spacing: 2px;
}

.header-content p {
	font-size: 14px;
	color: #e0d0f0;
	margin: 5px 0 0 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.header-decoration {
	height: 4px;
	background: linear-gradient(90deg, #e8752a, #d94f7a, #8b5fbf, #d94f7a, #e8752a);
}

/* Sun circle in the header */
.sunset-sun {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, #f0a030 0%, #e8752a 50%, rgba(217, 79, 122, 0) 70%);
	border-radius: 50%;
	filter: blur(2px);
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: linear-gradient(180deg, #2d1854 0%, #1a0a2e 100%);
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

/* Desktop View Settings - Expand the slidebar by default */
@media (min-width: 890px) {
	.lfm_slidebar {
		margin-left: 0px;
	}
	.lfm_slidebar.toggled {
		margin-left: -225px;
	}
}

/* Mobile View Settings - Collapse the slidebar by default */
@media (max-width: 889px) {
	.lfm_slidebar {
		margin-left: -225px;
	}
	.lfm_slidebar.toggled {
		margin-left: 0px;
	}
}

.lfm_slidebar_toggleswitch {
	cursor: pointer;
	font-size: 24px;
	color: #ffffff;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #f0a030;
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	overflow: auto;
}


/* This sets the style of the slidebar menu items */
.lfm_slidebar_mainmenu li > a {
	color: #ffffff;
	background: linear-gradient(135deg, #8b5fbf, #6b3fa0);
	border-bottom: 1px solid #2d1854;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* This sets the colors of the slidebar menu links when you hover over them */
.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	color: #ffffff;
	background: linear-gradient(135deg, #d94f7a, #e8752a);
}


/* Badge images in sidebar */
.sidebar-badges {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 10px;
	gap: 12px;
}

.sidebar-badges img {
	max-width: 125px;
	height: auto;
	border-radius: 4px;
	transition: transform 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.sidebar-badges img:hover {
	transform: scale(1.05);
}

.sidebar-badges .badge-label {
	color: #e0d0f0;
	font-size: 13px;
	text-align: center;
	margin-top: -5px;
	font-weight: 500;
}


/* Styles for the footer */

.lfm_footer {
	background: linear-gradient(135deg, #1a0a2e, #2d1854);
}


/* Icon settings */

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

.feedicon {
	color: #8b5fbf;
	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 {
	cursor: pointer;
	background: linear-gradient(135deg, #6b3fa0, #5b2d8e);
	border-radius: 4px;
	border: 1px solid #2d1854;
	display:inline-block;
	cursor:pointer;
	color: #ffffff;
	font-family:arial;
	font-size:18px;
	font-weight:500;
	padding:4px 7px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
	transition: all 0.3s ease;
}
.buttonlink:hover {
	color: #ffffff;
	background: linear-gradient(135deg, #8b5fbf, #d94f7a);
	text-decoration:none;
}


.infobar {
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #ffffff;
	background: linear-gradient(135deg, #5b2d8e, #2d1854);
}
.infobar h2 {
	color: #ffffff;
}


.vcenter {
	display: flex;
	align-items: center;
}


/* Text styles used throughout the LFM Members Area */
.lfm_title {
	font-family: "Arial"; color: #000000; font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color: #000000; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color: #000000; font-size:16px;
	font-weight:700;
}


/* Content area styling */
.content {
	background-color: rgba(255, 255, 255, 0.95);
	min-height: 60vh;
	border-radius: 0;
	margin: 0 15px 15px 15px;
	padding: 15px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Card and panel overrides for purple theme */
.card {
	border-color: #8b5fbf;
}

.card-header {
	background: linear-gradient(135deg, #5b2d8e, #6b3fa0);
	color: #ffffff;
	border-bottom-color: #8b5fbf;
}

/* Table styling */
.table thead th {
	background: linear-gradient(135deg, #5b2d8e, #6b3fa0);
	color: #ffffff;
	border-color: #8b5fbf;
}

/* Button overrides to match theme */
.btn-primary {
	background: linear-gradient(135deg, #6b3fa0, #5b2d8e);
	border-color: #5b2d8e;
	color: #ffffff;
}
.btn-primary:hover {
	background: linear-gradient(135deg, #8b5fbf, #6b3fa0);
	border-color: #6b3fa0;
	color: #ffffff;
}

.btn-success {
	background: linear-gradient(135deg, #e8752a, #d94f7a);
	border-color: #d94f7a;
	color: #ffffff;
	font-weight: 600;
}
.btn-success:hover {
	background: linear-gradient(135deg, #f0a030, #e8752a);
	border-color: #e8752a;
	color: #ffffff;
}

.btn-info {
	background: linear-gradient(135deg, #8b5fbf, #5b2d8e);
	border-color: #5b2d8e;
	color: #ffffff;
}

/* Link colors */
a {
	color: #5b2d8e;
}
a:hover {
	color: #d94f7a;
}

/* Navbar link overrides */
.lfm_topbar a {
	color: #ffffff;
}
.lfm_topbar a:hover {
	color: #f0a030;
}

/* Logo text in sidebar */
.lfm_menu_logo_text,
.lfm_slidebar > a {
	color: #ffffff;
}

/* Responsive adjustments for header */
@media (max-width: 889px) {
	.header-background {
		height: 150px;
	}
	.header-content h1 {
		font-size: 22px;
	}
	.sunset-sun {
		width: 60px;
		height: 60px;
		top: 10px;
	}
}

@media (max-width: 480px) {
	.header-background {
		height: 120px;
	}
	.header-content h1 {
		font-size: 18px;
	}
}
