/* Base Theme: dreamy-default */

.iw-h1, .iw-heading-1 {
  font-size: clamp(2.3rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 15px 60px rgba(88, 118, 255, 0.25);
}

.iw-h2, .iw-heading-2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  color: var(--foreground);
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.iw-h3, .iw-heading-3 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.95rem;
}

.iw-p, .iw-paragraph {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
  max-width: 70ch;
}

.iw-quote, blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  margin-block: 1.5rem;
}

.iw-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 12px 40px rgba(88, 118, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(var(--glass-blur, 10px));
}

.iw-btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--foreground);
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(var(--glass-blur, 8px));
}

