/* 
Theme Name:    Derjosef-Child
Theme URI:     http://childtheme-generator.com/
Description:   Derjosef-Child is a child theme of DerJosef
Author:        Josef Gerhardter
Author URI:    https://derjosef.com
Template:      derjosef
Version:       1.0.0
Text Domain:   derjosef-child
*/

/*
    Add your custom styles here
*/

/* =========================
   ROOT VARIABLES
   ========================= */

:root {
  /* Colors */
  --color-black: #151414;
  --color-black-deep: #151414;
  --color-white: #ffffff;
  --color-gray: #edeaea;
  --color-red: #de5126;

  /* Typography */
  --font-size-base: 14px;
  --font-size-h1: 3.96vw;
  --font-size-h2: 3.3vw;
  --font-size-h3: 3.3vw;
  --font-size-h4: 2.5vw;
  --font-size-h5: 1.71vw;
  --font-size-h6: 3.3vw;
  --line-height: 1.6;

  /* Fonts */
  --font-text:
    "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline:
    "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 32px;
  --spacing-xlarge: 150px;

  /* Corners */
  --corner-size-small: 25px;
  --corner-size-big: 50px;
}

/* =========================
   OPEN SANS – FONT FACES
   ========================= */

@font-face {
  font-family: "Open Sans";
  src:
    url("/wp-content/themes/derjosef-child/fonts/OpenSans-Light.woff2")
      format("woff2"),
    url("/wp-content/themes/derjosef-child/fonts/OpenSans-Light.woff")
      format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    url("/wp-content/themes/derjosef-child/fonts/OpenSans-Regular.woff2")
      format("woff2"),
    url("/wp-content/themes/derjosef-child/fonts/OpenSans-Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    url("/wp-content/themes/derjosef-child/fonts/OpenSans_SemiCondensed-Bold.woff2")
      format("woff2"),
    url("/wp-content/themes/derjosef-child/fonts/OpenSans_SemiCondensed-Bold.woff")
      format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}

/* =========================
   BASE / HTML / BODY
   ========================= */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 300;
  line-height: var(--line-height);
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =========================
   HEADLINES
   ========================= */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-stretch: condensed;
  margin-bottom: 0.5em;
  font-variant: var(--color-red);
  color: var(--color-red) !important;
  text-transform: uppercase;
}

h1 {
  font-size: var(--font-size-h1) !important;
  line-height: 1.2;
  font-variant: var(--color-red);
}
h2 {
  font-size: var(--font-size-h2) !important;
  line-height: 1.3;
  font-variant: var(--color-red);
}
h3 {
  font-size: var(--font-size-h3) !important;
  line-height: 1.4;
  font-variant: var(--color-red);
}
h4 {
  font-size: var(--font-size-h4) !important;
  line-height: 1.5;
  font-variant: var(--color-red);
}
h5 {
  font-size: var(--font-size-h5) !important;
  line-height: 1.6;
  font-variant: var(--color-red);
}
h6 {
  font-size: var(--font-size-h6) !important;
  line-height: 1.7;
  font-variant: var(--color-red);
}
/* =========================
   MOBILE HEADLINE FIX
   ========================= */

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem !important; /* ca. 35px */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.8rem !important; /* ca. 29px */
    line-height: 1.3;
  }

  h3 {
    font-size: 1.5rem !important; /* ca. 24px */
    line-height: 1.4;
  }

  h4 {
    font-size: 1.3rem !important; /* ca. 21px */
  }

  h5 {
    font-size: 1.1rem !important; /* ca. 18px */
  }

  h6 {
    font-size: 1rem !important; /* ca. 16px */
  }
}
/* =========================
   TEXT ELEMENTS
   ========================= */

p,
li {
  margin-bottom: 1em;
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 1rem;
}

strong {
  font-weight: 400;
}

small {
  font-size: 0.8em;
}

/* =========================
   SUBHEADLINE
   ========================= */

.subheadline {
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: calc(0.9rem + 0.2vw);
}

/* =========================
   LINKS & BUTTONS
   ========================= */

main a {
  font-family: var(--font-text);
  color: var(--color-white);
}

button {
  font-family: var(--font-headline);
  font-weight: 700;
  font-stretch: condensed;
  font-size: 0.85rem;
}

/* =========================
   SPACER UTILITIES
   ========================= */

.spacer-none {
  margin: 0;
}
.spacer-small {
  margin: 32px 0;
}
.spacer-middle {
  margin: 64px 0;
}
.spacer-big {
  margin: 128px 0;
}
.spacer-biggest {
  margin: 200px 0;
}
#wrapper {
  background-color: var(--color-black);
}
main#main {
  margin-top: 40px;
}
/* main end */
/* =========================
   NAVBAR – GLOBAL
   ========================= */

.navbar {
  background: var(--color-black) !important;
  background-image: none !important;
  box-shadow: none !important;

  position: sticky;
  top: 0;
  z-index: 999;

  padding-top: 1rem;
  padding-bottom: 1rem;
}
nav.navbar.navbar-expand-md.sticky-top {
  position: fixed;
  width: 100%;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-red) !important;
}
/* =========================
   LOGO
   ========================= */
.navbar-brand {
  padding: 0px !important;
}
.navbar-brand img {
  max-height: 60px !important;
  width: auto;
  height: 60px !important;
}

/* =========================
   NAV LINKS – BASE
   ========================= */

.navbar .navbar-nav {
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  display: inline-block;

  padding: 0.4rem 0;
  margin-left: 16px;

  color: var(--color-white);
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: normal;

  background: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--color-white);
}

/* =========================
   HOVER EFFECT
   ========================= */

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 0;

  background-color: var(--color-accent-red);
  z-index: -1;

  transition: height 0.25s ease;
}

.navbar .navbar-nav .nav-link:hover::after {
  height: 35%;
}

/* =========================
   ACTIVE MENU ITEM
   ========================= */

.navbar .navbar-nav .current-menu-item > .nav-link::after {
  height: 35%;
}

.navbar.sticky-shadow .navbar-nav .nav-link.active {
  color: #000000 !important;
}
/* =========================
   BURGER BUTTON
   ========================= */

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
/* =========================
   NAVBAR – SCROLL STATE
   ========================= */
.navbar {
  transition: background-color 0.3s ease;
}
.navbar.sticky-shadow {
  background-color: #de5126 !important;
  transition: background-color 0.3s ease;
}
button.navbar-toggler {
  border: unset !important;
  font-size: 30px;
}
button.btn-close {
  font-size: 20px;
  color: white !important;
}
/* =========================
   OFFCANVAS (MOBILE MENU)
   ========================= */

.offcanvas {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.offcanvas .btn-close {
  filter: invert(1);
}

.offcanvas .navbar-nav {
  align-items: center;
}

.offcanvas .nav-link {
  font-size: 1.8rem;
}

.offcanvas li {
  margin-bottom: 0em;
}
.offcanvas .nav-link::after {
  height: 0;
}

.offcanvas .nav-link:hover::after {
  height: 40%;
}

.navbar .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 2px;

  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}
.navbar .navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}
/* =========================
   BURGER ICON – CUSTOM
========================= */

.navbar-toggler-icon {
  background-image: none !important;
  width: 32px;
  height: 32px;
}

.navbar:not(.sticky-shadow) .navbar-toggler-icon {
  background-image: url("/wp-content/themes/derjosef-child/assets/burger-icon-white.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.navbar.sticky-shadow .navbar-toggler-icon {
  background-image: url("/wp-content/themes/derjosef-child/assets/burger-icon_black.svg") !important;
}

@media (min-width: 768px) {
  .navbar-toggler {
    display: none;
  }
}

/* =========================
   BUTTON SYSTEM
========================= */

.button-main {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0 0 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button-main-border {
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.button-main span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.button-main .circle,
.button-main .arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.button-main:hover,
.button-main:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.button-main-border:hover,
.button-main-border:focus-visible {
  border-color: #ffffff;
}

.button-main:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

/* Post */

/* =========================
   SINGLE POST
========================= */

.post-title {
  text-transform: uppercase;
}

.post-excerpt {
  opacity: 0.9;
}

.post-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.post-content-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
@media (max-width: 991px) {
  .post-featured-image img {
    height: 300px;
    margin-top: 2rem;
  }
}

/* accordion section */

/* =========================
   ACCORDION BASE
========================= */

.accordion-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.accordion-main-headline {
  color: #e45724;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.accordion-intro-text {
  max-width: 900px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.accordion-intro-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   LIST + ITEMS
========================= */

.accordion-list {
  border-top: 1px solid #e45724 !important;
}

.accordion-item {
  border-bottom: 1px solid #e45724 !important;
}

/* =========================
   HEADER
========================= */

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  padding: 1rem 0;
  cursor: pointer;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
}

.accordion-number {
  color: #e45724;
  font-size: 1.2rem;
  min-width: 2.5rem;
}

.accordion-title {
  color: #e45724;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.accordion-icon {
  font-size: 1.6rem;
  color: #e45724;
  transition: transform 0.35s ease;
}

/* =========================
   CONTENT (ANIMATED)
========================= */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-inner {
  padding: 0.5rem 0 1.2rem;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
}

.accordion-item.active .accordion-inner {
  opacity: 1;
  transform: translateY(0);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* =========================
   DOWNLOAD LINK
========================= */

.accordion-download {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  padding: 0.35rem 0.9rem;
  border: 1px solid #ffffff;
  border-radius: 999px;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.accordion-download:hover {
  background: #ffffff;
  color: #e45724;
}

.accordion-header.is-download {
  cursor: default;
}

/* =========================
   ACCORDION – MOBILE FIX
========================= */

@media (max-width: 768px) {
  .accordion-section {
    padding-top: 2.5rem;
  }

  /* =========================
     HEADER – DEFAULT (PLUS)
     ========================= */

  .accordion-header {
    flex-direction: row;
    align-items: center;
  }

  .accordion-title-wrap {
    width: 100%;
  }

  .accordion-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .accordion-icon {
    margin-left: auto;
    font-size: 1.6rem;
  }

  /* =========================
     HEADER – DOWNLOAD
     ========================= */

  .accordion-header.is-download {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .accordion-header.is-download .accordion-download {
    align-self: flex-start;
    margin-left: 0;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .accordion-number {
    min-width: 2rem;
    font-size: 1rem;
  }
}
/* accordion section end */

/* =========================
   BLOG SLIDER
========================= */

.blogslider-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.blogslider-headline {
  text-transform: uppercase;
}

.blogslider {
  margin: 0 -1rem;
}

.blogslider-slide {
  padding: 0 1rem;
}

.blogslider-card {
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.blogslider-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.blogslider-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #242424 !important;
}

.blogslider-title {
  color: #e45724;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blogslider-excerpt {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.2rem;
}

.blogslider-content-top {
  flex-grow: 1;
}

.blogslider-footer {
  margin-top: auto;
}

.blogslider-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.blogslider-tag {
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.blogslider-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  color: #ffffff;
  text-decoration: none;
}

.blogslider-button span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blogslider-button .circle {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #e45724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogslider-arrow {
  position: absolute;
  bottom: -3.5rem;
  background: #ffffff;
  color: #e45724;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.blogslider-arrow.prev {
  left: 0;
}

.blogslider-arrow.next {
  right: 0;
}

.blogslider .slick-track {
  display: flex;
}

.blogslider-slide {
  height: auto;
  display: flex;
}

.blogslider-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  width: 100%;
  border: 1px solid #ffffff;
  border-radius: 999px;

  padding: 0.45rem 0.45rem 0.45rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
}

.blogslider-button span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blogslider-button .circle {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #e45724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blogslider-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blogslider-footer-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blogslider-button {
  margin-left: auto;
}

.blogslider-image {
  overflow: hidden;
}

.blogslider-image img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.blogslider-card:hover .blogslider-image img {
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .blogslider-image img {
    height: 220px;
  }
}

/* =========================
   BLOG SLIDER end
========================= */

/* =========================
   BOARD SLIDER
========================= */

.boardslider-section {
  background: #0f0f0f;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.boardslider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.boardslider-headline {
  color: #e45724;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.boardslider-text {
  max-width: 560px;
  opacity: 0.9;
}

.boardslider {
  margin: 0 -0.5rem;
}

.boardslider-slide {
  padding: 0 0.5rem;
}

.boardslider-card {
  background: transparent;
}

.boardslider-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  object-position: top center;
}

.boardslider-content {
  margin-top: 1rem;
}

.boardslider-position {
  font-size: 0.85rem;
  opacity: 0.8;
}

.boardslider-name {
  color: #e45724;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.boardslider-arrow {
  position: absolute;
  bottom: -3.5rem;
  background: #ffffff;
  color: #e45724;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.boardslider-arrow.prev {
  left: 0;
}

.boardslider-arrow.next {
  right: 0;
}

@media (max-width: 991px) {
  .boardslider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .boardslider-image img {
    height: 320px;
  }
}

/* =========================
   BOARD SLIDER END
========================= */

/* =========================
   CLUB OVERVIEW SECTION
========================= */

.club-overview-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: radial-gradient(
    circle at top,
    #1a1a1a 0%,
    #0b0b0b 35%,
    #000 100%
  );
  color: #fff;
}

.club-overview-headline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
}

.club-overview-headline-wrap::before,
.club-overview-headline-wrap::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--color-red);
  opacity: 0.8;
}

.club-overview-headline {
  margin: 0;
  text-transform: uppercase;
  color: var(--color-red);
  letter-spacing: 0.04em;
}

/* =========================
   CARD
========================= */

.club-card {
  border: 1px solid var(--color-red);
  border-radius: 16px;
  padding: clamp(1.5rem, 2vw, 2.2rem);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.club-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.club-card-title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: clamp(1.3rem, 1.3vw, 1.7rem);
  color: var(--color-red);
}

.club-card-zip {
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-red);
  margin-top: 0.15rem;
}

.club-card-content {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.club-card-content p {
  margin-bottom: 1rem;
}

.club-card-content p:last-child {
  margin-bottom: 0;
}

.club-overview-section .button-main {
  margin-left: auto;
  width: fit-content;
}

/* =========================
   MOBILE SLICK SLIDER
========================= */

.club-slider {
  margin-top: 0.5rem;
}

.club-slider .club-slide {
  padding: 0 0.35rem;
}

.club-slider .slick-dots {
  position: static;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex !important;
  justify-content: center;
  gap: 0.55rem;
}

.club-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}

.club-slider .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  text-indent: -9999px;
}

.club-slider .slick-dots .slick-active button {
  background: var(--color-red);
}
.club-slider-arrow {
  position: absolute;
  bottom: -3.5rem;
  appearance: none;
  -webkit-appearance: none;
  border: none !important;
  outline: none;
  box-shadow: none;
  background: #ffffff !important;
  color: var(--color-red) !important;
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  z-index: 5;
}

.club-slider-arrow:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.club-slider-arrow.prev {
  left: 0;
}

.club-slider-arrow.next {
  right: 0;
}
.club-slider .slick-list {
  overflow: visible;
}

/* =========================
   RESPONSIVE TWEAKS
========================= */

@media (max-width: 991.98px) {
  .club-card {
    padding: 1.5rem;
  }
}

/* =========================
   CLUB OVERVIEW SECTION END
========================= */

/* =========================
   COMPETITION CALENDAR
========================= */

.competition-calendar-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.competition-calendar-headline {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 3rem;
}

.competition-card {
  background: #262626;
  border-radius: 22px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

.competition-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform: scale(1.03) !important;
}
.competition-card-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.competition-card-title {
  margin: 0;
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 1.25rem !important;
  word-break: break-word;
}

.competition-card-date {
  color: var(--color-red);
  font-size: 1rem;
  white-space: nowrap;
  text-align: right;
}

.competition-card-text {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.85);
}

.competition-card-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .competition-calendar-headline {
    margin-bottom: 2rem;
  }

  .competition-card {
    padding: 1.6rem;
  }

  .competition-card-title {
    font-size: 1.15rem;
  }
}

/* =========================
   COMPETITION CALENDAR end
========================= */

/* =========================
   Headerslider: BASE
========================= */

.headerslider-section {
  background: #0f0f0f;
  color: #ffffff;
}

.headerslider-small-image {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 16px;
}

.headerslider-headline {
  text-transform: uppercase;
  color: #ff5a1f;
  width: 100%;
}

.headerslider-headline-1,
.headerslider-headline-2 {
  font-size: clamp(3rem, 6.2vw, 9.5rem) !important;
  max-width: 100%;
}

@media (min-width: 992px) {
  .headerslider-headline-1,
  .headerslider-headline-2 {
    white-space: nowrap;
  }
}

.headerslider-text {
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-white);
  margin: 0px;
}

.headerslider-text p {
  margin: 0px;
}

.headerslider-slider {
  border-radius: 16px;
  overflow: hidden;
}

.headerslider-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
}

.headerslider-cta {
  position: absolute;
  inset-inline: 0;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.headerslider-button {
  pointer-events: auto;
}

.headerslider-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: #0b0b0b;
  border-radius: 999px;
  padding: 0 0px 0 20px;
}

.headerslider-button-text {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.95rem;
  white-space: nowrap;
}

.headerslider-button-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e45724;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-img {
  transform: translateY(20px) scale(0.96);
}

.reveal-headline {
  transform: translateY(40px);
}

.reveal-text {
  transform: translateY(20px);
}

.reveal-slider {
  transform: scale(0.96);
}

.reveal-cta {
  transform: translateY(20px) scale(0.9);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .headerslider-slide img {
    height: 230px;
    object-position: top center;
  }

  .headerslider-small-image {
    margin-bottom: 20px;
  }
}

/* =========================
   Headerslider: End
========================= */

/* =========================
   HISTORY SLIDER
========================= */

.history-slider-section {
  color: #ffffff;
}

.history-text-wrap {
  max-width: 820px;
}

.history-headline {
  color: var(--color-red);
  text-transform: uppercase;
}

.history-subheadline {
  color: var(--color-red);
  text-transform: uppercase;
}

.history-slider {
  margin-right: -1rem;
}

.history-slide {
  border-radius: 16px;
  overflow: hidden;
  margin-right: 1.2rem;
}

.history-slide img {
  height: 320px;
  object-fit: cover;
  display: block;
}

.history-slide.portrait img {
  width: 220px;
}

.history-slide.landscape img {
  width: 420px;
}

.history-arrow {
  position: absolute;
  bottom: -3.5rem;
  background: #ffffff;
  color: var(--color-red);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.history-arrow.prev {
  left: 0;
}

.history-arrow.next {
  right: 0;
}

.history-slider .slick-list {
  overflow: visible;
}

@media (max-width: 767.98px) {
  .history-slide img {
    height: 260px;
  }

  .history-slide.portrait img {
    width: 180px;
  }

  .history-slide.landscape img {
    width: 320px;
  }
}

/* =========================
   HISTORY SLIDER END
========================= */

/* =========================
   IMAGE SECTION
========================= */

.imagesection-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.imagesection-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.imagesection-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.imagesection-cta {
  position: absolute;
  inset-inline: 0;
  bottom: 2rem;
  display: flex;
  justify-content: center;
}

.main-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: #0b0b0b;
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
}

.main-button-text {
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-button-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e45724;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

@media (max-width: 991.98px) {
  .imagesection-image img {
    height: 220px;
    object-position: top center;
  }
}

/* =========================
   IMAGE SECTION end
========================= */

/* =========================
   IMAGE TEXT CTA
========================= */

.image-text-cta-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ffffff;
}

.image-text-cta-content {
  max-width: 620px;
}

.image-text-cta-headline {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  margin-bottom: 1.5rem;
}

.image-text-cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
}

.image-text-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.45rem 0.45rem 0.45rem 1.4rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.image-text-cta-button .circle {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.image-text-cta-button:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.image-text-cta-image {
  display: flex;
  justify-content: center;
}

.image-text-cta-image img {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .image-text-cta-content {
    margin-bottom: 3rem;
  }

  .image-text-cta-headline {
    font-size: 2rem;
  }

  .image-text-cta-image img {
    max-width: 380px;
  }
}

/* =========================
   IMAGE TEXT CTA END
========================= */
/* =========================
   IMAGE TEXT SPLIT
========================= */

.image-text-split {
  padding: clamp(3rem, 3vw, 6rem) 0;
}

.its-text-wrapper {
  max-width: 720px;
}

.its-headline {
  text-transform: uppercase;
  color: var(--color-red);
}

.its-image-single img,
.its-image-below img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.its-image-single img {
  height: 420px;
}

.its-image-below img {
  height: 280px;
}

.image-text-split.has-two-images .its-image-below img {
  height: 60vh;
}

.its-image-caption {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

@media (max-width: 991.98px) {
  .its-image-single img,
  .its-image-below img {
    height: 320px;
    margin-top: 1.5rem;
  }

  .image-text-split.has-two-images .its-image-below img {
    height: 320px;
  }
}

/* =========================
   IMAGE TEXT SPLIT END
========================= */

/* =========================
   LOGO PARTNER SECTION
========================= */

.logo-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-partner-logo img {
  max-height: 310px;
  width: auto;
  max-width: 100%;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.logo-partner-card:hover .logo-partner-logo img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-partner-headline {
  color: #e45724;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.logo-partner-text {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991.98px) {
  .logo-partner-section {
    padding: 4rem 0;
  }

  .logo-partner-logo img {
    max-height: 110px;
  }

  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translateY(30px);
  }
}

/* =========================
   LOGO PARTNER SECTION END
========================= */

/* =========================
   NEWS POSTS ISOTOPE
========================= */

.news-posts-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.news-headline {
  color: var(--color-red);
  font-size: clamp(3rem, 5vw, 4.8rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.news-intro-text {
  max-width: 900px;
  opacity: 0.9;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2.5rem 0;
}

.news-filter-btn {
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.news-filter-btn.active,
.news-filter-btn:hover {
  background: #ffffff;
  color: var(--color-red);
}

.news-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.news-title {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 1rem 0 0.4rem;
}

.news-excerpt {
  font-size: 0.9rem;
  opacity: 0.85;
}

.news-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.45rem 1.3rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* =========================
   NEWS POSTS ISOTOPE END
========================= */
/* =========================
   TEXT CTA SECTION
========================= */

.textcta-headline {
  color: #e45724;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  margin: 0;
}

.textcta-text {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 900px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.textcta-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .textcta-text {
    text-align: left;
  }
}

/* =========================
   TEXT CTA SECTION End
========================= */
/* =========================
   TEXT SECTION
========================= */

.textsection-titlewrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
}

.textsection-titlewrap::before,
.textsection-titlewrap::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--color-red);
  opacity: 0.8;
}

.textsection-headline {
  display: inline-block;
  padding: 0 0.25rem;
  color: var(--color-red);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  margin: 0;
}

.textsection-subheadline {
  font-size: 1.1rem;
  opacity: 0.85;
}

.textsection-section.two-col .textsection-text {
  text-align: justify;
  hyphens: auto;
}

.textsection-text p:last-child {
  margin-bottom: 0;
}

.textsection-link {
  display: inline-flex;
}

/* =========================
   TEXT SECTION END
========================= */
/* footer */

.site-footer {
  background: #0f0f0f !important;
  color: #ffffff;
  position: relative;
}

.footer-line {
  height: 1px;
  background: #e45724;
}

.footer-inner {
  padding: 4rem 2rem 5rem;
}

.footer-row {
  align-items: flex-start;
}

.footer-col {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-logo-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-item img {
  max-width: 150px;
  height: auto;
}

.footer-col h3,
.footer-col h4 {
  color: #e45724;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-contact {
  text-align: right;
}
/* =========================
   FOOTER BACKGROUND SVG
========================= */

.footer-bg-svg {
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.footer-bg-svg img {
  display: block;
  width: 100%;
  height: auto;
}
#footer a {
  color: var(--color-white) !important;
}
@media (max-width: 991px) {
  .footer-contact {
    text-align: left;
    margin-top: 2rem;
  }

  .footer-logo-list {
    margin-bottom: 2rem;
  }
}
