/* Navbar */
.custom-navbar {
    background: linear-gradient(135deg, #063659 0%, #519BA2 100%);
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    min-width: 0; /* für flex + text-overflow wichtig */
  }
  
  .navbar-brand .logo {
    height: 90px;
    flex-shrink: 0.5; /* Logo bleibt gleich groß */
  }
  
  .navbar-brand .brand-text {
    flex-grow: 1;          /* Text nutzt den ganzen Platz */
    font-size: clamp(0.9rem, 4vw, 1.4rem); /* dynamisch nach Platz */
    white-space: nowrap;    /* oder normal, falls umbrechen erlaubt */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  
  /* Hero Section */
  .hero-section {
    background: #063659;
    color: #fff;
  }
  
  /* Race Info Section */
  .race-info {
    background-color: #f8f9fa;
  }
  
  .race-info h3 {
    color: #063659;
  }
  
  ul.list-unstyled li {
    margin-bottom: 0.5rem;
  }
  
  
  
  /* Footer */
  footer {
    border-top: 1px solid #dee2e6;
  }
  
  /* Optional — make links look neat */
  a.link-primary {
    text-decoration: none;
    font-weight: 500;
  }
  a.link-primary:hover {
    text-decoration: underline;
  }
  
  .link-colored {
    color: #519BA2 !important;
  }
  /* Small adjustments for spacing */
  body {
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  