/*
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 Jase
*/

@charset "utf-8";

/* =============================
   Wolf Theme Body Font & Style
   ============================= */
body {
  font-family: 'Orbitron', sans-serif;  /* Wolf brand font */
  font-size: 18px;                      /* Slightly larger text */
  font-weight: 500;                     /* Medium-bold feel */
  color: #FFD54F;                       /* Golden text for wolf vibe */
  background: linear-gradient(180deg, #1a0000 0%, #3b1c1c 100%); /* Dark wolf gradient */
  text-shadow: 0 0 1px rgba(0,0,0,0.7); /* Soft shadow for readability */
  letter-spacing: 0.5px;                /* Subtle spacing for a bold look */
  margin: 0;
  padding: 0;
}


/* =============================
   Main Menu Bar
   ============================= */
.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) {
  .lfm_menu_bar {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}

/* =============================
   Site Logo
   ============================= */
.lfm_menu_logo {
  max-height: 55px;
}

@media (min-width: 992px) {
  .lfm_menu_logo {
    margin-right: 20px;
  }
}

/* =============================
   Desktop View Header (Wolf Low-Light)
   ============================= */
@media (min-width: 992px) {
  body {
    margin: 0;
    background:#E6BF83
         color: #E6BF83;
  }

  #headerwrapper {
    width: 1500px;
    height: 300px;
    margin: 0 auto;
    clear: both;
    background-color: transparent;
  }

  #header {
    background-image: url(/themes/i/header_template.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: transparent;
    width: 1500px;
    height: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
}

/* =============================
   Mobile View Header (Wolf Low-Light)
   ============================= */
@media (max-width: 992px) {
  body {
    margin: 0;
    background:
      radial-gradient(60% 80% at 50% 0%, rgba(178,118,0,0.08), transparent 70%),
      linear-gradient(180deg, #1A0A0F 0%, #0F060A 100%);
    color: #F6FAFE;
  }

  #headerwrapper {
    width: 300px;
    height: 75px;
    margin: 0 auto;
    clear: both;
    background-color: transparent;
  }

  #header {
    background-image: url(/themes/i/images/mobile_header.png);
    background-repeat: no-repeat;
    background-position: center top;
    width: 300px;
    height: 75px;
    background-color: transparent;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }
}

/* =============================
   Wolf Hits Top Level Navigation
   ============================= */
.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
  font-size: 17px;
  color: #F6FAFE;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: linear-gradient(180deg, #4D000D 0%, #3A000A 100%);
  transition: all 0.2s ease;
  box-shadow: 0 0 6px rgba(178,118,0,0.3);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
  background: linear-gradient(180deg, #B27600 0%, #B37700 100%);
  color: #1B0A05;
  border: 2px solid #C9851B;
  box-shadow: 0 0 8px rgba(255,216,138,0.5);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
  background: linear-gradient(180deg, #B27600 0%, #B37700 100%);
  color: #1B0A05;
  border: 2px solid #FFD88A;
  box-shadow: 0 0 12px rgba(255,216,138,0.5);
  transform: translateY(-1px);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
  background: linear-gradient(180deg, #FFD88A 0%, #C9851B 100%);
  color: #1B0A05;
  border: 2px solid #FFD88A;
}

@media (min-width: 992px) {
  .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
    margin: 0 4px;
    position: relative;
  }

  .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
    content: "";
    background: transparent;
    width: calc(100% + 4px);
    height: 14px;
    position: absolute;
    bottom: -10px;
    left: -2px;
    border: none;
  }
}

@media (max-width: 991.98px) {
  .lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
    padding: 8px 15px;
    text-align: left;
    border-radius: 0;
  }

  .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
    color: #FFFFFF;
    background-color: #4D000D;
    border-bottom: 1px solid #B27600;
  }

  .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
    color: #FFD88A;
    background-color: #3A000A;
  }

  .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: #FFD88A;
    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: #FFD88A;
    transform: rotate(0deg);
  }

  .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
    color: #FFD88A;
    transform: rotate(-90deg);
  }
}

/* =============================
   Wolf Hits Second Level Nav
   ============================= */
.lfm_menu_tab {
  background: linear-gradient(180deg, #4D000D 0%, #3A000A 100%);
  position: absolute;
  display: none;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
  font-weight: 700;
  border: 2px solid #B27600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45), 0 0 12px rgba(178,118,0,0.35);
}

li.lfm_tab_opened .lfm_menu_tab { display: flex; }

@media (max-width: 991.98px) {
  .lfm_menu_tab {
    background: #2a0c10;
    position: relative;
    flex-direction: column;
    top: 0;
    padding: 5px 0;
    border: 2px solid #B27600;
  }
  li.lfm_tab_closed .lfm_menu_tab { display: none; }
}

.lfm_menu_tab > li > a {
  font-size: 16px;
  padding: 0 14px;
  line-height: 45px;
  color: #F6FAFE;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.lfm_menu_tab > li > a:hover {
  background: linear-gradient(180deg, #B27600 0%, #B37700 100%);
  color: #1B0A05;
  transform: translateX(4px);
  box-shadow: 0 0 8px rgba(178,118,0,0.45);
}

.lfm_menu_tab .dropdown-menu a {
  font-size: 15px;
  padding: 0 20px;
  line-height: 32px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  background-color: #4D000D;
  border-bottom: 1px dashed rgba(255,216,138,0.3);
}

.lfm_menu_tab .dropdown-menu a:hover {
  background: linear-gradient(180deg, #B27600 0%, #B37700 100%);
  color: #1B0A05;
  text-decoration: none;
  box-shadow: inset 0 0 6px rgba(178,118,0,0.5);
}

@media (max-width: 991.98px) {
  .lfm_menu_tab > li > a {
    padding-left: 40px;
    line-height: 36px;
    width: 100%;
  }
  .lfm_menu_tab .dropdown-menu a { padding-left: 50px; }
}

/* =============================
   Wolf Button Class
   ============================= */
.btn-wolf {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: 999px;
  color: #1B0A05;
  background: linear-gradient(180deg, #FFD88A 0%, #C9851B 100%);
  border: 2px solid #B27600;
  box-shadow: 0 3px 0 #805200, 0 0 12px rgba(178,118,0,0.55);
  transition: all 0.15s ease;
  text-decoration: none;
}
.btn-wolf:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(255,199,84,0.75), 0 6px 20px rgba(178,118,0,0.55);
  color: #120802;
}
.btn-wolf:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}

/* =============================
   Footer
   ============================= */
.lfm_footer { background: rgb(253,145,79); }

/* =============================
   Icons
   ============================= */
.far, .fas { margin-right: 3px; }
.feedicon { color: #3097D1; font-size: 20px; margin-right: 5px; }

/* =============================
   Profile Pictures
   ============================= */
.profilepic_small { width: 40px; height: 40px; }
.profilepic_med { width: 75px; height: 75px; }
.profilepic_large { width: 200px; height: 200px; }

/* =============================
   Buttons
   ============================= */
.buttonlink {
  cursor: pointer;
  background-color: #1468e5;
  border-radius: 2px;
  border: 1px solid #FF0000;
  display: inline-block;
  color: #FFFFFF;
  font-family: arial;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 7px;
  margin: 2px 1px;
  text-decoration: none;
}
.buttonlink:hover {
  color: #FFFFFF;
  background-color: #3385FF;
  text-decoration: none;
}

/* =============================
   Info Bars
   ============================= */
.infobar {
  width: 100%;
  padding: 15px 0;
  color: #FFFFFF;
  background-color: #555555;
}
.infobar h2 { color: #FFFFFF; }

/* =============================
   Utility
   ============================= */
.vcenter { display: flex; align-items: center; }

/* =============================
   Text Styles
   ============================= */
.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; }

/* =============================
   WOLF HITS — Tables that HOWL
   ============================= */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(178,118,0,.10), transparent 65%),
    linear-gradient(180deg, #230107 0%, #30010a 35%, #3a020c 100%);
  color: #F6FAFE;
  border: 2px solid #B27600;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 22px rgba(178,118,0,.25);
}
table thead th {
  background: linear-gradient(180deg, #FFD88A 0%, #F0B44F 48%, #C9851B 100%);
  color: #1B0A05;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 900;
  padding: 14px 14px;
  border-bottom: 2px solid #8a5b00;
}
table thead th:first-child { border-top-left-radius: 12px; }
table thead th:last-child { border-top-right-radius: 12px; }
table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(246,250,254,.08);
  border-right: 1px dashed rgba(178,118,0,.35);
}
table td:last-child { border-right: none; }
table tbody tr:nth-child(odd) { background: rgba(77,0,13,.24); }
table tbody tr:hover {
  background: rgba(178,118,0,.14);
  box-shadow: inset 0 0 0 9999px rgba(178,118,0,.05);
}
table tfoot td {
  background: linear-gradient(180deg, #2c0109, #3d020d);
  font-weight: 800;
  color: #FFD88A;
  border-top: 2px solid rgba(178,118,0,.45);
}
table caption {
  caption-side: top;
  padding: 10px 12px;
  color: #FFD88A;
  font-weight: 800;
  text-align: left;
}
.table-wrap-wolf {
  background: linear-gradient(180deg, #1a0106, #230107);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(77,0,13,.45);
  overflow: auto;
}
tr.wolf-feature {
  outline: 2px solid #FFD375;
  box-shadow: inset 0 0 18px rgba(255,211,117,.55);
  background: rgba(178,118,0,.12);
}
.table-compact td { padding: 8px 10px; }
.table-compact thead th { padding: 10px 10px; }
.table-sticky-head thead th { position: sticky; top: 0; z-index: 2; }
table a {
  color: #FFD88A;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,216,138,.6);
}
table a:hover {
  color: #FFF3D1;
  border-bottom-color: #FFF3D1;
}
.badge-wolf {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(180deg, #FFD88A, #C9851B);
  color: #1B0A05;
  border: 1px solid #8a5b00;
  box-shadow: 0 0 10px rgba(178,118,0,.45);
}
.badge-wolf.ghost {
  background: transparent;
  color: #F6FAFE;
  border: 1px dashed #B27600;
}
