/* Background photo behind everything */
body {
  background-image: url('/assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Frosted glass effect on every widget card */
.widget {
  background: rgba(20, 30, 28, 0.45) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Rounded, translucent top nav bar */
.navigation,
.header {
  background: rgba(20, 30, 28, 0.5) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
}

/* Big clock */
.widget-type-clock {
  text-align: center;
  padding: 1.5rem 0;
}
.widget-type-clock time {
  font-size: 4.5rem !important;
  font-weight: 300 !important;
  letter-spacing: 2px;
}

/* Rounded thumbnails */
.widget img {
  border-radius: 10px;
}
