@font-face {
  font-family: 'Boldonse';
  src: url('/assets/fonts/Boldonse-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'InterLocal';
  src: url('/assets/fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'InterLocal';
  src: url('/assets/fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'InterLocal';
  src: url('/assets/fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

::selection {
  background: #910628; /* deine Wunschfarbe */
  color: white;         /* Textfarbe während der Markierung */
}

body {
  font-family: 'InterLocal', sans-serif;
  background-color: #030303;
  color: #fff;
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: 'Boldonse', 'Arial', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
}

.badge-dark {
  font-size: .875rem;
    line-height: 1.25rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 2px solid #282828;
    background-color: #101010;
}

.badge-red {
  font-size: .875rem;
    line-height: 1.25rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 2px solid #910628;
    background-color: rgba(145, 6, 40, 0.5);
}

.bg-dark {
  background-color: #030303 !important;
}

.section-home-hero .row .col {
  min-height: 100vh;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section-home-hero h1 {
  font-size: 12vw;
  text-shadow: rgba(0, 0, 0, 0.5) 0px 10px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  line-height: 1.1;
}

.hero-h1-subtitle {
  width: 66%;
}

.text-accent {
  color: #910628 !important;
}

.text-bg-accent {
  background-color: #910628 !important;
}

.underline-style {
  text-decoration: underline;
  text-decoration-color: #910628;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px; /* Abstand zum Text */
}

.btn-cta {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 2px;
}

.btn-danger {
  background-color: #910628 !important;
}

.btn-danger:hover {
  background-color: #82192b !important;
}

.marquee {
  overflow: hidden;
  width: 100vw;
  color: rgba(255,255,255,.05);
  font-family: 'Boldonse', 'Arial', sans-serif;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee 33s linear infinite;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
}

.marquee-content span {
  padding: 0 0rem;
  font-size: 1.2rem;
}

.hero-bg-1 {
  background-image: linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, 1)), url('/imgs/bg/red-lamborghini-5-black.webp');

  /* Set a specific height */
  height: 50%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.pillars-subtitle {
  font-weight: 400;
  text-align: center;
  color: #910628;
  font-size: 16px;
  width: 55%;
  margin: auto;
  line-height: 1;
}

/* Animation: verschiebe um 50% des Inhalts */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .section-home-hero h1 {
    font-size: 4.5vw;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }
}