/* ── Home / Bun venit view — Gold Cinematic ──────────────────────── */
.home-view {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.home-section-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.2px;
}
.home-section-title i { color: var(--gold, #C6A44E); font-size: 16px; }
.welcome-video-wrap {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(245, 240, 232, 0.06);
}
.welcome-video-wrap video {
  width: 100%;
  display: block;
  max-height: 480px;
}
.calendar-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid rgba(245, 240, 232, 0.06);
  box-shadow: var(--shadow-sm);
  background: var(--night-card);
}
.calendar-scroll iframe {
  display: block;
  border: 0;
  width: 100%;
  min-width: 680px;
  height: 560px;
}
@media (min-width: 640px) {
  .calendar-scroll iframe { height: 640px; }
}
@media (min-width: 1024px) {
  .home-view { padding: 28px 24px; max-width: 1200px; }
  .calendar-scroll iframe { height: 720px; min-width: unset; width: 100%; }
}

/* ── Follow / Notification toggles ── */
.follow-notification-section {
  margin-top: 24px;
  padding: 22px;
  background: rgba(42, 48, 80, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(52, 211, 153, 0.08);
}
.follow-header {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.follow-header i { color: var(--gold, #C6A44E); margin-right: 8px; }
.follow-desc {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.follow-toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.follow-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.05);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.follow-toggle:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(52, 211, 153, 0.1);
}
.ft-icon { font-size: 18px; }
.ft-name { flex: 1; font-size: 14px; color: var(--cream); font-weight: 500; }
.ft-cb { display: none; }
.ft-switch {
  width: 42px; height: 24px;
  background: rgba(245, 240, 232, 0.1);
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
}
.ft-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.ft-cb:checked + .ft-switch { background: var(--emerald, #34D399); }
.ft-cb:checked + .ft-switch::after { transform: translateX(18px); }
.btn-follow-save {
  width: 100%;
  padding: 13px;
  background: var(--gradient-primary, linear-gradient(135deg, #34D399, #6EE7B7));
  color: #1E2235;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(52, 211, 153, 0.2);
}
.btn-follow-save:hover { opacity: 0.9; box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3); }
.btn-follow-save.hidden { display: none; }
.follow-saved {
  text-align: center;
  padding: 12px;
  color: var(--emerald);
  font-size: 14px;
  font-weight: 600;
}
.follow-saved.hidden { display: none; }
.follow-saved i { margin-right: 6px; }
