/*
Rewritten for LFMTE by Siamak
*/


/* ------------------------------
   GLOBAL BASE
------------------------------ */

body {
    font-family: "Inter", "Roboto", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d0d0d;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Smooth transitions everywhere */
* {
    transition: all 0.25s ease;
}

/* Accent colors */
:root {
    --black: #0d0d0d;
    --white: #ffffff;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --orange: #ff6a00;
    --orange-light: #ffa366;
    --border: #333333;
}


/* -----------------------------------------
   TEXT UTILITIES
----------------------------------------- */

/* Primary text = bright orange accent */
.text-primary {
    color: var(--orange) !important;
}

/* Secondary text = soft gray for subtle UI elements */
.text-secondary {
    color: #bbbbbb !important;
}

/* Muted text = low-contrast gray */
.text-muted {
    color: #888888 !important;
}

/* Inverse text = white for dark backgrounds */
.text-inverse {
    color: var(--white) !important;
}

/* -----------------------------------------
   BUTTON SYSTEM
----------------------------------------- */

/* Primary button = orange glow, black text */
.btn-primary {
    background-color: var(--orange);
    color: var(--black);
    border: 1px solid var(--orange-light);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--orange-light);
    color: var(--black);
    box-shadow: 0 0 14px rgba(255, 106, 0, 0.7);
}

/* Secondary button = dark gray with orange border */
.btn-secondary {
    background-color: var(--gray);
    color: var(--white);
    border: 1px solid var(--orange);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--gray-light);
    color: var(--orange-light);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}

/* Ghost button = transparent with orange outline */
.btn-ghost {
    background-color: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-ghost:hover {
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--orange-light);
}

/* Dark button = black with subtle glow */
.btn-dark {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--gray-light);
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-dark:hover {
    background-color: #111;
    color: var(--orange);
    border-color: var(--orange);
}

/* -----------------------------------------
   BADGES
----------------------------------------- */

.badge-primary {
    background-color: var(--orange);
    color: var(--black);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.badge-secondary {
    background-color: var(--gray-light);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
}


/* ------------------------------
   TOP NAVIGATION BAR
------------------------------ */

.lfm_menu_bar {
    background: var(--black);
    padding: 0 0 45px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.25);
}

@media (max-width: 991.98px) {
    .lfm_menu_bar {
        padding-bottom: 0;
        margin-bottom: 20px;
    }
}

/* Logo */
.lfm_menu_logo {
    max-height: 40px;
    filter: drop-shadow(0 0 4px var(--orange));
}
@media (min-width: 992px) {
    .lfm_menu_logo {
        margin-right: 20px;
    }
}

/* Top-level nav links */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
    font-size: 15px;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    position: relative;
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
    background-color: var(--orange);
    color: var(--black);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
    background-color: var(--orange);
    color: var(--black);
    font-weight: 600;
}

/* Desktop tab underline effect */
@media (min-width: 992px) {
    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
        margin: 0 4px;
        border: 1px solid transparent;
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--orange);
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(255, 106, 0, 0.8);
    }
}

/* Mobile arrow indicator */
@media (max-width: 991.98px) {
    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
        text-align: left;
        background: var(--gray);
    }

    .lfm_menu_bar .navbar-nav > .nav-item > .nav-link:after {
        content: "";
        border-top: 0.3em solid var(--white);
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
        position: absolute;
        right: 1.25rem;
        transform: rotate(-90deg);
    }

    .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
        border-top-color: var(--orange);
        transform: rotate(0deg);
    }
}

/* ------------------------------
   SECOND LEVEL MENU
------------------------------ */

/* ------------------------------
   SECOND LEVEL MENU (ORANGE)
------------------------------ */

.lfm_menu_tab {
    background-color: var(--orange);
    border: 1px solid var(--orange-light);
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100%;
    /*padding: 10px 0;*/
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.25);
}

li.lfm_tab_opened .lfm_menu_tab {
    display: flex;
}

@media (max-width: 991.98px) {
    .lfm_menu_tab {
        position: relative;
        flex-direction: column;
        background-color: var(--orange);
    }
}

/* ------------------------------
   SECOND LEVEL LINKS (BLACK TEXT)
------------------------------ */

.lfm_menu_tab > li > a {
    font-size: 16px;
    padding: 0 20px;
    line-height: 45px;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.lfm_menu_tab > li > a:hover {
    background-color: var(--orange-light);
    color: var(--black);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.25);
}

/* ------------------------------
   THIRD LEVEL DROPDOWN (BLACK)
------------------------------ */

.lfm_menu_tab .dropdown-menu {
    background-color: var(--black);
    padding: 5px 0;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.25);
}

.lfm_menu_tab .dropdown-menu a {
    font-size: 15px;
    padding: 0 20px;
    line-height: 32px;
    color: var(--orange);
    text-decoration: none;
    display: block;
}

.lfm_menu_tab .dropdown-menu li:hover {
    background-color: #111; /* subtle shift */
}

.lfm_menu_tab .dropdown-menu li:hover > a {
    color: var(--orange-light);
}

/* ------------------------------
   FOOTER
------------------------------ */

.lfm_footer {
    background-color: var(--black);
    padding: 20px;
    text-align: center;
    color: var(--white);
    border-top: 2px solid var(--orange);
}

/* ------------------------------
   ICONS
------------------------------ */

.far, .fas {
    margin-right: 3px;
    color: var(--black);
}

.feedicon {
    color: var(--orange);
    font-size: 20px;
    margin-right: 5px;
}

/* ------------------------------
   PROFILE PICTURES
------------------------------ */

.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
------------------------------ */

.buttonlink {
    background-color: var(--orange);
    border-radius: 4px;
    border: 1px solid var(--orange-light);
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    padding: 6px 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}

.buttonlink:hover {
    background-color: var(--orange-light);
    color: var(--black);
    box-shadow: 0 0 14px rgba(255, 106, 0, 0.7);
}

/* ------------------------------
   INFOBAR
------------------------------ */

.infobar {
    width: 100%;
    padding: 15px 0;
    color: var(--white);
    background-color: var(--gray);
    border-left: 4px solid var(--orange);
}

.infobar h2 {
    color: var(--orange);
}

/* ------------------------------
   TEXT STYLES
------------------------------ */

.lfm_title {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
}

.lfm_descr {
    font-size: 16px;
    color: #cccccc;
}

.lfm_descr_bold {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

/* ------------------------------
   UTILITIES
------------------------------ */

.vcenter {
    display: flex;
    align-items: center;
}

/* -----------------------------------------
   FONT SYSTEM
----------------------------------------- */


/* headings */
h1, h2, h3, h4, h5, h6,
.lfm_title {
    font-family: "Orbitron", "Inter", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Menu + UI elements */
.nav-link,
.lfm_menu_tab > li > a,
.lfm_menu_tab .dropdown-menu a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-ghost,
.buttonlink {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

/* neon title glow */
.lfm_title {
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
}

