
/* ðŸŒ¿ Minimalistisches, modernes Design */

/* ---------------- NAVBAR ---------------- */
.navbar {
  background: #ffffff;
  border-bottom: 2px solid #e0e0e0;
}

.navbar-brand {
  font-weight: bold;
  color: #2c3e50 !important;
}

.nav-link {
  color: #2c3e50 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #25A18E !important;
}

/* ---------------- GLOBAL ---------------- */
body {
  background: linear-gradient(to bottom right, #f9f9f9, #eaf4f4);
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
}

h2, h3, h4, h5 {
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(45deg, #25A18E, #ff6f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  background: linear-gradient(135deg, #25A18E, #ff6f61);
}

/* ---------------- CARDS ---------------- */
.fancy-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.fancy-card:hover {
  transform: translateY(-5px) scale(1.03);
}

/* ---------------- WEBCAM FRAME (3D) ---------------- */
.webcam-frame {
  aspect-ratio: 16 / 9;   /* erzwingt einheitliches Format */
  object-fit: cover;      /* füllt den Rahmen sauber */
}
.webcam-wrap {
  perspective: 900px;
  display: inline-block;
}

.webcam-frame {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform-style: preserve-3d;
  transition: transform 1.3s ease, box-shadow 0.5s ease;
}

.webcam-frame:hover {
  transform: rotateY(14deg) rotateX(6deg) translateZ(30px) scale(2.08);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.webcam-wrap:hover .webcam-frame {
  transform: rotateY(10deg) rotateX(4deg) translateZ(20px) scale(1.05);
}

/* ---------------- POP IMAGE ---------------- */
.pop-img {
  border: 4px solid #25A18E;
  transition: transform 0.4s ease;
}

.pop-img:hover {
  transform: rotate(-2deg) scale(1.1);
}

/* ---------------- LISTS ---------------- */
.fancy-list li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ---------------- WEATHER BOX ---------------- */
.weather-box {
  border-left: 4px solid #0d6efd;
}

.weather-list li {
  padding: 4px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.weather-list i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  color: #0d6efd;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #343a40;
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-top: 50px;
}

/* ---------------- DOWNLOAD BUTTONS ---------------- */
.btn-download-history {
  background-color: #6c757d;
  color: #fff;
}

.btn-download-zeitraffer {
  background-color: #198754;
  color: #fff;
}

.btn-download-wetter {
  background-color: #0d6efd;
  color: #fff;
}

.btn-download-style {
  background-color: #b83280;
  color: #fff;
}

/* Hover-Effekte */
.btn-download-history:hover {
  background-color: #5a6268;
}

.btn-download-zeitraffer:hover {
  background-color: #157347;
}

.btn-download-wetter:hover {
  background-color: #0b5ed7;
}

.btn-download-style:hover {
  background-color: #9e2c6f;
}