/* Blog styles — inherits global navbar + theme */
/* NOTE: No navbar styles here on purpose. The blog now uses /css/navbar.css entirely. */

/* Keep only local tokens that don't fight global theme */
:root {
  --color-navbar-bg: rgba(10, 12, 16, 0.6);
  --color-border: rgba(255, 255, 255, 0.15);
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-text: #d9e1e8;
  --font-heading: "Gabarito", sans-serif;
  --transition: all 0.3s ease;
}

/* Coming Soon Section */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  text-align: center;
  padding: 2rem;
  padding-top: var(--nav-height, 72px); /* clears fixed navbar */
  width: 100%;
  position: relative;
  overflow: hidden;
}

#blog-gl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: clamp(28rem, 42vw, 56rem); /* narrower: more discreet */
  margin: 0 auto;
  background: var(--color-navbar-bg);
  padding: 1.5rem 2rem;               /* lighter pad */
  border-radius: 14px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid var(--color-border);
}

/* Minimal, quieter headline */
.coming-soon-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;               /* tighter gap */
}

/* Tighter paragraph spacing */
.coming-soon-content p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0.25rem 0;                  /* reduce inter-paragraph gap */
}

.coming-soon-content > :last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .coming-soon-content {
    max-width: 90%;
    padding: 1.25rem 1rem;
  }

  #blog-gl {
    width: 300px !important;
    height: 300px !important;
  }
}
