/*

Theme Name: My Theme Name

Theme URI: https://mydomainname/

Description: The theme for LFMTE traffic exchanges.

Version: 1.0

Author: Josh Abbott. 
Design Modifications by Ian Cormier.

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 24px;
	font-family: "Arial Black", Gadget, sans-serif;
font-size: 25px;
	color: #EAF7FF;
	font-weight: 400;
	color: #3CDAFB;
	background-color: #030520;
}


/* Main styles for the top level of the main menu */

.lfm_menu_bar {

padding: 0 0 45px;
	margin-bottom: 20px; /* 
/* If your menu bar is overlapping the page content, increase the margin here */
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation */
	.lfm_menu_bar {
		padding-bottom: 0;
		margin-bottom: 20px;
	}
}


/* Site logo styles */

.lfm_menu_logo {
	max-height: 75px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}

/* Desktop View Settings */
@media (min-width: 992px) {
	
		body {
		margin: 0;
background: #030520;
background: -moz-linear-gradient(left, #030520 0%, #3A62E3 50%, #030520 100%);
background: -webkit-linear-gradient(left, #030520 0%, #3A62E3 50%, #030520 100%);
background: linear-gradient(to right, #030520 0%, #3A62E3 50%, #030520 100%);
}; /* Sets the main background color */
		background-image: url(/themes/i/header_bg.jpg); /* Sets the header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 1500px;
		height: 300px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: transparent;
	}
	
	#header {
		background-image: url(/themes/i/header.png); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: transparent;
		width: 1500px;
		height: 300px;
	}
}
/* Mobile View Settings */
@media (max-width: 992px) {
	
	body {
		margin: 0;
		background-color: #060B5A; /* Sets the main background color */
		background-image: url(/themes/i/images/mobile_header_bg.jpg); /* Sets the mobile header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 300px;
		height: 75px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color:transparent;
	}
	
	#header {
		background-image: url(/themes/i/images/mobile_header.png); /* Sets the mobile header image */
		background-repeat: no-repeat;
		width: 300px;
		height: 75px;
		background-color: transparent;
	}
  }

/* ============================
   LFM Menu Bar – TRAFFIC CREATIONS (Neon Blue/Purple)
   - NO logic changes
   - Buttons keep same feel, just updated palette
   ============================ */

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Base tab */
	font-size: 17px;
	color: #3CDAFB; /* neon cyan */
	font-weight: 700;
	border-radius: 8px;
	padding: 8px 18px;
	margin: 0 4px;

	border: 1px solid rgba(60,218,251,.18);

	/* subtle cyber glow under each tab */
	background:
		radial-gradient(circle at 50% 130%, rgba(60,218,251,.16) 0%, rgba(118,51,230,.05) 38%, transparent 72%);

	transition:
		background .25s ease,
		color .25s ease,
		box-shadow .25s ease,
		transform .15s ease,
		border-color .25s ease;

	box-shadow:
		inset 0 0 0 rgba(0,0,0,0),
		0 0 0 rgba(0,0,0,0);

	position: relative;
}

/* OPENED tab */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	background: linear-gradient(180deg, #32A5F3 0%, #1644B3 45%, #7633E6 100%);
	color: #EAF7FF;
	font-weight: 700;

	border: 1px solid rgba(60,218,251,.55);

	box-shadow:
		0 0 16px rgba(60,218,251,.45),
		0 10px 26px rgba(118,51,230,.28),
		inset 0 0 12px rgba(255,255,255,.12);

	transform: translateY(-1px);
}

/* HOVER (closed) */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	color: #FFFFFF;

	background: linear-gradient(180deg, #3CDAFB 0%, #1644B3 55%, #C957F5 140%);

	border: 1px solid rgba(201,87,245,.55);

	box-shadow:
		0 0 18px rgba(60,218,251,.52),
		0 10px 28px rgba(201,87,245,.22),
		inset 0 0 10px rgba(255,255,255,.10);

	transform: translateY(-2px);
}

/* HOVER when already OPENED */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	background: linear-gradient(180deg, #7BD9FA 0%, #32A5F3 40%, #7633E6 100%);
	color: #FFFFFF;

	border-color: rgba(60,218,251,.75);

	box-shadow:
		0 0 20px rgba(60,218,251,.60),
		0 12px 30px rgba(118,51,230,.30),
		inset 0 0 12px rgba(255,255,255,.14);
}

/* ===== Desktop ===== */
@media (min-width: 992px) {
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		margin: 0 4px;
	}

	/* keep your existing "opened tab underline spacer" logic */
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		content: "";
		background: transparent;
		width: calc(100% + 2px);
		height: 14px;
		position: absolute;
		bottom: -10px;
		left: -1px;
	}
}

/* ===== Mobile ===== */
@media (max-width: 991.98px) {
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		padding: 10px 16px;
		text-align: left;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
		color: #EAF7FF;
		background: linear-gradient(180deg, #030520 0%, #0A1A8F 60%, #1644B3 140%);
		border: 1px solid rgba(60,218,251,.35);
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		color: #FFFFFF;
		background: linear-gradient(180deg, #3CDAFB 0%, #1644B3 55%, #C957F5 140%);
		border-color: rgba(201,87,245,.55);
	}

	/* mobile dropdown arrow */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:after {
		content: "";
		border-top: 0.3em solid;
		border-right: 0.3em solid transparent;
		border-left: 0.3em solid transparent;

		/* match theme */
		color: #7BD9FA;

		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 {
		transform: rotate(0deg);
		color: #C957F5;
	}

	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		transform: rotate(-90deg);
	}
}


/* ============================================
   Main styles for the second level of the menu
   Neon-aqua theme with animated hover effects
   ============================================ */

.lfm_menu_tab {
  background:
    radial-gradient(1200px 600px at 20% -20%, rgba(60,218,251,.10), transparent 60%),
    radial-gradient(1000px 600px at 90% 0%, rgba(60,218,251,.08), transparent 60%),
    #030520;
  position: absolute;
  display: none;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
  font-weight: 700;
  border: 10px solid #3CDAFB;
  box-shadow:
    inset 0 0 40px rgba(60,218,251,.15),
    0 10px 30px rgba(0,0,0,.55);
}

li.lfm_tab_opened .lfm_menu_tab {
  display: flex;
}

/* ===== Mobile ===== */
@media (max-width: 991.98px) {
  .lfm_menu_tab {
    background: linear-gradient(180deg, #060B5A 0%, #030520 100%);
    position: relative;
    flex-direction: column;
    top: 0;
    padding: 6px 0;
    border-width: 6px;
  }
  li.lfm_tab_closed .lfm_menu_tab { display: none; }
}

/* ============================================
   Second level links – TRAFFIC CREATIONS UPGRADE
   ============================================ */

.lfm_menu_tab > li > a {
  font-size: 17px;
  padding: 0 18px;
  line-height: 46px;
  color: #3CDAFB; /* neon cyan */
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 10px;

  border: 1px solid rgba(60,218,251,.18);

  /* deeper space glow */
  background:
    radial-gradient(160% 140% at 50% 130%, rgba(60,218,251,.18) 0%, rgba(118,51,230,.08) 45%, transparent 75%);

  transition:
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .15s ease,
    border-color .25s ease;

  overflow: hidden;
}

/* Shine sweep stays same, just stronger */
.lfm_menu_tab > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  height: 100%;
  width: 120%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.28) 45%,
    rgba(255,255,255,0) 90%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

/* Bottom neon streak */
.lfm_menu_tab > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #3CDAFB,
    #C957F5,
    transparent
  );

  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  transform: scaleX(.5);
}

/* ============================
   HOVER
   ============================ */
.lfm_menu_tab > li > a:hover {
  background: linear-gradient(
    180deg,
    #3CDAFB 0%,
    #1644B3 45%,
    #7633E6 100%
  );

  color: #FFFFFF;
  border-color: rgba(201,87,245,.55);

  box-shadow:
    0 8px 22px rgba(60,218,251,.35),
    0 0 18px rgba(201,87,245,.25),
    inset 0 0 12px rgba(255,255,255,.12);

  transform: translateY(-3px);
}

/* Shine animation */
.lfm_menu_tab > li > a:hover::before {
  animation: shineSweep .8s ease forwards;
  opacity: 1;
}

.lfm_menu_tab > li > a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ============================
   ACTIVE CLICK
   ============================ */
.lfm_menu_tab > li > a:active {
  background: linear-gradient(
    180deg,
    #1644B3 0%,
    #7633E6 100%
  );
  color: #FFFFFF;
  box-shadow:
    0 4px 14px rgba(60,218,251,.35),
    inset 0 0 10px rgba(255,255,255,.10);
}

/* ============================================
   Third level (dropdown-menu) links
   – TRAFFIC CREATIONS NEON UPGRADE
   ============================================ */

.lfm_menu_tab .dropdown-menu a {
  font-size: 15px;
  padding: 0 20px;
  line-height: 34px;
  color: #EAF7FF;
  text-decoration: none;
  white-space: nowrap;
  display: block;

  border-radius: 8px;
  margin: 4px 12px;

  border: 1px solid rgba(60,218,251,.25);

  /* deeper neon glass base */
  background: linear-gradient(
    180deg,
    #0A1A8F 0%,
    #1644B3 55%,
    #7633E6 140%
  );

  transition:
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease,
    transform .12s ease,
    border-color .22s ease;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 4px 12px rgba(60,218,251,.18),
    inset 0 0 8px rgba(255,255,255,.05);
}

/* Shine sweep stays — just slightly stronger */
.lfm_menu_tab .dropdown-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  height: 100%;
  width: 120%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.26) 45%,
    rgba(255,255,255,0) 90%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

/* ============================
   HOVER – bigger bump
   ============================ */
.lfm_menu_tab .dropdown-menu a:hover {
  background: linear-gradient(
    180deg,
    #3CDAFB 0%,
    #1644B3 45%,
    #C957F5 130%
  );

  color: #FFFFFF;
  border-color: rgba(201,87,245,.65);

  box-shadow:
    0 8px 22px rgba(60,218,251,.45),
    0 0 18px rgba(201,87,245,.30),
    inset 0 0 10px rgba(255,255,255,.12);

  transform: translateY(-2px);
}

.lfm_menu_tab .dropdown-menu a:hover::before {
  animation: shineSweep .9s ease forwards;
  opacity: 1;
}

/* ===== Mobile spacing ===== */
@media (max-width: 991.98px) {
  .lfm_menu_tab > li > a {
    padding-left: 40px;
    line-height: 40px;
    width: 100%;
    margin: 2px 8px;
  }

  .lfm_menu_tab .dropdown-menu a {
    padding-left: 50px;
    margin: 4px 10px;
  }
}
/* ============================================
   Animations
   ============================================ */
@keyframes shineSweep {
  0%   { left: -130%; opacity: 0; }
  15%  { opacity: .5; }
  50%  { opacity: .35; }
  100% { left: 130%; opacity: 0; }
}



/* ==========================
   Footer — Aqua/Deep Blue
   ========================== */
.lfm_footer {
  /* deep navy edges fading into bright aqua center */
  background: #030520;
  background: -moz-linear-gradient(left,
              #030520 0%,
              #1644B3 50%,
              #030520 100%);
  background: -webkit-linear-gradient(left,
              #030520 0%,
              #1644B3 50%,
              #030520 100%);
  background: linear-gradient(to right,
              #030520 0%,
              #1644B3 50%,
              #030520 100%);
  
  color: #EAF7FF;         /* readable light text */
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid #3CDAFB;
  box-shadow: 0 -2px 12px rgba(60,218,251,.25);
}

.lfm_footer a {
  color: #3CDAFB;
  text-decoration: none;
  font-weight: 600;
}
.lfm_footer a:hover {
  color: #7BD9FA;
  text-decoration: underline;
}



/* ===========================================
   Global look — deep blue background + aqua
   =========================================== */
/* ===== Futuristic Body Style ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

body {
  /* layered cosmic gradient with faint grid highlights */
  background:
    radial-gradient(1600px 900px at 20% 20%, rgba(60,218,251,.08), transparent 70%),
    radial-gradient(1200px 700px at 80% 60%, rgba(60,218,251,.06), transparent 70%),
    linear-gradient(135deg, #030520 0%, #060B5A 50%, #030520 100%);
  color: #EAF7FF;
  font-family: 'Orbitron', Arial, Helvetica, sans-serif;
  margin: 0;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

/* optional subtle animated grid overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(0deg, rgba(60,218,251,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,218,251,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 60px 60px, 60px 60px; }
}


/* Icons */
.far, .fas {
  margin-right: 3px;
  color: #3CDAFB;
}

/* Feed icon */
.feedicon {
  color: #3CDAFB;
  font-size: 20px;
  margin-right: 5px;
}

/* Profile pictures */
.profilepic_small { width:40px; height:40px; border-radius:10px; }
.profilepic_med   { width:75px; height:75px; border-radius:14px; }
.profilepic_large { width:200px; height:200px; border-radius:18px; }

/* Buttons with aqua gradient + smooth hover */
.buttonlink {
  cursor: pointer;
  background: linear-gradient(180deg, #3CDAFB, #32A5F3);
  border-radius: 12px;
  border: 1px solid #3CDAFB;
  display: inline-block;
  color: #030520;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 16px;
  margin: 4px 3px;
  text-decoration: none;
  box-shadow: inset 0 0 8px rgba(255,255,255,.12),
              0 6px 18px rgba(60,218,251,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.buttonlink:hover {
  background: linear-gradient(180deg, #7BD9FA, #3CDAFB);
  transform: translateY(-1px);
  box-shadow: inset 0 0 10px rgba(255,255,255,.15),
              0 8px 22px rgba(60,218,251,.35);
  text-decoration: none;
}

/* ===== Enhanced Info Bar ===== */
.infobar {
  width: 100%;
  padding: 18px clamp(12px, 2vw, 24px);
  color: #EAF7FF;
  background:
    radial-gradient(1200px 600px at 20% -30%, rgba(60,218,251,.18), transparent 60%),
    linear-gradient(180deg, #060B5A 0%, #030520 100%);
  border-top: 2px solid #3CDAFB;
  border-bottom: 2px solid #3CDAFB;
  box-shadow:
    0 8px 26px rgba(0, 208, 255, .20),
    inset 0 0 16px rgba(0, 208, 255, .10);
  position: relative;
  overflow: hidden;
}
.infobar::before {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7BD9FA, transparent);
  opacity: .75;
  animation: infobarSweep 3.5s linear infinite;
}
.infobar h2 {
  color: #EAF7FF;
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: .2px;
}
.infobar .sub {
  margin: 4px 0 0 0;
  color: #C8B6E1;
  font-size: 14px;
  opacity: .95;
}
.infobar .chip {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 8px;
  border-radius: 999px;
  border: 1px solid #3CDAFB;
  background: rgba(60,218,251,.10);
  font-size: 12px;
  color: #EAF7FF;
}
.infobar .btn-mini {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3CDAFB 0%, #32A5F3 100%);
  border: 1px solid #3CDAFB;
  color: #030520;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 6px 18px rgba(60,218,251,.25), inset 0 0 8px rgba(255,255,255,.12);
}
.infobar .btn-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(60,218,251,.32), inset 0 0 10px rgba(255,255,255,.14);
}
@keyframes infobarSweep {
  0%   { left: -40%; }
  100% { left: 140%; }
}

/* Vertical center helper */
.vcenter {
  display: flex;
  align-items: center;
}

/* Text styles */
.lfm_title {
  font-size: 32px;
  font-weight: 700;
  color: #EAF7FF;
}
.lfm_descr {
  font-size: 16px;
  color: #C8B6E1;
}
.lfm_descr_bold {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ===========================================
   Table styling
   =========================================== */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #3CDAFB;
  border-radius: 14px;
  overflow: hidden;
  background: #060B5A; /* deep blue table bg */
  box-shadow: 0 0 18px rgba(60,218,251,.25);
}

thead th {
  text-align: left;
  padding: 12px 14px;
  background: linear-gradient(180deg, #0A1A8F, #461BA2);
  color: #EAF7FF;
  font-weight: 900;
  letter-spacing: .2px;
  border-bottom: 1px solid #3CDAFB;
}

tbody td {
  padding: 14px;
  color: #EAF7FF;
  background: #030520;
  border-bottom: 1px solid rgba(60,218,251,.15);
}

tbody tr:nth-child(even) td {
  background: #060B5A;
}

tbody tr:hover td {
  background: #0A1A8F;
}

table img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,.2);
}
/* ==== Dark-Aqua Panels / Forms ====
   Applies to all plain white panels, forms, and tables
   you showed in the screenshot
*/
.modal-content,
.panel,
.card,
table.table,
table,
form,
.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  background: #030520 !important;               /* deep navy base */
  color: #EAF7FF !important;                    /* light text */
  border: 1px solid #3CDAFB !important;         /* aqua border */
  border-radius: 12px !important;
  box-shadow:
    0 0 20px rgba(60,218,251,.25),
    inset 0 0 12px rgba(60,218,251,.08) !important;
}

/* Table header row */
table thead th {
  background: linear-gradient(180deg, #0A1A8F, #461BA2) !important;
  color: #EAF7FF !important;
  border-bottom: 1px solid #3CDAFB !important;
}

/* Table body rows */
table tbody td {
  background: #030520 !important;
  color: #EAF7FF !important;
  border-bottom: 1px solid rgba(60,218,251,.2) !important;
}
table tbody tr:nth-child(even) td {
  background: #060B5A !important;
}
table tbody tr:hover td {
  background: #0A1A8F !important;
}

/* Inputs and textareas inside dark panels */
input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  background: #060B5A !important;
  color: #EAF7FF !important;
  border: 1px solid #3CDAFB !important;
  border-radius: 8px !important;
}
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: #7BD9FA !important;
  box-shadow: 0 0 10px rgba(60,218,251,.4) !important;
}

/* Buttons inside these panels */
button,
input[type="submit"] {
  background: linear-gradient(180deg, #3CDAFB 0%, #32A5F3 100%) !important;
  color: #030520 !important;
  border: 1px solid #3CDAFB !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: transform .15s ease, box-shadow .15s ease;
}
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(180deg, #7BD9FA 0%, #3CDAFB 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(60,218,251,.35) !important;
}