/* General */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.hidden {
  display: none !important;
}

.page_container {
  margin-top: 2rem;
  padding: 0 1rem;
}

@font-face {
  font-family: 'StateFaceRegular';
  src: url('/assets/css/stateface/webfonts/stateface-regular-webfont.eot');
  src: url('/assets/css/stateface/webfonts/stateface-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.woff') format('woff'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.ttf') format('truetype'),
       url('/assets/css/stateface/webfonts/stateface-regular-webfont.svg#StateFaceRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

.stateface-replace {
    text-indent: -999em;
    display: inline-block;
    position: relative;
    min-width: 1em;
    top: 3px;
    font-size: 13pt;
}


/* Homepage Hero */

.hero {
  background: url('/assets/img/background.png') center center / cover no-repeat;
  width: 100%;
  height: auto;
  padding-top: 3rem;
  margin-bottom: -75px;
}
.hero_content {
  transform: translateY(-75px);
}
.hero .logo {
  width: 160px;
  margin: 190px auto 0.5rem;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.6rem;
  font-weight: bold;
  margin: 0.4rem 0 0.25rem;
  line-height: 4rem;
}
.hero .subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;  
  font-style: italic;
  font-size: 0.95rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  color:  #DDDDDD;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}
.hero .subtitle span {
  display: block;
}


/* Homepage Nav Buttons */

.nav-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #a0895a;
  border-radius: 10px;
  padding: .5rem .5rem .5rem .9rem;
  margin: 0.5rem 0;
  font-weight: bold;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.nav-button:hover {
  background-color: #1a1a1a;
}
.nav-button img.icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Homepage Social Icons */
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons a {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
}
.social-icons a:hover {
  opacity: 1;
}


/* Fight Card */

.fight_card_card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 20px auto;
}

.fight_card_bar {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fight_card_bar.win {
  background-color: #2d5237; 
  color:  #43e07f;
}

.fight_card_bar.loss {
  background-color: #5e2b2b;
  color:  #ff7e7e;
}

.fight_card_bar.win .fight_card_outcome,
.fight_card_bar.loss .fight_card_outcome {
  
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.4);
}
.fight_card_main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fight_card_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fight_card_event {
  font-size: 20px;
  color: #444444;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
}

.fight_card_opponent {
  display: flex;
  align-items: flex-end;
  margin-top: 6px;
  gap: 4px;
} 

.fight_card_vs_icon {
  width: 18px;
  height: auto;
  margin-right: 2px;
  position: relative;
  top: -13px;
}

.fight_card_name {
  font-size: 32px;
  font-weight: 800;
  color: #111;
}

.fight_card_result {
  font-size: 14px;
  margin-top: 0px;
  color: #444444;
  text-align: left;
}

.fight_card_date_badge {
  background: #1f1f1f;
  border: 1px solid #a0895a;
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  font-weight: bold;
  color: #a0895a;
  min-width: 60px;
}

.fight_card_month,
.fight_card_year {
  font-size: 14px;
  color: #a0895a;
}

.fight_card_day {
  font-size: 28px;
  color: #ffffff;
  font-weight: 700;
}

.fight_card_year {
  font-size: 14px;
  font-weight: 400;
  color: #a0895a;
}

.fight_card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.fight_card_video_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fight_card_video_buttons a {
  display: block;
  background: #f2f2f2;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #555;
}

.fight_card_youtube {
  color: #FF0000;
  font-size: 25px;
  margin-right: 5px;
}

.fight_card_footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.fight_card_location {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #222;
}

.fight_card_pin {
  width: 14px;
  margin-right: 6px;
}


/* Fight Profile */

.fight_profile_card {
  position: relative;
  max-width: 700px;
  background: #121212;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  border-radius: 12px;
  padding: 20px;
  margin: auto;
  margin-bottom:  25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.fight_profile_top {
  display: flex;
  align-items: center;
}

.fight_profile_image {
  width: 139px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 16px;
}

.fight_profile_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fight_profile_name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-align: left;
  line-height: 39px;
}

.fight_profile_style {
  color: #a0895a;
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
  text-align: left;
}

.fight_profile_details {
  margin-top: 16px;
  font-size: 14px;
}

.fight_profile_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 6px 0;
}

.fight_profile_flag {
  width: 16px;
  height: auto;
}

.fight_profile_location,
.fight_profile_htwt,
.fight_profile_label,
.fight_profile_value,
.fight_profile_team {
  font-size: 14px;
}

.fight_profile_label {
  color: #888;
  font-weight: 500;
}

.fight_profile_value {
  font-weight: 600;
}

.fight_profile_team {
  font-style: italic;
}

.fight_profile_buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}


.fight_profile_buttons a {
  display: inline-block;
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}


.fight_profile_buttons a:hover {
  background-color: #1f1f1f;
}

.fight_profile_stats_title {
  color: #a0895a;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.fight_profile_stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.fight_profile_stats > div {
  flex: 1 1 18%;
  margin: 10px 0;
}

.fight_profile_stat_title {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.fight_profile_stat_value {
  font-size: 32px;
  font-weight: 700;
}

.fight_profile_stats_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.fight_profile_stats_title {
  color: #a0895a;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-top: 10px;
}

.fight_profile_line {
  flex-grow: 1;
  height: 1px;
  background-color: #333;
}

.fight_profile_record_boxes {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1;
}

.fight_profile_record_box {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.fight_profile_record_box.win {
  background-color: #2d5237;
  color: #43e07f;
}

.fight_profile_record_box.loss {
  background-color: #5e2b2b;
  color: #ff7e7e;
}

.fight_profile_record_number {
  font-size: 24px;
  line-height: 1;
}

.fight_profile_record_label {
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 1px;
}


/* Sub Page Header */

.sub_page_header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #000;
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 10;
}

.sub_page_header_logo img {
  height: 50px;
}

.sub_page_header_heartbeat {
  flex: 1;
  margin: -30px 10px 0 10px;
  height: 70px;
  overflow: visible;
}

.sub_page_header_heartbeat svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.sub_page_header_hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.sub_page_header_hamburger div {
  height: 3px;
  background-color: #aaa;
  border-radius: 2px;
}

/* Modal Styles */
.sub_page_header_nav_modal {
  position: fixed;
  inset: 0;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sub_page_header_nav_modal.open {
  transform: translateY(0);
}

.sub_page_header_modal_close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  cursor: pointer;
  color: #fff;
}

.sub_page_header_nav_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.sub_page_header_nav_links a {
  color: #a0895a;
  text-decoration: none;
  font-weight: bold;
}

.sub_page_header_nav_links a:hover {
  color: #fff;
}


/* Awards */

.awards {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #fff;
}

.awards h2 {
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #a0895a;
  margin-bottom: 1rem;
}

.awards_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: #121212;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.awards_table td {
  padding: 12px 16px;
  border-bottom: 1px solid #333;
  line-height: 1.4;
  color: #eee;
}

.awards_table tr.year td {
  background-color: #1f1f1f;
  color: #a0895a;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: left;
  border-top: 1px solid #444;
}

.awards_table iframe {
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  max-width: 100%;
}

@media (max-width: 700px) {
  .awards_table td {
    padding: 10px 12px;
  }

  .awards_table iframe {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}


/* Footer */

.footer_divider {
  border: none;
  border-top: 1px solid #444;
  margin: 3rem auto 1rem;
  width: 100%;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 1rem 2rem;
  font-size: 0.8rem;
  color: #888;
}

.footer_copy {
  margin: 0;
}

.footer_socials {
  display: flex;
  gap: 16px;
}

.footer_socials a {
  color: #a0895a;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.footer_socials a:hover {
  color: #fff;
}


/* Fight Tools */


.fight_tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  width: 100%;
}

.fight_tools_search_wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.fight_tools_search_wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
}

.fight_tools_search_wrapper .search_icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 16px;
}

.fight_tools_youtube_wrapper a {
  color: #a0895a;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.fight_tools_youtube_wrapper a:hover {
  color: #fff;
}

/* Contact Page */
.contact_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 20px;
}

.contact_form_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ccc;
}

.contact_form input,
.contact_form textarea {
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 14px;
}

.contact_submit_btn {
  background-color: #a0895a;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.contact_submit_btn:hover {
  background-color: #c8a86e;
}

.contact_intro {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  text-align: left;
}


/*YouTube Modal*/
#video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 85, 85, 0.6);
  z-index: 9999;
}

#modal-content {
  margin: 100px auto;
  background: #000;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;

  /* Inner black border */
  border: 5px solid black;
  box-sizing: border-box;
  color: white;
}

#modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

#video-iframe {
  display: none;
}

#locked-message {
  display: none;
  color: white;
  text-align: center;
  font-size: 18px;
  padding: 20px;
}


/* Mobile Figth History */
.fight_profile_record_boxes_mobile {
  display: none;
}

/* Mobile <550px override */
@media (max-width: 549px) {
  .fight_profile_record_boxes {
    display: none !important;
  }

  .fight_profile_record_boxes_mobile {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }

  .fight_profile_record_boxes_mobile .fight_profile_record_box {
    flex: 1;
    width: 100%;
    max-width: 50%;
    height: 60px;
    text-align: center;
  }

  .fight_profile_record_number {
    font-size: 30px;
  }

  .fight_profile_record_label {
    font-size: 12px;
  }
}


