/*

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 Jason Larremore @ trafficreations.com.

*/


@charset "utf-8";


/* Main font settings */

body {
    font-size: 23px;
    font-weight: 400;
   font-family: "Comic Sans MS", cursive, sans-serif;
    color: #39FF14; /* TEW neon green */
    text-shadow: 1px 1px 1px #001F6D;
}

/* 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: 50px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}

/* Desktop View Settings */
@media (min-width: 992px) {
	
		body {
		margin: 0;
		background-color: #FFFFFF; /* Sets the main background color */
		background-image: url(/themes/i/images/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_template.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: #F3EFF3; /* 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;
	}
  }

/* ===============================
   TE WEEKLY — TOP NAV BAR THEME
   =============================== */

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
    font-size: 20px;
    font-weight: 700;
    color: #39FF14; /* Neon Green Text */
    background: #001F6D; /* Deep Navy Button Base */
    border: 1px solid rgba(255,255,255,0);
    border-radius: 6px;
    padding: 6px 18px;
    transition: all 0.25s ease-in-out;
    text-shadow: 0 0 6px #3A2BFF; /* Blue Glow */
}

/* Hover effect - bright blue with green text */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
    background: #0AA0FF; /* Light TE Blue */
    color: #39FF14; /* Neon Green */
    border-color: #3A2BFF;
    box-shadow: 0 0 10px #3A2BFF, 0 0 18px rgba(58,43,255,0.6);
}

/* OPEN TAB — deep gradient with strong glow */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
    background: linear-gradient(to bottom, #0AA0FF, #001F6D);
    color: #FFFFFF;
    border: 1px solid #39FF14;
    box-shadow: 0 0 12px #39FF14, inset 0 0 8px rgba(57,255,20,0.5);
}

/* OPEN TAB hover stays bright */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
    background: #0AA0FF;
    color: #FFFFFF;
    border-color: #39FF14;
}

/* Desktop version spacing */
@media (min-width: 992px) {
    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
        margin: 0px 4px;
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
        content: "";
        width: calc(100% + 2px);
        height: 14px;
        position: absolute;
        bottom: -10px;
        left: -1px;
        background: transparent;
    }
}

/* ===============================
   MOBILE SETTINGS
   =============================== */

@media (max-width: 991.98px) {
    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
        padding: 10px 15px;
        background: #001F6D;
        color: #39FF14;
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
        background: #001F6D;
        color: #39FF14;
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
        background: #0AA0FF;
        color: #FFFFFF;
    }

    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link:after {
        content: "";
        border-top: 0.3em solid currentColor;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
        transform: rotate(-90deg);
        position: absolute;
        right: 1.25rem;
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
        transform: rotate(0deg);
        color: #39FF14;
    }
}



/* ==========================================
   TE WEEKLY — SECOND LEVEL MAIN MENU (Tabs)
   ========================================== */

.lfm_menu_tab {
    background: #001F6D; /* Deep navy to match top bar */
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100%;
    font-weight: 700;
    border: 1px solid #39FF14; /* Neon green edge */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* Show second level when tab is opened */
li.lfm_tab_opened .lfm_menu_tab {
    display: flex;
}

/* ---------- DESKTOP LINKS (SECOND LEVEL) ---------- */

.lfm_menu_tab > li > a {
    font-size: 20px;
    padding: 0 22px;
    line-height: 46px;
    color: #39FF14;                 /* Neon green text */
    text-decoration: none;
    display: block;
    background: transparent;
    text-shadow: 0 0 5px #3A2BFF;   /* Soft blue glow */
    transition: all 0.2s ease-in-out;
    border-right: 5px solid rgba(58,43,255,0.25);
}

.lfm_menu_tab > li:last-child > a {
    border-right: none;
}

/* Hover for second level */
.lfm_menu_tab > li > a:hover {
    background: #0AA0FF;            /* Light TE blue */
    color: #FFFFFF;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
}

/* ---------- THIRD LEVEL DROPDOWN (INSIDE TABS) ---------- */

.lfm_menu_tab .dropdown-menu {
    background: #001540;
    border: 1px solid #3A2BFF;
    box-shadow: 0 6px 16px rgba(0,0,0,0.55);
}

.lfm_menu_tab .dropdown-menu a {
    font-size: 15px;
    padding: 0 22px;
    line-height: 32px;
    color: #39FF14;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    background: transparent;
    transition: all 0.15s ease-in-out;
}

.lfm_menu_tab .dropdown-menu a:hover {
    background-color: #0AA0FF;
    color: #FFFFFF;
    text-decoration: none;
}

/* ---------- MOBILE ADJUSTMENTS ---------- */

@media (max-width: 991.98px) {
    .lfm_menu_tab {
        background-color: #001540;
        position: relative;
        flex-direction: column;
        top: 0;
        padding: 5px 0;
        border-top: 1px solid #3A2BFF;
        border-bottom: 1px solid #3A2BFF;
    }

    li.lfm_tab_closed .lfm_menu_tab {
        display: none;
    }

    .lfm_menu_tab > li > a {
        padding-left: 40px;
        line-height: 38px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(58,43,255,0.25);
    }

    .lfm_menu_tab > li:last-child > a {
        border-bottom: none;
    }

    .lfm_menu_tab .dropdown-menu a {
        padding-left: 50px;
        background: transparent;
    }
}


/* ===============================
   TE WEEKLY — FOOTER & GLOBAL UI
   =============================== */

/* Footer bar */
.lfm_footer {
    background: radial-gradient(circle at top, #0AA0FF 0%, #001F6D 55%, #000b33 100%);
    border-top: 2px solid #39FF14;         /* neon edge */
    color: #FFFFFF;
    padding: 18px 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.55);
    text-align: center;
}

.lfm_footer a {
    color: #39FF14;
    font-weight: 600;
    text-decoration: none;
}

.lfm_footer a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 6px #3A2BFF;
    text-decoration: none;
}

/* Icon settings */

.far, .fas {
    margin-right: 3px;
}

.feedicon {
    color: #0AA0FF;
    font-size: 20px;
    margin-right: 5px;
}


/* Profile picture sizes */

.profilepic_small  { width:40px;  height:40px;  border-radius:6px; }
.profilepic_med    { width:75px;  height:75px;  border-radius:8px; }
.profilepic_large  { width:200px; height:200px; border-radius:12px; }


/* ===============================
   Buttons / Links
   =============================== */

.buttonlink {
    cursor: pointer;
    display: inline-block;
    margin: 2px 1px;
    padding: 5px 10px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(to right, #39FF14, #0AA0FF);
    border-radius: 4px;
    border: 1px solid #3A2BFF;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(58,43,255,0.7);
    transition: all 0.2s ease-in-out;
}

.buttonlink:hover {
    color: #FFFFFF;
    background: linear-gradient(to right, #0AA0FF, #39FF14);
    box-shadow: 0 0 14px #39FF14, 0 0 24px rgba(58,43,255,0.8);
    text-decoration: none;
}


/* ===============================
   Info bars / full-width strips
   =============================== */

.infobar {
    width: 100%;
    padding: 15px 0;
    color: #FFFFFF;
    background: linear-gradient(to right, #001540, #001F6D, #0AA0FF);
    box-shadow: 0 3px 10px rgba(0,0,0,0.45);
}

.infobar h2 {
    color: #39FF14;
    text-shadow: 0 0 6px #3A2BFF;
}

/* vertical centering helper */
.vcenter {
    display: flex;
    align-items: center;
}


/* ===============================
   Text styles
   =============================== */

.lfm_title {
    font-family: Arial, sans-serif;
    color: #001F6D;
    font-size: 32px;
    text-shadow: 0 0 6px rgba(58,43,255,0.4);
}

.lfm_descr {
    font-family: Arial, sans-serif;
    color: #111111;
    font-size: 16px;
}

.lfm_descr_bold {
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

/* ===============================
   Tables — TE Weekly look
   =============================== */

/* Apply class="table tew_table" or class="tew_table" on key tables */
.tew_table {
    border-collapse: collapse;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

.tew_table thead th {
    background: linear-gradient(to bottom, #0AA0FF, #001F6D);
    color: #39FF14;
    font-weight: 700;
    padding: 8px 10px;
    border-bottom: 2px solid #39FF14;
    text-shadow: 0 0 5px #3A2BFF;
}

.tew_table tbody td {
    padding: 7px 10px;
    border-bottom: 1px solid #e0e0e0;
}

.tew_table tbody tr:nth-child(odd) {
    background-color: #f7faff;
}

.tew_table tbody tr:hover {
    background-color: #e3f3ff;
}
