/* Plato CMS - Minimal Brand Styles */

/* Override Bulma primary color */
:root {
  --bulma-primary-h: 18deg;
  --bulma-primary-s: 80%;
  --bulma-primary-l: 61%;
}

.button.is-primary {
  background-color: #E97F4A;
  border-color: transparent;
  color: #fff;
}

.button.is-primary:hover,
.button.is-primary.is-hovered {
  background-color: #e5713a;
  border-color: transparent;
  color: #fff;
}

.button.is-primary:active,
.button.is-primary.is-active {
  background-color: #d96633;
  border-color: transparent;
  color: #fff;
}

.has-text-primary {
  color: #E97F4A !important;
}

.has-background-primary {
  background-color: #E97F4A !important;
}

/* Header visual separation */
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: white;
}

/* Active navigation link styling */
.navbar-item.is-active {
  background-color: #E97F4A;
  color: white !important;
}

.navbar-item.is-active:hover {
  background-color: #e5713a;
  color: white !important;
}

/* Logo font only */
.logo {
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
}

/* Clickable card hover effect (Bulma-compatible) */
.clickable-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.clickable-card:hover {
  transform: translateY(-2px);
}

/* Richtext fullscreen writing mode */
.richtext-wrapper {
  position: relative;
}

.richtext-wrapper.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.richtext-wrapper.is-fullscreen .ql-toolbar.ql-snow {
  flex-shrink: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
}

.richtext-wrapper.is-fullscreen .ql-container.ql-snow {
  flex: 1;
  overflow-y: auto;
  border: none;
  font-size: 1.1rem;
}

.richtext-wrapper.is-fullscreen .ql-editor {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  min-height: 100%;
  box-sizing: border-box;
}

.ql-toolbar .ql-fullscreen {
  cursor: pointer;
  padding: 3px 5px !important;
  line-height: 1;
}

.ql-toolbar .ql-fullscreen svg {
  width: 14px;
  height: 14px;
  display: block;
}

.ql-toolbar .ql-fullscreen svg path {
  fill: #444 !important;
}

.ql-toolbar.ql-snow .ql-fullscreen:hover svg path {
  fill: #06c !important;
}


