/*

Theme Name: Dolphinclicks 2026

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background-color: #f5f8fa;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
	margin: 0.5rem 1.2rem 0.3rem 1.2rem;
}


/* Styles for the top bar */

.lfm_topbar {
	background: #007bff;
	color: #EEEEEE;
	margin-bottom: 20px;
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: #003e80;
}

/* 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: #EEEEEE;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #024eca;
}

.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: #f2f2f2;
	background: #007bff;
	border-bottom: 1px solid #003e80;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 400;
	cursor: pointer;
}

/* 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: yellow;
	background: #4da3ff;
}



/* Styles for the footer */

.lfm_footer {
	background-color: #001330;
}


/* 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-color:#1468e5;
	border-radius:2px;
	border:1px solid #002175;
	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;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background-color:#3385FF;
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFFFFF;
	background: linear-gradient(180deg, #0e6fa0 0%, #084a70 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;
}


/* ============================================================
   DOLPHIN CLICKS — Tropical Ocean Theme Customizations
   (Colors/layout matched to dolphinclicks.com branding)
   ============================================================ */

:root {
	--dc-cyan:      #2fc5e6;
	--dc-cyan-lt:   #7fe0f2;
	--dc-deep:      #0e6fa0;
	--dc-deep2:     #084a70;
	--dc-navy:      #08344f;
	--dc-gold:      #ffd21a;
}

/* Ocean water body background.
   html carries a solid ocean fallback so no white ever shows behind the
   full-width header/footer or below shorter content columns. */
html {
	background-color: #1a93c4;
}
body {
	background: linear-gradient(180deg, #39c6e6 0%, #23b0d8 45%, #1487b6 100%);
	background-repeat: no-repeat;
	background-size: cover;
	color: #0e2f45;
	min-height: 100vh;
}

/* ---- Slidebar navigation (deep ocean) ---- */
.lfm_slidebar {
	background: linear-gradient(180deg, #0e6fa0 0%, #084a70 100%);
	box-shadow: 2px 0 12px rgba(0,0,0,0.20);
}
.lfm_slidebar > a { display:block; text-align:center; }
.lfm_menu_logo {
	max-height: 46px;
	width: auto;
	margin: 0.7rem auto 0.5rem auto;
	display: block;
}
.lfm_slidebar_mainmenu { padding: 6px 8px; }

/* Menu items styled as light "ocean" buttons with dark, readable text */
.lfm_slidebar_mainmenu li > a {
	background: linear-gradient(180deg, #eafaff 0%, #b6e6f7 100%);
	color: #08415f;
	border: 1px solid #7cc6e4;
	border-radius: 7px;
	margin: 5px 0;
	padding: 0.5rem 0.9rem;
	font-weight: 600;
	box-shadow: 0 1px 2px rgba(3,40,66,0.25), inset 0 1px 0 rgba(255,255,255,0.7);
	transition: all 0.15s ease;
}
.lfm_slidebar_mainmenu li > a span { color: inherit; }
.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	background: linear-gradient(180deg, #ffffff 0%, #d6f2fc 100%);
	color: #05304a;
	border-color: #3fb2dc;
	box-shadow: 0 2px 6px rgba(3,40,66,0.35), inset 0 1px 0 #fff;
	transform: translateY(-1px);
}

/* ---- Top bar ---- */
.lfm_topbar {
	background: linear-gradient(180deg, #0e6fa0 0%, #0a5580 100%);
	color: #eaf7ff;
	margin-bottom: 0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.lfm_slidebar_toggleswitch { color: #eaf7ff; }
.lfm_slidebar_toggleswitch:hover { color: var(--dc-gold); }

/* ---- Main content area ----
   Kept neutral/transparent: the LFM homepage renders full-width marketing
   bands (hero / .infobar / CTA) that intentionally span edge to edge, so a
   framed white card here only produced an empty strip. Plain member-page
   content keeps Bootstrap's default container padding for comfortable
   spacing on the ocean background. */
.content .container-fluid {
	background: transparent;
	padding-top: 0;
	padding-bottom: 20px;
}

/* ============ Custom Header Banner ============ */
/* Features the site's own animated Dolphin Clicks banner on an
   ocean-toned backdrop so it blends into a seamless header. */
.dc-header-banner {
	text-align: center;
	padding: 24px 16px;
	background: linear-gradient(180deg, #8fd9f2 0%, #66d2ea 45%, #3fc2e0 100%);
	border-bottom: 3px solid rgba(255,255,255,0.5);
	box-shadow: inset 0 -18px 26px -14px rgba(3,60,90,0.35);
}
.dc-header-img {
	width: 100%;
	max-width: 780px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(3,45,72,0.30), 0 0 0 1px rgba(255,255,255,0.35);
}

/* ============ Custom Footer Banner ============ */
.dc-footer {
	margin-top: 24px;
	padding: 22px 16px 18px;
	text-align: center;
	color: #eaf9ff;
	background: linear-gradient(180deg, #3fc2e0 0%, #1a93c4 60%, #0e6f9e 100%);
	box-shadow: inset 0 14px 22px -14px rgba(3,60,90,0.4);
}
.dc-footer-content { max-width: 900px; margin: 0 auto; }
.dc-footer-img {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: inline-block;
	border-radius: 5px;
	filter: drop-shadow(0 3px 6px rgba(3,45,72,0.35));
	margin-bottom: 12px;
}
.dc-footer-links { margin: 6px 0; }
.dc-footer-links a {
	color: #ffffff; font-weight: 600; text-decoration: none; margin: 0 12px;
	border-bottom: 1px dotted rgba(255,255,255,0.6);
}
.dc-footer-links a:hover { color: var(--dc-gold); }
.dc-footer-copy { font-size: 13px; color: #e6f7ff; margin-top: 8px; }

/* ============ Mobile adjustments ============ */
@media (max-width: 889px) {
	.dc-header-banner { padding: 16px 12px; }
	.content .container-fluid { margin: 12px 8px; padding: 16px 14px; }
	.dc-footer-links a { margin: 0 8px; }
}