/* Grundlegendes Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: url('kliff-cafe.jpg') center/cover no-repeat;
  /* background: linear-gradient(135deg, #2b5876, #4e4376); */
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.message h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.message p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Zahnräder-Animation */
.gears {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
}

.gear {
  position: absolute;
  width: 60px;
  animation: spin 5s linear infinite;
}

.gear1 { top: 30%; left: 47%; transform: translateX(-50%); }
.gear2 { top:42%; left: 0; transform: translateY(-50%) rotate(45deg); animation-duration: 6s; }
.gear3 { bottom: 48%; right: 50%; transform: translateX(50%) rotate(-30deg); animation-duration: 5s; }
.gear4 { bottom: 0; right: 70%; transform: translateX(50%) rotate(-30deg); animation-duration: 5s; }


@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Countdown-Styling */
.countdown {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown small {
  display: block;
  font-size: 0.8rem;
  color: #ddd;
}

/* Kontakt & Social */
.contact p {
  margin-bottom: 10px;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
}

.social a {
  margin: 0 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 600px) {
  .message h1 { font-size: 2rem; }
  .countdown span { font-size: 1.5rem; }
}