/* ===================================================
   bumblewhistle.exe — frutiger aero "browser window" theme
   fonts: Baloo 2 (display) / Mukta (body + labels)
   =================================================== */

:root {
  --sky-top: #cdeefb;
  --sky-mid: #7fcdf0;
  --sky-deep: #2e8fc0;
  --grass-top: #a8d96a;
  --grass-deep: #5a9e3f;
  --skyline-fill: rgba(90, 130, 160, 0.35);
  --glass-white: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --navy-text: #123449;
  --navy-soft: #33607a;
  --blue-btn: #3fa9dc;
  --blue-btn-deep: #1c6ea4;
  --green-btn: #8fcb6e;
  --green-btn-deep: #5a9e3f;
  --shadow-soft: 0 16px 34px rgba(15, 60, 85, 0.28);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Mukta', sans-serif;
  color: var(--navy-text);
}

body {
  position: relative;
  overflow-x: hidden;
  padding: 30px 16px 60px;
  display: flex;
  justify-content: center;
}

/* ---------- background scenery ---------- */

.scenery {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 55%, var(--sky-deep) 100%);
  overflow: hidden;
}

.clouds {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 220px 90px at 15% 18%, rgba(255,255,255,0.85), rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 260px 100px at 75% 10%, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 200px 80px at 50% 28%, rgba(255,255,255,0.5), rgba(255,255,255,0) 70%);
}

.skyline {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 240px;
  opacity: 0.9;
}

.skyline span {
  width: 44px;
  background: linear-gradient(180deg, var(--skyline-fill), rgba(60,90,120,0.45));
  border-top: 2px solid rgba(255,255,255,0.25);
}

.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--grass-top), var(--grass-deep));
  border-top: 3px solid rgba(255,255,255,0.4);
}

/* ---------- the "browser window" ---------- */

.browser-window {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: var(--glass-white);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 18px 22px 26px;
  margin-top: 10px;
}

.win-controls {
  position: absolute;
  top: 14px;
  right: 20px;
  display: flex;
  gap: 6px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 1px 1px rgba(255,255,255,0.6); }
.dot.yellow { background: #f4c542; }
.dot.green { background: #6fbf5e; }
.dot.red { background: #e0665a; }

/* ---------- nav bar ---------- */

.nav-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 14px;
}

.round-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(200,225,240,0.6));
  color: var(--navy-soft);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(20,70,95,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}

.address-bar {
  flex: 1;
  padding: 8px 16px;
  background: var(--glass-strong);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  font-size: 0.85rem;
  color: var(--navy-soft);
  box-shadow: inset 0 2px 4px rgba(20,70,95,0.1);
}

.chev { float: right; opacity: 0.6; }

.pill-btn {
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Mukta', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 14px rgba(20,70,95,0.22), inset 0 1px 0 rgba(255,255,255,0.7);
}

.pill-btn.small {
  color: var(--navy-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(210,230,240,0.7));
}

.pill-btn.blue {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-btn), var(--blue-btn-deep));
}

.pill-btn.green {
  color: #fff;
  background: linear-gradient(180deg, var(--green-btn), var(--green-btn-deep));
}

.mag { margin-left: 4px; }

/* ---------- bookmarks + tabs ---------- */

.bookmarks-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 4px 12px;
  font-size: 0.8rem;
  color: var(--navy-soft);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.bookmarks-bar b { color: var(--blue-btn-deep); font-weight: 700; }

.tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0 16px;
}

.tab {
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-soft);
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.tab.active {
  color: var(--navy-text);
  background: var(--glass-strong);
  box-shadow: 0 4px 10px rgba(20,70,95,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ---------- body: sidebar + content ---------- */

.window-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
}

.sidebar {
  background: var(--glass-strong);
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.avatar-bubble {
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy-soft);
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), var(--green-btn) 55%, var(--blue-btn-deep) 100%);
  border: 2px dashed rgba(255,255,255,0.8);
  box-shadow: 0 8px 18px rgba(20,70,95,0.25);
}

.handle {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 2px;
  color: var(--navy-text);
}

.handle-sub {
  font-size: 0.75rem;
  color: var(--navy-soft);
  margin: 0 0 16px;
}

.status-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
  font-size: 0.78rem;
  color: var(--navy-soft);
}

.status-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.ico { font-size: 0.9rem; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(180deg, var(--blue-btn), var(--blue-btn-deep));
  color: #fff;
  box-shadow: 0 5px 12px rgba(20,70,95,0.25), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* content pane */

.content-pane {
  min-width: 0;
}

.content-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.4rem, 3.6vw, 1.9rem);
  color: var(--blue-btn-deep);
  margin: 4px 0 14px;
}

.hero-bubble {
  height: 220px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.9rem;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.9), rgba(255,255,255,0) 40%),
    linear-gradient(155deg, rgba(143,203,110,0.55), rgba(63,169,220,0.55));
  border: 1.5px dashed rgba(255,255,255,0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 22px rgba(20,70,95,0.18);
  margin-bottom: 18px;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

.hl {
  color: var(--blue-btn-deep);
  font-weight: 600;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--navy-soft);
}

.card-title {
  display: inline-block;
  font-family: 'Mukta', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-btn-deep);
  background: rgba(143,203,110,0.25);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.info-card p { margin: 0; }

/* ---------- footer status bar ---------- */

.status-bar {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--glass-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.round-btn.globe {
  background: linear-gradient(180deg, var(--blue-btn), var(--blue-btn-deep));
  color: #fff;
}

.status-buttons {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.status-icons {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--navy-soft);
}

.made-with {
  text-align: center;
  font-size: 0.72rem;
  color: var(--navy-soft);
  opacity: 0.8;
  margin: 14px 0 0;
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .window-body {
    grid-template-columns: 1fr;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .status-bar {
    flex-wrap: wrap;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}