/*

Theme Name: WWTE Theme

Theme URI: https://ingaoz.xyz/

Description: WWTE Theme.

Version: 1.0

Author: Josh Abbott, redesign by IngaOz

*/


@charset "utf-8";


/* Main font settings */

body {
    /* Typography */
    font-size: 16px;
    font-weight: 400;
    color: #86f7fb;
    
    /* Background - applies to all screen sizes */
    margin: 0;
    background-color: #282944; /* Sets the main background color for all devices */
    background-image: url(https://waterworldte.com/img/starry.webp); /* Sets the background image for all devices */
    background-repeat: repeat-x;
}


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

.lfm_menu_bar {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#282944+0,0a0607+100 */
background: linear-gradient(to bottom,  #282944 0%,#0a0607 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	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: 35px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}

/* Desktop View Settings */
@media (min-width: 992px) {
	
		body {
		/* Desktop-specific background settings if needed - inherits from main body styles above */
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 1300px;
		height: 283px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: #282944;
	}
	
	#header {
		background-image: url(https://waterworldte.com/img/wwteheader.gif); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: #282944;
		width: 1300px;
		height: 283px;
	}
}


/* Main navigation bar styling */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
    /* Base tab styling */
    font-size: 16px;
    color: #5ce0e5;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    padding: 12px 20px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(92, 224, 229, 0.3),
                 0 0 20px rgba(92, 224, 229, 0.3),
                 0 0 30px rgba(92, 224, 229, 0.3);
    position: relative;
}

/* Hover effect with stronger neon glow */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
                 0 0 20px rgba(92, 224, 229, 0.8),
                 0 0 30px rgba(92, 224, 229, 0.8),
                 0 0 40px rgba(92, 224, 229, 0.8);
}

/* Active/opened tab styling with neon effect */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    
    /* Gradient background with opacity for neon effect */
    background: linear-gradient(to bottom,
        rgba(28, 118, 178, 0.9) 0%,
        rgba(13, 108, 132, 0.9) 9%,
        rgba(8, 129, 163, 0.9) 50%,
        rgba(14, 117, 145, 0.9) 93%,
        rgba(20, 133, 168, 0.9) 100%
    );
    
    /* Enhanced neon glow for active state */
    box-shadow: 0 0 10px rgba(92, 224, 229, 0.5),
                0 0 20px rgba(92, 224, 229, 0.3),
                0 0 30px rgba(92, 224, 229, 0.2),
                inset 0 0 15px rgba(92, 224, 229, 0.3);
    
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(92, 224, 229, 0.8),
                 0 0 30px rgba(92, 224, 229, 0.8);
}

/* Create subtle neon border effect */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Enhance neon border on hover */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover::before {
    border-color: rgba(92, 224, 229, 0.5);
    box-shadow: 0 0 10px rgba(92, 224, 229, 0.5),
                inset 0 0 10px rgba(92, 224, 229, 0.3);
}

/* Focus styles with neon effect */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:focus {
    outline: none;
    text-shadow: 0 0 10px rgba(92, 224, 229, 1),
                 0 0 20px rgba(92, 224, 229, 1),
                 0 0 30px rgba(92, 224, 229, 1);
    box-shadow: 0 0 10px rgba(92, 224, 229, 0.5),
                0 0 20px rgba(92, 224, 229, 0.3);
}

/* Animation for the neon flicker effect */
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Add subtle flicker animation to active tabs */
.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
    animation: neonFlicker 2s infinite;
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1c76b2+0,0d6c84+9,0881a3+50,0e7591+93,1485a8+100 */
background: linear-gradient(to bottom,  #1c76b2 0%,#0d6c84 9%,#0881a3 50%,#0e7591 93%,#1485a8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1c76b2+0,0d6c84+9,0881a3+50,0e7591+93,1485a8+100 */
background: linear-gradient(to bottom,  #1c76b2 0%,#0d6c84 9%,#0881a3 50%,#0e7591 93%,#1485a8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

@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 transparent;
		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 transparent;
	}
	
	.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: 1px solid transparent;
		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: #5ce0e5;
		font-family: 'Ubuntu', sans-serif;
		font-weight: 700;
		font-style: normal;
		text-shadow: 0 0 10px rgba(92, 224, 229, 0.3),
					 0 0 20px rgba(92, 224, 229, 0.2);
		/* Changed to match main theme instead of blue gradient */
		background: linear-gradient(to bottom, #282944 0%, #0a0607 100%);
		border: 1px solid rgba(92, 224, 229, 0.2);
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		/* Returns to the original hover effect when closed in mobile  */
		color: #fff;
		font-family: 'Ubuntu', sans-serif;
		font-weight: 700;
		font-style: normal;
		text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
					 0 0 20px rgba(92, 224, 229, 0.5);
		/* Changed to match main hover theme */
		background: linear-gradient(to bottom, #1c76b2 0%, #0d6c84 9%, #0881a3 50%, #0e7591 93%, #1485a8 100%);
		box-shadow: 0 0 10px rgba(92, 224, 229, 0.3);
	}
	
	/* 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: #5ce0e5;
		filter: drop-shadow(0 0 3px rgba(92, 224, 229, 0.5));
		transform: rotate(-90deg);
		position: absolute;
		right: 1.25rem;
		transition: all 0.3s ease;
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		color: #5ce0e5;
		filter: drop-shadow(0 0 5px rgba(92, 224, 229, 0.8));
		transform: rotate(0deg);
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		color: #5ce0e5;
		filter: drop-shadow(0 0 3px rgba(92, 224, 229, 0.5));
		transform: rotate(-90deg);
	}
}


/* Main styles for the second level of the main menu */
.lfm_menu_tab {
    background: linear-gradient(to bottom,
        #282944 0%,
        #1e1f33 50%,
        #141528 100%
    );
    border: 1px solid rgba(92, 224, 229, 0.3);
    box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                inset 0 0 20px rgba(92, 224, 229, 0.1);
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100%;
    backdrop-filter: blur(5px);
}

li.lfm_tab_opened .lfm_menu_tab {
    display: flex;
    animation: neonPulse 2s ease-in-out infinite;
}

/* Second level navigation links */
.lfm_menu_tab > li > a {
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 0 20px;
    line-height: 45px;
    color: #5ce0e5;
    text-decoration: none;
    display: block;
    text-shadow: 0 0 10px rgba(92, 224, 229, 0.3),
                 0 0 20px rgba(92, 224, 229, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.lfm_menu_tab > li > a:hover {
    background: linear-gradient(to bottom, #282944 0%, #0a0607 100%);
    color: #5ce0e5;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
                 0 0 20px rgba(92, 224, 229, 0.5),
                 0 0 30px rgba(92, 224, 229, 0.3);
    box-shadow: 0 0 15px rgba(92, 224, 229, 0.3),
                inset 0 0 10px rgba(92, 224, 229, 0.2);
}

/* Third level navigation links */
.lfm_menu_tab .dropdown-menu {
    background: #282944;
    border: 1px solid rgba(92, 224, 229, 0.2);
}

.lfm_menu_tab .dropdown-menu a {
    padding: 0 20px;
    line-height: 32px;
    color: #5ce0e5;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    text-shadow: 0 0 8px rgba(92, 224, 229, 0.2);
    transition: all 0.3s ease;
    background-color: transparent;
}

.lfm_menu_tab .dropdown-menu li:hover {
    background-color: #282944;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
    box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                inset 0 0 10px rgba(92, 224, 229, 0.1);
}

.lfm_menu_tab .dropdown-menu li:hover a {
    text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
                 0 0 20px rgba(92, 224, 229, 0.4);
    background-color: #282944;
}

/* Neon pulse animation */
@keyframes neonPulse {
    0%, 100% { 
        border-color: rgba(92, 224, 229, 0.3);
        box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                    inset 0 0 20px rgba(92, 224, 229, 0.1);
    }
    50% { 
        border-color: rgba(92, 224, 229, 0.5);
        box-shadow: 0 0 20px rgba(92, 224, 229, 0.4),
                    inset 0 0 25px rgba(92, 224, 229, 0.2);
    }
}

/* Add specific styling for opened state */
li.lfm_tab_opened {
    background-color: #282944;
}

/* Ensure dropdown menus in opened state maintain the correct background */
li.lfm_tab_opened .dropdown-menu {
    background-color: #282944;
}

/* Mobile view settings for second level navigation */
@media (max-width: 991.98px) {
    .lfm_menu_tab {
        /* Changed from blue gradient to match main dark theme with neon accents */
        background: linear-gradient(to bottom,
            #282944 0%,
            #1e1f33 50%,
            #141528 100%
        );
        border: 1px solid rgba(92, 224, 229, 0.3);
        box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                    inset 0 0 20px rgba(92, 224, 229, 0.1);
        position: relative;
        flex-direction: column;
        top: 0;
        padding: 5px 0;
        border-left: 2px solid rgba(92, 224, 229, 0.5);
        backdrop-filter: blur(5px);
    }

    li.lfm_tab_closed .lfm_menu_tab {
        display: none;
    }

    .lfm_menu_tab > li > a {
        padding-left: 40px;
        line-height: 36px;
        width: 100%;
        font-size: 15px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 700;
        font-style: normal;
        color: #5ce0e5;
        text-shadow: 0 0 10px rgba(92, 224, 229, 0.3),
                     0 0 20px rgba(92, 224, 229, 0.2);
        border-left: 2px solid transparent;
        transition: all 0.3s ease;
        background-color: transparent;
    }

    .lfm_menu_tab > li > a:hover {
        color: #fff;
        background: linear-gradient(to right,
            rgba(40, 41, 68, 0.8) 0%,
            rgba(10, 6, 7, 0.8) 100%
        );
        text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
                     0 0 20px rgba(92, 224, 229, 0.5),
                     0 0 30px rgba(92, 224, 229, 0.3);
        box-shadow: 0 0 15px rgba(92, 224, 229, 0.3),
                    inset 0 0 10px rgba(92, 224, 229, 0.2);
        border-left: 2px solid rgba(92, 224, 229, 0.8);
        padding-left: 45px;
    }

    /* Mobile view settings for the third level navigation links */
    .lfm_menu_tab .dropdown-menu {
        background: linear-gradient(to bottom,
            #282944 0%,
            #1e1f33 100%
        );
        border: 1px solid rgba(92, 224, 229, 0.2);
        box-shadow: 0 0 10px rgba(92, 224, 229, 0.1);
    }

    .lfm_menu_tab .dropdown-menu a {
        padding-left: 50px;
        line-height: 32px;
        color: #5ce0e5;
        font-size: 15px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 700;
        font-style: normal;
        text-decoration: none;
        text-shadow: 0 0 8px rgba(92, 224, 229, 0.2);
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .lfm_menu_tab .dropdown-menu li:hover {
        background: linear-gradient(to right,
            rgba(40, 41, 68, 0.9) 0%,
            rgba(30, 31, 51, 0.9) 100%
        );
        box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                    inset 0 0 10px rgba(92, 224, 229, 0.1);
    }

    .lfm_menu_tab .dropdown-menu li:hover a {
        color: #fff;
        text-shadow: 0 0 10px rgba(92, 224, 229, 0.8),
                     0 0 20px rgba(92, 224, 229, 0.4);
        background-color: transparent;
    }

    /* Mobile-specific neon pulse animation */
    li.lfm_tab_opened .lfm_menu_tab {
        animation: mobileNeonPulse 3s ease-in-out infinite;
    }
    
    @keyframes mobileNeonPulse {
        0%, 100% { 
            border-left-color: rgba(92, 224, 229, 0.5);
            box-shadow: 0 0 15px rgba(92, 224, 229, 0.2),
                        inset 0 0 20px rgba(92, 224, 229, 0.1);
        }
        50% { 
            border-left-color: rgba(92, 224, 229, 0.8);
            box-shadow: 0 0 20px rgba(92, 224, 229, 0.4),
                        inset 0 0 25px rgba(92, 224, 229, 0.2);
        }
    }
/* Mobile-specific background and layout adjustments */
@media (max-width: 991.98px) {
	/* Ensure mobile devices also get the dark background */
	body {
		background-color: #282944;
		background-image: url(https://waterworldte.com/img/starry.webp);
		background-repeat: repeat-x;
		background-attachment: scroll; /* Better for mobile performance */
	}
	
	/* Mobile header adjustments */
	#headerwrapper {
		width: 100%;
		height: auto;
		background-color: #282944;
	}
	
	#header {
		background-image: url(https://waterworldte.com/img/wwteheader.gif);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		background-color: #282944;
		width: 100%;
		height: 150px; /* Adjust height for mobile */
		min-height: 100px;
	}
	
	/* Mobile footer adjustments */
	#footer {
		background-image: url(https://waterworldte.com/img/wwtefooter.gif);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		width: 100%;
		height: 150px; /* Adjust height for mobile */
		background-color: #282944;
	}
	
	#footerwrapper {
		background-image: url(https://waterworldte.com/img/starry.webp);
		background-color: #282944;
		width: 100%;
	}
}

			#footer {
		background-image: url(https://waterworldte.com/img/wwtefooter.gif); /* Sets the footer image */
		background-repeat: no-repeat;
		width: 1300px;
		height: 283px;
        background-color: #282944;
	}
	
	#footerwrapper {
background-image: url(https://waterworldte.com/img/starry.webp);
		/*background-repeat: repeat-x;*/
        background-color: #282944;
		
	}


/* 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 transparent;
	display:inline-block;
	cursor:pointer;
	color:#5ce0e5;
	font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
	padding:4px 7px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#5ce0e5;
	font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-style: normal;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1c76b2+0,0d6c84+9,0881a3+50,0e7591+93,1485a8+100 */
background: linear-gradient(to bottom,  #1c76b2 0%,#0d6c84 9%,#0881a3 50%,#0e7591 93%,#1485a8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#5ce0e5;
	background-color:#555555;
}
.infobar h2 {
	color:#5ce0e5;
}


.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;
}