*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: #F0F4FA;
	color: #002B55;
	margin: 40px auto 40px auto;
	padding: 1rem 6vw 1rem;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
  color: #004080;
}

p {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Container für 3D-Modell */
.scene-wrapper {
  height: 100vh;
  position: relative;
	margin-top: -8vh;
  position: relative; 
}

/* AIRLIGHT Titel */
.title {
  position: absolute;
  top: 2.5vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 800;
  letter-spacing: 0.1em;
  color: #004080;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

/* Breakpoints.html */
.breakpoints {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}

.tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
}

th {
  text-align: left;
  padding: 1rem;
  background: #004080;
  color: white;
  font-size: 1.2rem;
}

td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

tr:last-child td {
  border-bottom: none;
}

.color {
  width: 48px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Zeitachse.html */
.timeline-frame {
  width: 100%;
  height: 150px;
  display: block;
  border: 0;
  overflow: hidden;
  margin: 2.5rem 0;
}

/* Datums Anzeige */
#live-info {
  position: absolute;
  top: 190px;        
  padding: 1rem 6vw 1rem;
  z-index: 10;
  font-family: Arial, Helvetica, sans-serif;
  color: #003A8F;
}

.live-title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

#live-date {
  font-size: 20px;
  font-weight: 600;
  line-height: 2.2;
}

#live-time {
  font-size: 16px;
  opacity: 0.85;
}
