/*  Base Styles & Variables */
:root {
  --color-primary: #FF6B00;
  /* Orange accent */
  --color-primary-hover: #E66000;
  --color-primary-transparent: rgba(255, 107, 0, 0.15);
  --color-bg-darkest: #0A0A0C;
  --color-bg-dark: #121215;
  --color-bg-card: #1A1A1F;
  --color-text-main: #EAEAEA;
  --color-text-muted: #A0A0A0;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;

  --max-width: 1200px;
  --border-radius: 12px;
  --nav-height: 80px;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-darkest);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.highlight {
  color: var(--color-primary);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.dark-bg {
  background-color: var(--color-bg-dark);
}

.darker-bg {
  background-color: var(--color-bg-darkest);
}

.text-center {
  text-align: center;
}

.max-width-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: var(--max-width);
  height: var(--nav-height);
  background-color: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 12, 0.65);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar.hidden {
  transform: translateY(calc(-100% - 20px));
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links ul {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-primary);
}

.back-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.back-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.back-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Offset for sticky nav */
  padding: var(--nav-height) 5% 0;
  text-align: center;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.6) 0%, rgba(10, 10, 12, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s forwards 0.5s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-main);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}



.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
}


.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Neuigkeiten Carousel */
.events-carousel-wrapper {
  position: relative;
  width: 100%;
}

.events-carousel {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2rem;
  padding-top: 10px;
  /* shadow overlap prevention */
  padding-left: 40px;
  padding-right: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  scroll-snap-type: x mandatory;
  scroll-padding-left: 40px;
  scroll-padding-right: 40px;
}

.events-carousel::-webkit-scrollbar {
  display: none;
}

.events-carousel .event-card,
.events-carousel .track-card {
  flex: 0 0 calc((100% - 84px) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


@media (min-width: 1025px) {
  .events-carousel.center-desktop {
    justify-content: center;
  }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  transition: all var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.carousel-arrow.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.carousel-arrow:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: -20px;
  animation: pulse-left 2s infinite ease-in-out;
}

.carousel-arrow-right {
  right: -20px;
  animation: pulse-right 2s infinite ease-in-out;
}

@keyframes pulse-left {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(-5px);
  }
}

@keyframes pulse-right {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow-left {
    left: -10px;
  }

  .carousel-arrow-right {
    right: -10px;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  transition: opacity var(--transition-short);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: rgba(255, 255, 255, 0.8);
  width: 24px;
  border-radius: 4px;
}

/* Termine / Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--color-primary-transparent);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-transparent);
  color: var(--color-primary);
  border-radius: 8px;
  min-width: 70px;
  height: 70px;
  padding: 0.5rem;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-details h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.event-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.event-details .time {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Split Layouts (Verein & School) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse>* {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.split-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.feature-list {
  margin-top: 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.rounded-img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.shadow {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.split-image:hover .rounded-img {
  transform: scale(1.02);
}

/* Accordion */
.accordion {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background-color: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  /* Hide default marker */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-header::after {
  content: '+';
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
}

details[open] .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Cross Kids */
.hero-image-small {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.kids-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.kids-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-box {
  background-color: var(--color-bg-card);
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--color-primary);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-main);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #050506;
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin: 1.5rem 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact address {
  font-style: normal;
  color: var(--color-text-muted);
}

.footer-contact p {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a:hover {
  color: var(--color-primary);
}

/* Animations (Intersection Observer) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transform: translateX(0);
}

/* Stagger Effects */
.events-carousel-wrapper .event-card,
.events-carousel-wrapper .track-card {
  opacity: 0;
  transform: translateY(30px);
}

.events-carousel-wrapper.visible .stagger-visible {
  animation: staggerFadeIn 0.8s ease-out forwards;
}

@keyframes staggerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Strecke & Sponsors New Sections */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

.track-card {
  display: flex;
  flex-direction: column;
}

.track-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.track-card p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}



/* Responsive Design */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-layout.reverse {
    direction: ltr;
    /* Reset to natural stacking */
  }

  .events-carousel .event-card,
  .events-carousel .track-card {
    flex: 0 0 calc((100% - 42px) / 2);
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .navbar {
    top: 15px;
    width: 95%;
    border-radius: 30px;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0 1.5rem;
    /* Re-enable space-between for hamburger */
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    /* Push hamburger to right if alone */
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 30px);
    padding-top: calc(var(--nav-height) + 20px);
    background-color: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(120%);
    transition: transform var(--transition-normal);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .menu-toggle.active .hamburger {
    background: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(0, 0);
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(0, 0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .events-carousel .event-card,
  .events-carousel .track-card {
    flex: 0 0 100%;
    min-width: 0;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }
}

/* Timetable */
.timetable-wrapper {
  margin-top: 1rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.timetable tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timetable tr:last-child {
  border-bottom: none;
}

.timetable th,
.timetable td {
  padding: 1rem 1.5rem;
  vertical-align: top;
}

.timetable thead th {
  border-bottom: 2px solid var(--color-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.timetable .day {
  font-family: var(--font-heading);
  font-weight: 600;
  width: 30%;
  color: var(--color-text-main);
}

.timetable .time {
  color: var(--color-text-main);
}

.timetable .note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.2rem;
}

.timetable tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .timetable .note {
    display: inline;
    margin-left: 0.5rem;
    margin-top: 0;
  }
}