:root {
  --primary: #b9d4f1;
  --secondary: #9ca3af;
  --tertiary: #252525;
  --dark: #6a759b;
  --dark-2: #21273d;
}

::selection {
  background: var(--primary);
  color: var(--dark-2);
}

* {
  box-sizing: border-box;
}

html {
  cursor: crosshair;
  scroll-behavior: smooth;
}

body {
  color: var(--primary);
  font-family: "Lato", sans-serif;
  background-color: var(--dark-2);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#smooth-wrapper, #smooth-content {
  width: 100%;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
h1 { font-size: 2rem; margin-bottom: 50px; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

.spacer-8 {
  margin-bottom: 160px !important;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 9999;
  border-radius: 0 0 20px 20px;
  background-color: rgba(33, 39, 61, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--tertiary);
  transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.nav-list-item {
    display: flex;
    align-items: center;
    margin-left: 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-list-item:hover {
  background-color: rgba(185, 212, 241, 0.1);
  backdrop-filter: blur(5px);
  transform: translateY(-2px);
}

.nav-item a {
  color: var(--primary);
  transition: all 0.3s ease;
}

.nav-item a:hover {
  color: #fc0;
  transform: scale(1.1);
}

/* Icons */
.fa-solid {
  display: inline-block;
  margin: 15px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.fa-solid:hover {
  color: #fc0;
  transform: scale(1.1);
}
.nav-active {
  color: #fc0;
}

#icons-desktop .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#icons-desktop .col-xl-6:last-child {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header-container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}
.header-container .row .col-6 {
  display: flex;
  flex: none;
}
.header-container .row .col-6:first-child {
  justify-content: flex-start;
}
.header-container .row .col-6:last-child {
  justify-content: flex-end;
}
#icons-desktop,
#icons-mobile {
  width: 100%;
  justify-content: flex-end;
}
#icons-desktop {
  display: none;
}
#icons-mobile {
  display: flex;
}

@media (min-width: 768px) {
  #icons-desktop {
    display: flex !important;
  }
  #icons-mobile {
    display: none !important;
  }
}


.logo-img {
  max-width: 100px;
  width: 100%;
  height: auto;
  display: inline;
}
.logo-link {
  text-decoration: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  width: 100%;
}


.emo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  background: linear-gradient(45deg, var(--dark-2), var(--tertiary));
  overflow: hidden;
}

.emo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1000;
  filter: brightness(0.7);
}

.emo-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: skewX(-8deg) translateY(-50%);
  z-index: 9998;
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.emo-text::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  right: -25px;
  bottom: -15px;
  background: linear-gradient(45deg, #fc0, #ffdd00);
  z-index: -2;
  transform: skewX(8deg);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(252, 204, 0, 0.3);
}
.emo-text span {
  color: black;
  position: relative;
  z-index: 1;
}

main.content {
  width: 80%;
  margin: auto;
  padding-top: 100px;
}

.cursor-shadow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 212, 241, 0.08) 0%, rgba(252, 204, 0, 0.05) 30%, rgba(33, 39, 61, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.horizontal-scroll {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 2;
}
.scroll-container {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 0 2rem;
  animation: scroll 60s linear infinite;
}
.scroll-container:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.card {
    min-width: 350px;
    height: 450px;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9), rgba(42, 42, 42, 0.9));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(185, 212, 241, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(185, 212, 241, 0.1), transparent);
    transition: left 0.4s ease;
}
.card:hover::before {
    left: 100%;
}
.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(185, 212, 241, 0.2);
}
.card h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.4rem;
}
.card li {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.stats-container {
    color: #000;
    background-color: #fc0;
    min-width: 100%;
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.stats {
  position: relative;
}

.usp-top {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-100%); 
  z-index: 1;
}

.usp-bottom {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(100%);
  z-index: 1;
}



.intro-section {
    margin: 150px 0;
    padding: 50px 0;
}
.intro-section ul {
    list-style: none;
    padding: 0;
}
.intro-section li {
    padding: 15px 0 15px 25px;
    margin: 15px 0;
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(185, 212, 241, 0.1), transparent);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}
.intro-section li:hover {
    border-left-color: #fc0;
    background: linear-gradient(90deg, rgba(252, 204, 0, 0.1), transparent);
    transform: translateX(10px);
}

.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(185, 212, 241, 0.05), rgba(252, 204, 0, 0.05));
    border-radius: 30px;
    margin: 50px 0;
}
.cta-buttons {
    margin-top: 40px;
}
.btn {
    margin: 15px;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary), #93c5fd);
    color: var(--dark-2);
    border: none;
    box-shadow: 0 8px 25px rgba(185, 212, 241, 0.3);
}
.btn-secondary {
    background: linear-gradient(45deg, var(--tertiary), #404040);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 25px rgba(37, 37, 37, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}
.btn-cta {
    max-width: 180px;
    width: 100%;
    padding: 0.5em 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

@media (min-width: 700px) {
    .btn-cta {
      max-width: 300px;
    }
}

.borderline {
    padding-bottom: 8px;
    position: relative;
}
.borderline:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    background-color: #fc0
}

.track-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-top: 5rem;
  margin-bottom: 2rem;
  border-radius: 50px;
}

@media (max-width: 1199px) {
  .track-img {
    height: auto;
    max-height: 200px;
  }
}

h3.track-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.flag-icon {
  width: 34px;
  height: auto;
  margin-left: 10px;
  flex-shrink: 0;
}
.car-image {
  height: auto;
  max-height: 200px;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px auto;
}
.car-cards {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(185, 212, 241, 0.05), rgba(252, 204, 0, 0.05));
    border-radius: 30px;
    margin: 50px 0;
}
.car-cards ul{
    list-style: none;
}
.card ul{
    list-style: none;
}

.event-item {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  border-radius: 30px;
  border: 1px solid grey;
  background: linear-gradient(135deg, rgba(185, 212, 241, 0.05), rgba(252, 204, 0, 0.05));
  margin-bottom: 50px;
}
.event-date {
  position: absolute;
  top: -60px;
  left: 10%;
  padding: 5px;
  height: 40px;
  border: 2px solid black;
  border-radius: 30px;
  background-color: #fc0;
  color: #000;
  font-weight: 700;
  width: auto;
  z-index: 2;
}
@media (max-width: 767px) {
    .event-date {
        top: -210px;
    }
}
.event-img {
  display: flex;
  width: 100%;
  height: 150px;
  overflow: hidden;
  justify-content: center;
}
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.btn-event {
    max-width: 180px;
    width: 100px;
    padding: 0.5em 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
@media (min-width: 700px) {
    .btn-event {
      max-width: 100px;
    }
}


#icons-mobile {
  position: relative;
}

#mobile-menu {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #222;
  padding: 10px;
  border-radius: 10px;
  z-index: 999;
}

#mobile-menu li {
  margin: 10px 0;
}

.d-none {
  display: none;
}

.input, .textarea {
  background: linear-gradient(135deg, rgba(185, 212, 241, 0.05), rgba(252, 204, 0, 0.05));
  border: 1px solid rgba(185, 212, 241, 0.2);
  margin-bottom: 20px;
  width: 100%;
  padding: 5px 15px;
  border-radius: 10px;
  max-width: 80%;
  color: var(--primary);
}
.textarea {
  min-height: 300px;
}
.input {
  height: 45px;
}
.input:focus, .textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #fff;
}
.btn-submit {
  margin-bottom: 100px;
}

footer {
  background: linear-gradient(135deg, rgba(185, 212, 241, 0.05), rgba(252, 204, 0, 0.05));
  border: 1px solid rgba(185, 212, 241, 0.2);
  padding: 30px 10px;
}
.footer-item-block {
  margin-bottom: 20px;
  width: 100%;
}
.footer-list {
  list-style: none;
}
.footer-item a {
  color: var(--primary);
  transition: all 0.3s ease;
}
.footer-item a:hover {
  color: #fc0;
  transform: scale(1.1);
  text-decoration: none;
}

