/* ==========================================================================
   Home Page Styles - Neo-Metro Kinetic Split
   Custom Color Bases: Land & Sky (Blue/Green), Ocean, Forest, Warm Filmic
   ========================================================================== */

:root {
  --home-bg: #06090e;
  --home-text-primary: #ffffff;
  --home-text-muted: #94a3b8;
}

body.page-kube {
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--home-bg) !important;
  overflow: hidden !important;
}

.vibe-filmic-viewport {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  background: var(--home-bg);
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  z-index: 100;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s ease;
}

/* Authentic Filmic Texture Overlay */
.vibe-filmic-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.038'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 25;
}

/* Top Bar */
.vibe-filmic-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  pointer-events: none;
  box-sizing: border-box;
}

.vibe-filmic-brand,
.vibe-filmic-socials a {
  pointer-events: auto;
}

.vibe-filmic-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-family: 'Lato', sans-serif;
  background: rgba(12, 18, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: opacity 0.15s ease;
}

.vibe-filmic-brand:hover {
  opacity: 0.85;
}

.vibe-filmic-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.vibe-filmic-socials {
  display: flex;
  gap: 8px;
  background: rgba(12, 18, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.vibe-filmic-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.18s ease;
}

.vibe-filmic-socials a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Kinetic Split Panels */
.filmic-panels-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.filmic-panel {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px 100px 60px;
  overflow: hidden;
  transition: flex 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.filmic-panel-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}

.filmic-panel-posts .filmic-panel-bg {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.filmic-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.filmic-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filmic-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: 'Space Mono', 'Space Grotesk', monospace;
  opacity: 0.85;
  transition: color 0.4s ease;
}

.filmic-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filmic-title {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  line-height: 0.95;
  font-family: 'Lato', sans-serif;
}

.filmic-arrow {
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filmic-sub-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #94a3b8;
  font-family: 'Space Mono', 'Space Grotesk', monospace;
  text-transform: uppercase;
  min-height: 16px;
  transition: color 0.4s ease;
}

/* Hover Kinetic Expansion & Atmosphere */
.filmic-panels-container:hover .filmic-panel {
  flex: 1 1 38%;
}

.filmic-panels-container .filmic-panel:hover {
  flex: 1 1 62%;
}

.filmic-panel:hover .filmic-panel-bg {
  transform: scale(1.03);
}

.filmic-panel:hover .filmic-art {
  opacity: 0.95;
  transform: scale(1.04);
}

.filmic-panel:hover .filmic-arrow {
  background: #ffffff;
  color: #06090e;
  transform: translate(4px, -4px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   COLOR PALETTES
   ========================================================================== */

/* ==========================================================================
   OFFICIAL PALETTE: LAND & SKY (Posts = Emerald Land, Trips = Azure Sky)
   ========================================================================== */
.palette-land-sky .vibe-filmic-dot {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* Posts: Deep Alpine / Emerald Land */
.palette-land-sky .filmic-panel-posts .filmic-panel-bg {
  background: radial-gradient(ellipse at 35% 80%, rgba(16, 185, 129, 0.28) 0%, rgba(10, 32, 22, 0.8) 50%, #040f09 100%);
}
.palette-land-sky .filmic-panel-posts:hover .filmic-panel-bg {
  background: radial-gradient(ellipse at 35% 85%, rgba(52, 211, 153, 0.42) 0%, rgba(16, 185, 129, 0.3) 40%, #040f09 75%);
}
.palette-land-sky .filmic-panel-posts .filmic-tag {
  color: #34d399;
}
.palette-land-sky .filmic-panel-posts .filmic-sub-meta {
  color: #a7f3d0;
}
.palette-land-sky .art-stroke-primary-posts { stroke: #34d399; }
.palette-land-sky .art-stroke-secondary-posts { stroke: #10b981; }
.palette-land-sky .art-fill-posts { fill: #34d399; }

/* Trips: Deep Sky / Celestial Azure */
.palette-land-sky .filmic-panel-trips .filmic-panel-bg {
  background: radial-gradient(ellipse at 65% 30%, rgba(2, 132, 199, 0.32) 0%, rgba(12, 28, 50, 0.8) 40%, rgba(10, 20, 38, 0.8) 70%, #050b14 100%);
}
.palette-land-sky .filmic-panel-trips:hover .filmic-panel-bg {
  background: radial-gradient(ellipse at 65% 25%, rgba(56, 189, 248, 0.44) 0%, rgba(2, 132, 199, 0.3) 40%, #050b14 75%);
}
.palette-land-sky .filmic-panel-trips .filmic-tag {
  color: #38bdf8;
}
.palette-land-sky .filmic-panel-trips .filmic-sub-meta {
  color: #93c5fd;
}
.palette-land-sky .art-stroke-primary-trips { stroke: #38bdf8; }
.palette-land-sky .art-stroke-secondary-trips { stroke: #7dd3fc; }
.palette-land-sky .art-fill-trips { fill: #38bdf8; }

@media (max-width: 768px) {
  .filmic-panels-container {
    flex-direction: column;
  }
  .filmic-panel {
    flex: 1 1 50% !important;
    padding: 32px 24px 60px 24px;
  }
  .filmic-title {
    font-size: 3rem;
  }
  .vibe-filmic-topbar {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
}
