/*
Theme Name: Fighting Gym Theme
Theme URI: https://fightinggym.se/
Author: Fighting Gym
Description: Custom WordPress theme for Fighting Gym Muay Thai.
Version: 1.0
Text Domain: fighting-gym
*/

/* =========================================================
   FIGHTING GYM - GLOBAL STYLE.CSS
   Standard header + compact footer across all pages
========================================================= */

/* Base */
:root {
  --bg: #030303;
  --bg-soft: #080808;
  --charcoal: #111111;
  --charcoal-2: #171717;
  --text: #ffffff;
  --muted: #bdbdbd;
  --line: rgba(255, 255, 255, 0.11);
  --red: #c40000;
  --red-hover: #ff1a1a;
  --red-deep: #750000;
  --max-width: 1120px;

  --standard-container: 1180px;
  --standard-red: #c40000;
  --standard-red-dark: #780000;
  --standard-line: rgba(255, 255, 255, 0.12);
  --standard-muted: #d3d3d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--standard-container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement {
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--standard-red-dark),
    var(--standard-red)
  );
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 0 16px;
  line-height: 1;
  letter-spacing: 0.2px;
}

/* =========================================================
   STANDARD HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  min-height: 86px;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 86px;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  height: 86px;
}

.brand img {
  width: 165px !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
}

.site-nav a {
  position: relative;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.92;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.mobile-nav-cta {
  min-height: 52px;
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, var(--standard-red), #e00000);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(196, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.mobile-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(196, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow:
    0 18px 38px rgba(196, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--red-hover), var(--red-deep));
  box-shadow:
    0 22px 48px rgba(196, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #950000, #3d0000);
  box-shadow:
    0 14px 32px rgba(196, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--red-hover), var(--red-deep));
  box-shadow:
    0 20px 42px rgba(196, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* =========================================================
   LANDING PAGE HERO
========================================================= */

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 122px));
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 82%, rgba(196, 0, 0, 0.34), transparent 34%),
    linear-gradient(120deg, #030303 0%, #070707 44%, #160202 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 30px),
    radial-gradient(ellipse at 72% 42%, rgba(255, 255, 255, 0.11), transparent 30%);
  content: "";
  opacity: 0.32;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 130px;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.95), transparent);
  content: "";
  pointer-events: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("Assets/Hero.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  filter: saturate(1.22) contrast(1.06) brightness(1.04);
  opacity: 0.96;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 84% 78%, rgba(196, 0, 0, 0.42) 0%, rgba(117, 0, 0, 0.2) 24%, transparent 48%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.99) 0%, rgba(3, 3, 3, 0.9) 33%, rgba(3, 3, 3, 0.46) 62%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.08) 44%, rgba(3, 3, 3, 0.28) 100%);
}

.hero-inner {
  min-height: min(760px, calc(100svh - 122px));
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(100%, 650px);
  padding: 58px 0 102px;
  transform: translateY(-8px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-hover);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.72);
}

h1 span {
  display: block;
}

h1 span + span {
  margin-top: 0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  padding-bottom: 42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(18, 2, 2, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}

.trust-item {
  min-height: 128px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px 22px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 26, 26, 0.72);
  box-shadow: 0 0 22px rgba(196, 0, 0, 0.28);
}

.trust-icon::before,
.trust-icon::after {
  position: absolute;
  background: var(--red-hover);
  content: "";
}

.trust-icon::before {
  top: 13px;
  left: 6px;
  width: 16px;
  height: 2px;
}

.trust-icon::after {
  top: 6px;
  left: 13px;
  width: 2px;
  height: 16px;
}

.trust-item h2 {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.15;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   SECTIONS / CARDS
========================================================= */

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 88% 4%, rgba(196, 0, 0, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.section-charcoal {
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 0, 0, 0.12), transparent 30%),
    var(--charcoal);
}

.section-redline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(196, 0, 0, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(117, 0, 0, 0.15), transparent 44%),
    var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.class-card,
.schedule-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--charcoal-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.feature-card::before,
.class-card::before,
.schedule-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
}

.feature-card,
.class-card {
  min-height: 260px;
  padding: 28px;
}

.card-number,
.level {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red-hover);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-card p,
.class-card p {
  color: var(--muted);
}

/* =========================================================
   SCHEDULE SUPPORT
========================================================= */

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.schedule-copy {
  margin-bottom: 0;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1.45fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.schedule-card span {
  color: var(--text);
  font-weight: 900;
}

.schedule-card strong {
  color: var(--red-hover);
  font-size: 1.08rem;
}

.schedule-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  padding: 86px 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 26, 26, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(3, 3, 3, 0.98), rgba(117, 0, 0, 0.72)),
    var(--red-deep);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   STANDARD COMPACT FOOTER
========================================================= */

.site-footer {
  min-height: 0 !important;
  padding: 16px 0 14px !important;
  background: #050505 !important;
  border-top: 1px solid var(--standard-line);
}

.footer-inner {
  min-height: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 0 !important;
  color: var(--standard-muted);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 90px !important;
  height: auto !important;
  max-height: 42px !important;
  object-fit: contain;
  display: block;
}

.site-footer p,
.site-footer a,
.site-footer address {
  color: var(--standard-muted);
  font-style: normal;
  line-height: 1.45;
  margin: 0;
  font-size: 13px;
  text-decoration: none;
}

.site-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer address a {
  display: block;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ff2a2a;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 14px;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.25rem;
  }
}

@media (max-width: 900px) {
  .site-header,
  .header-inner,
  .brand {
    height: 74px;
    min-height: 74px;
  }

  .brand img {
  width: 145px !important;
  max-height: 64px !important;
}

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 14px 20px 20px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-media {
    background-position: 58% center;
    background-size: cover;
  }

  .hero-content {
    width: min(100%, 610px);
  }

  h1 {
    font-size: 4.05rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.85rem;
  }

  .trust-grid,
  .feature-grid,
  .class-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .schedule-layout,
  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 14px;
  }

  .site-footer {
    padding: 18px 0 !important;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--standard-container), calc(100% - 24px));
  }

  .footer-brand img {
    width: 84px !important;
  }
}

@media (max-width: 640px) {
  .announcement {
    min-height: 30px;
    height: 30px;
    font-size: 0.74rem;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-media {
    background-position: 55% top;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 78% 78%, rgba(196, 0, 0, 0.34) 0%, transparent 45%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.72) 56%, rgba(3, 3, 3, 0.34) 100%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.22) 48%, rgba(3, 3, 3, 0.36) 100%);
  }

  .hero-content {
    padding: 72px 0 92px;
  }

  h1 {
    font-size: 3rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .btn,
  .final-cta .btn {
    width: 100%;
  }

  .btn {
    min-height: 54px;
    padding: 0 16px;
  }

  .trust-strip {
    margin-top: -52px;
  }

  .trust-grid,
  .feature-grid,
  .class-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .feature-card,
  .class-card {
    min-height: auto;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   KEEP ANNOUNCEMENT RIBBON + HEADER VISIBLE ON ALL PAGES
========================================================= */

.announcement {
  position: sticky !important;
  top: 0 !important;
  z-index: 1200 !important;
  height: 36px !important;
  min-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.site-header {
  position: sticky !important;
  top: 36px !important;
  z-index: 1190 !important;
}

/* Mobile adjustment */
@media (max-width: 640px) {
  .announcement {
    height: 30px !important;
    min-height: 30px !important;
  }

  .site-header {
    top: 30px !important;
  }
}
/* =========================================================
   REDUCE LANDING PAGE HERO EMPTY SPACE
========================================================= */

.hero {
  min-height: auto !important;
  padding-bottom: 0 !important;
}

.hero-inner {
  min-height: 620px !important;
  align-items: center !important;
}

.hero-content {
  padding-bottom: 40px !important;
}

/* Put news section closer to hero */
.news-section {
  padding-top: 60px !important;
  margin-top: 0 !important;
}

/* Remove extra dark gap after hero */
.hero::after {
  height: 40px !important;
}
.btn,
.header-cta,
.mobile-nav-cta,
button,
.contact-form button {
  border-radius: 22px !important;
}
/* =========================================================
   LANDING PAGE: TIGHTER HERO + NEWS/CTA SIDE BY SIDE
========================================================= */

.hero-inner {
  min-height: 520px !important;
}

.hero-content {
  padding-bottom: 22px !important;
}

.hero::after {
  height: 18px !important;
}

.landing-info-section {
  padding: 42px 0 56px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 0, 0, 0.10), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(196, 0, 0, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(117, 0, 0, 0.16), rgba(0, 0, 0, 0.9)),
    #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}

.landing-news {
  min-width: 0;
}

.landing-info-section .news-heading {
  margin-bottom: 24px;
}

.landing-info-section .news-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.landing-info-section .news-carousel {
  min-height: 190px;
}

.landing-info-section .news-slide {
  padding: 34px;
}

.landing-cta-card {
  position: relative;
  min-height: 100%;
  padding: 38px 36px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    linear-gradient(135deg, rgba(196,0,0,0.22), rgba(0,0,0,0.36));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #c40000, transparent);
  border-radius: 18px 18px 0 0;
}

.landing-cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
}

.landing-cta-card p:not(.eyebrow) {
  margin: 0 0 26px;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.7;
}

.landing-cta-card .btn {
  width: fit-content;
}

/* Old CTA section is no longer needed on landing */
.news-section {
  padding-top: 42px !important;
}

@media (max-width: 900px) {
  .landing-info-grid {
    grid-template-columns: 1fr;
  }

  .landing-cta-card .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    min-height: 560px !important;
  }

  .landing-info-section {
    padding: 34px 0 46px !important;
  }

  .landing-info-section .news-slide {
    padding: 26px 22px;
  }
}
/* =========================================================
   MAKE NEWS CAROUSEL TEXT 25% SMALLER
========================================================= */

.news-slide h3 {
  font-size: clamp(19px, 2.25vw, 32px) !important;
  line-height: 1.08 !important;
}

.news-slide p {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.news-slide small {
  font-size: 10px !important;
}
/* =========================================================
   MAKE LANDING HERO MORE COMPACT
========================================================= */

.hero,
.hero-inner {
  min-height: 82vh !important;
}

.hero-content {
  transform: translateY(-34px) !important;
  padding-bottom: 10px !important;
}

.hero::after {
  height: 0 !important;
}

.landing-info-section {
  padding-top: 28px !important;
}
/* =========================================================
   LANDING HERO: REMOVE EYEBROW + MOVE CONTENT UP/TIGHTER
========================================================= */

/* Remove the green marked text only on the landing hero */
.hero .eyebrow {
  display: none !important;
}

/* Move the full hero text/button block upward */
.hero-content {
  transform: translateY(-55px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Make the title block tighter */
.hero h1 {
  margin-bottom: 22px !important;
  line-height: 0.95 !important;
}

/* Move paragraph closer to title */
.hero-text {
  margin-bottom: 26px !important;
}

/* Keep buttons close under the paragraph */
.hero-actions {
  gap: 14px !important;
  margin-top: 0 !important;
}

/* Slightly reduce hero height so news comes up */
.hero,
.hero-inner {
  min-height: 82vh !important;
}

/* Remove extra dark fade space at bottom */
.hero::after {
  height: 0 !important;
}
/* =========================================================
   LANDING HERO: ZOOM OUT FEEL BY ABOUT 10%
========================================================= */

/* Make the main landing headline about 10% smaller */
.hero h1 {
  font-size: clamp(3.1rem, 6.3vw, 5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.01em !important;
}

/* Slightly smaller paragraph */
.hero-text {
  font-size: 1rem !important;
  max-width: 560px !important;
}

/* Slightly smaller hero buttons */
.hero .btn {
  min-height: 48px !important;
  padding: 0 24px !important;
  font-size: 0.95rem !important;
}

/* Move content a little less aggressively upward */
.hero-content {
  transform: translateY(-42px) !important;
  max-width: 600px !important;
}

/* Show more of the hero image */
.hero-media {
  background-size: auto 92% !important;
  background-position: right center !important;
}

/* Keep hero compact but not cramped */
.hero,
.hero-inner {
  min-height: 80vh !important;
}
/* =========================================================
   LANDING: REMOVE EMPTY SPACE BETWEEN HERO BUTTONS AND NEWS
========================================================= */

.hero,
.hero-inner {
  min-height: auto !important;
}

.hero {
  padding-bottom: 0 !important;
}

.hero-inner {
  padding-top: 70px !important;
  padding-bottom: 24px !important;
  align-items: flex-start !important;
}

.hero-content {
  transform: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Put news section directly after the hero */
.landing-info-section {
  margin-top: 0 !important;
  padding-top: 36px !important;
}

/* Remove bottom fade/gap from hero */
.hero::after {
  height: 0 !important;
}
/* =========================================================
   WORDPRESS MEDIA LIBRARY IMAGE URLS - INDEX PAGE
========================================================= */

.brand img,
.footer-brand img {
  content: url("https://fightinggym.se/wp-content/uploads/2026/06/logo.png") !important;
}

.hero-media {
  background-image: url("https://fightinggym.se/wp-content/uploads/2026/06/hero.jpg") !important;
}
/* =========================================================
   LANDING HERO IMAGE: MAKE IMAGE BIGGER ONLY
========================================================= */

.hero-media {
  background-size: auto 108% !important;
  background-position: right center !important;
}
/* =========================================================
   HEADER LOGO: 35% BIGGER ONLY
========================================================= */

.brand img {
  width: 223px !important;
  max-height: 95px !important;
  height: auto !important;
  object-fit: contain !important;
}

.footer-brand img {
  width: 135px !important;
  height: auto !important;
}
/* =========================================================
   HEADER LOGO IN FRONT OF TOP BANNER
========================================================= */

.site-header {
  z-index: 2000 !important;
}

.header-inner {
  position: relative !important;
  z-index: 2002 !important;
}

.brand {
  position: relative !important;
  z-index: 2005 !important;
}

.brand img {
  position: relative !important;
  z-index: 2006 !important;
}
/* =========================================================
   SOCIAL MEDIA LINKS LEFT OF LOGO - HEADER + FOOTER
========================================================= */

.brand-social-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.5px;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(196, 0, 0, 0.86);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 26px rgba(196, 0, 0, 0.30);
}

.footer-brand-social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  font-size: 9px;
}

/* Keep header clean on smaller screens */
@media (max-width: 1050px) {
  .header-social {
    display: none;
  }
}
/* =========================================================
   SOCIAL MEDIA ICONS - CLEAN WHITE SVG STYLE
========================================================= */

.brand-social-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2500;
}

.footer-brand-social-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 13px;
}

.social-links a {
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  display: block;
  transition: transform 180ms ease, fill 180ms ease, filter 180ms ease;
}

.social-links a:hover {
  transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.social-links a:hover svg {
  transform: translateY(-2px) scale(1.06);
  fill: #ff1a1a;
  filter: drop-shadow(0 8px 18px rgba(196, 0, 0, 0.45));
}

.footer-social a svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1050px) {
  .header-social {
    display: none;
  }
}
/* =========================================================
   FIX SOCIAL MEDIA ICON SIZE - HEADER + FOOTER
========================================================= */

.brand-social-wrap,
.footer-brand-social-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  position: relative !important;
  z-index: 3000 !important;
}

/* Make social icons normal size */
.social-links,
.header-social,
.footer-social {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  background: transparent !important;
}

/* Reset link boxes */
.social-links a,
.header-social a,
.footer-social a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  position: relative !important;
}

/* The important part: force SVGs to stay small */
.social-links a svg,
.header-social a svg,
.footer-social a svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  fill: #ffffff !important;
  display: block !important;
  position: static !important;
  transform: none !important;
}

/* Footer icons slightly smaller */
.footer-social a,
.footer-social a svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
}

/* Hover effect */
.social-links a:hover svg {
  fill: #ff1a1a !important;
  transform: translateY(-2px) scale(1.06) !important;
  filter: drop-shadow(0 8px 18px rgba(196, 0, 0, 0.45));
}

/* Hide header social icons on smaller screens */
@media (max-width: 1050px) {
  .header-social {
    display: none !important;
  }
}
/* =========================================================
   FINAL SOCIAL ICON FIX - HEADER + FOOTER
========================================================= */

.brand-social-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  position: relative !important;
  z-index: 5000 !important;
}

.footer-brand-social-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 10px !important;
}

.social-links,
.header-social,
.footer-social {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  overflow: visible !important;
  background: transparent !important;
}

.social-links a,
.header-social a,
.footer-social a {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.social-links svg,
.header-social svg,
.footer-social svg,
.social-svg-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  display: block !important;
  fill: #ffffff !important;
  position: static !important;
  transform: none !important;
}

.footer-social a,
.footer-social svg,
.footer-social .social-svg-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  flex: 0 0 24px !important;
}

.social-links a:hover svg {
  fill: #ff1a1a !important;
  transform: translateY(-2px) scale(1.06) !important;
}

@media (max-width: 1050px) {
  .header-social {
    display: none !important;
  }
}
/* =========================================================
   MOBILE SOCIAL ICONS - STACKED LEFT SIDE
========================================================= */

@media (max-width: 768px) {
  .brand-social-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    position: relative !important;
    z-index: 5000 !important;
  }

  .header-social {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    position: absolute !important;
    left: -34px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 28px !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    z-index: 6000 !important;
  }

  .header-social a {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    flex: 0 0 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .header-social svg,
  .header-social .social-svg-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    flex: 0 0 24px !important;
    fill: #ffffff !important;
    display: block !important;
  }

  .brand {
    margin-left: 0 !important;
  }
}
/* =========================================================
   FINAL MOBILE SOCIAL STACK FIX
   Shows social icons vertically left of the logo on mobile
========================================================= */

@media (max-width: 768px) {
  .site-header .header-inner {
    position: relative !important;
  }

  .site-header .brand-social-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    overflow: visible !important;
    z-index: 9999 !important;
  }

  .site-header .header-social {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;

    position: absolute !important;
    left: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;

    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
  }

  .site-header .header-social a {
    width: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px !important;

    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .header-social a svg,
  .site-header .header-social svg,
  .site-header .header-social .social-svg-icon {
    width: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px !important;

    display: block !important;
    fill: #ffffff !important;
    transform: none !important;
    position: static !important;
  }

  .site-header .header-social svg path {
    fill: #ffffff !important;
  }
}
/* =========================================================
   MOBILE ONLY - PUT HEADER SOCIAL ICONS ON TOP RED BANNER
========================================================= */

@media (max-width: 768px) {
  .site-header .brand-social-wrap {
    position: static !important;
  }

  .site-header .header-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;

    position: fixed !important;
    top: 4px !important;
    left: 10px !important;
    transform: none !important;

    width: auto !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;

    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;
  }

  .site-header .header-social a {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    flex: 0 0 17px !important;

    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .header-social svg,
  .site-header .header-social .social-svg-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    flex: 0 0 17px !important;

    display: block !important;
    fill: #ffffff !important;
    position: static !important;
    transform: none !important;
    filter: none !important;
  }

  .site-header .header-social svg path {
    fill: #ffffff !important;
  }

  .announcement {
    position: relative !important;
    z-index: 999990 !important;
    padding-left: 74px !important;
    padding-right: 10px !important;
  }

  .announcement,
  .announcement * {
    overflow: visible !important;
  }
}
/* =========================================================
   MOBILE FIX - HIDE HEADER SOCIAL ICONS
========================================================= */

@media (max-width: 768px) {
  .header-social {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .brand-social-wrap {
    gap: 0 !important;
  }

  .brand {
    margin-left: 0 !important;
  }
}
/* =========================================================
   FINAL NEWS SECTION SPACING FIX
========================================================= */

.landing-info-section {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.news-heading {
  margin-bottom: 22px !important;
}

.news-heading p {
  margin-top: 10px !important;
}

.news-carousel {
  min-height: 210px !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.news-slide {
  padding: 26px 32px !important;
}

.news-controls {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}

.news-controls + .news-controls {
  display: none !important;
}

@media (max-width: 768px) {
  .landing-info-section {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  .news-carousel {
    min-height: 250px !important;
  }

  .news-slide {
    padding: 22px 18px !important;
  }
}
/* Hide news numbers in carousel */
.news-slide small {
  display: none !important;
}
/* =========================================================
   MOBILE MENU FIX
========================================================= */

.menu-toggle {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10010;
    position: relative;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    width: min(82vw, 340px);
    height: 100vh;
    padding: 110px 26px 32px;
    background: rgba(3, 3, 3, 0.97);
    border-left: 1px solid rgba(255,255,255,0.12);
    box-shadow: -24px 0 60px rgba(0,0,0,0.55);
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    transform: translateX(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 260ms ease;
    z-index: 10000;
  }

  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    padding: 10px 0;
  }

  .mobile-nav-cta {
    margin-top: 12px;
    text-align: center;
    background: #c40000;
    border-radius: 999px;
    padding: 14px 18px !important;
  }

  body.menu-open {
    overflow: hidden;
  }
}
/* =========================================================
   SAFARI / SAMSUNG MOBILE MENU CLICK FIX
========================================================= */

@media (max-width: 980px) {
  .menu-toggle {
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    pointer-events: auto !important;
    z-index: 999999 !important;
  }

  .menu-toggle span {
    pointer-events: none !important;
  }

  .site-header,
  .header-inner {
    overflow: visible !important;
  }

  .site-nav {
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    z-index: 999998 !important;
  }

  .site-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}