/*

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: 20px;
	font-weight: 400;
	color: #eecb00;
	background-color: #F3EFF3;
}


/* 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: #0a1029; /* 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/images/header_template.png); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: transparent;
		width: 1500px;
		height: 300px;
	}
}

.image-border {
    border: 6px solid #003366; /* Dark blue border */
    border-radius: 10px; /* Rounded corners */
    display: inline-block; /* Wraps tightly around the image */
}

.futuristic-font {
    font-family: 'Roboto Mono', monospace; /* Use Roboto Mono */
    font-size: 1.125rem; /* Adjust size as needed */
   
}



/* 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;
	}
  }

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Sets the navigation tabs for the top level */
	font-size: 17px;
	color: #FEFE00;
font-weight: 700;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Changes the colors when a tab is opened */
background: rgb(236, 0, 0);
color: #FFFFFF;
font-weight: 700;
border: 8px solid #FEFE00;
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	background-color: #FEFE00;
	color:#000000;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	background-color: #D65051;
	color:#fff;
	
}

@media (min-width: 992px) {
	/* Desktop view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		margin: 0px 3px;
		padding: 6px 15px;
		border: 1px solid rgba(255,255,255,0);
		border-radius: 5px;
		position: relative;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link,
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
		border: 1px solid #D65051;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		/* Fills in the gap between an opened tab and the bottom of the bar */
		content: "";
		background-color: transparent;
		width: calc(100% + 2px);
		height: 14px;
		position: absolute;
		bottom: -10px;
		left: -1px;
		border: 0px solid #DDDDDD;
		border-top: none;
	}
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		padding: 8px 15px;
		text-align: left;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
		/* Returns to the original colors when a tab is closed in mobile */
		color: #FFFFFF;
		background-color: #007bff;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		/* Returns to the original hover effect when closed in mobile  */
		color: #FFFFFF;
		background-color: #089cff;
	}
	
	/* 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: #7a3e18;
		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: rgb(236, 0, 0);
position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
font-weight: 700;
border: 10px solid #FEFE00;
}

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: #EEEEEE;
		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: 17px;
	padding: 0 20px;
	line-height: 45px;
	color: #660000;
	text-decoration: none;
	display: block;
}
.lfm_menu_tab > li > a:hover {
background: rgb(254, 254, 0);
color: #000000;
}

.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-size: 15px;
	padding: 0 20px;
	line-height: 32px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	display: block;
	background-color: rgb(236, 0, 0);
}
.lfm_menu_tab .dropdown-menu a:hover {
	background-color: #FEFE00;
color: #000000;
	text-decoration: none;
}

@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(to right, #F9DB24, #ff0000, #ff6f00, #F9DB24); /* Neon yellow on edges, red and orange in the center */
            color: #000000; /* Text color for better contrast */
    
     
    padding-bottom: 0; /* Remove bottom padding */
}
      
.lfm_footer .row {
    margin-bottom: -10px; /* Removes bottom margin from the row */

}

.lfm_footer .col {
    margin-bottom: 0; /* Remove bottom margin from columns */
}

.lfm_footer ul {
    margin-bottom: 0; /* Ensures no extra space below lists */
}


/* 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 #FF0000;
	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-color:#555555;
}
.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:34px;
}

.lfm_descr {
	font-family: "Arial"; color:#111111; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}

.neon-button {
  font-size: 18px;
  background-color: #1a2b47; /* Black background */
  color: white; /* Neon blue text */
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 
    0 0 8px #2323FF,   /* Close, soft neon glow */
    0 0 16px #2323FF,  /* Medium neon glow */
    0 0 32px #2323FF,  /* Bright blue glow */
    0 0 48px #2323FF,  /* Stronger glow effect */
    0 0 64px #2323FF;  /* Extended, intense glow */
}
.rsignup-link {
  color: #2CFF05; /* White text */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Remove underline */
  padding: 5px 10px; /* Add padding around the link */
  background-color: #2323FF; /* Neon blue background */
  border-radius: 5px; /* Rounded corners for button-like look */
  box-shadow: 0 0 5px #2323FF, 0 0 15px #2323FF; /* Neon glow effect */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.rsignup-link:hover {
  background-color: #1a1a9a; /* Slightly darker shade on hover */
  box-shadow: 0 0 20px #2323FF, 0 0 30px #2323FF; /* Enhanced glow on hover */
}

.partner-button {
    
  font-size: 18px;
  background: linear-gradient(145deg, #FF4500, #FF6347, #FFD700); /* Neon orange, neon red, neon yellow gradient */
  color: #000000; /* White text color */
  font-weight: bold; /* Bold text */
  padding: 10px 20px;
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  box-shadow: 
    0 0 8px #FF4500,  /* Soft neon orange glow */
    0 0 16px #FF6347, /* Medium neon red glow */
    0 0 24px #FFD700; /* Intense neon yellow glow */
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.5s ease; /* Smooth transitions */
}

.partner:hover {
  background: linear-gradient(145deg, #FFD700, #FF6347, #FF4500); /* Reversed gradient for hover */
  box-shadow: 
    0 0 12px #FF4500, /* Enhanced neon orange glow */
    0 0 24px #FF6347, /* Stronger neon red glow */
    0 0 32px #FFD700; /* Powerful neon yellow glow */
  transform: translateY(-2px); /* Lift effect */
}

.partner:active {
  transform: translateY(0); /* Slight click effect */
}

/* Navigation Bar */
        .navbar1 {
            background-color: #0a1029;
            overflow: hidden;
            padding: 10px;
            text-align: center;
        }

        .navbar1 a {
            color: white; /* Default text color (white) */
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold; /* Make text bold */
    display: inline-block;
    background-color: black; /* Default background (black) */
    border-radius: 5px; /* Optional: Add rounded corners */
}

        .navbar1 a:hover {
            color: black; /* Text color when hovered (green) */
    background-color: #39FF14; /* Background color when hovered (black) */
           
        }

.robot-row {
    display: flex;
    flex-wrap: wrap;              /* Allows items to wrap to the next line */
    justify-content: flex-start;  /* Aligns items to the left */
    margin-bottom: 10px;          /* Adds space between rows */
}

.robot-container {
    width: calc(100% / 7 - 10px); /* Each robot takes up 1/7th of the row width minus margin */
    margin-right: 10px;           /* Space between robots */
    margin-bottom: 10px;          /* Space between rows */
}

.robot-image {
    width: 100%;
    height: auto;
}



