@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap");

/* ============================================================================
   W3 — Palette (final exact hexes)
   ========================================================================== */
:root {
  /* Backgrounds & Texts */
  --wow-lighter:    #F5F5F5;
  --wow-light:      #EBEBEB;
  --wow-dark:       #2A2A2A;
  --wow-darker:     #1F1F1F;
  --wow-highlight:  #FFF5E6;

  /* Borders */
  --wow-black:      #111111;
  --wow-mid:        #737373;
  --wow-white:      #FFFFFF;

  /* Fresh (greens) */
  --wow-fresh-1:    #7ED957;
  --wow-fresh-2:    #1A801A;

  /* Warm (orange/red) */
  --wow-warm-1:     #FF914D;
  --wow-warm-2:     #E12828; /* also used for error/destructive */
}


/* ============================================================================
   WOW — Core Typography System
   Font: Assistant (hebrew-friendly, neutral, modern)
   --------------------------------------------------------------------------
   Scales harmonize across mobile and desktop. All sizes in px for predictability.
   ========================================================================== */

:root {
  --wow-font-family: "Assistant", "Heebo", sans-serif;
}

body {
  font-family: var(--wow-font-family);
}




/* ------------------------------------------------------------
   1) BIG TITLE
   ------------------------------------------------------------ */
.wow-big-title {
  font-family: var(--wow-font-family);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   2) TITLE
   ------------------------------------------------------------ */
.wow-title {
  font-family: var(--wow-font-family);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

/* ------------------------------------------------------------
   3) SUBTITLE
   ------------------------------------------------------------ */
.wow-subtitle {
  font-family: var(--wow-font-family);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

/* ------------------------------------------------------------
   4) SMALL TITLE
   ------------------------------------------------------------ */
.wow-small-title {
  font-family: var(--wow-font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

/* ------------------------------------------------------------
   5) TEXT
   ------------------------------------------------------------ */
.wow-text {
  font-family: var(--wow-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ------------------------------------------------------------
   6) TINY TEXT
   ------------------------------------------------------------ */
.wow-tiny-text {
  font-family: var(--wow-font-family);
  font-size: 8px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

/* ------------------------------------------------------------
   Admin Elements Panels
   ------------------------------------------------------------ */
.admin-forms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.admin-form {
  flex: 1 1 320px;
  max-width: 360px;
  background: var(--wow-white);
  border: 1px solid var(--wow-light);
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.admin-form h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--wow-dark);
}

.admin-form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--wow-dark);
}

.admin-form-field {
  margin-bottom: 16px;
}

.admin-form-input {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--wow-light);
  border-radius: 8px;
  font-family: var(--wow-font-family);
  font-size: 14px;
  box-sizing: border-box;
  background: var(--wow-white);
}

.admin-form-button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--wow-dark);
  color: var(--wow-white);
  font-weight: 700;
  cursor: pointer;
}

.admin-form-button:hover {
  background: var(--wow-darker);
}

.admin-form-button-secondary {
  background: var(--wow-mid);
}

.admin-form-button-secondary:hover {
  background: #5c5c5c;
}

.admin-form-button-danger {
  background: var(--wow-warm-2);
}

.admin-form-button-danger:hover {
  background: #c51f1f;
}

.admin-form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--wow-mid);
}
