/* ===========================
   Winter / Seasonal header decorations
   =========================== */

/* Լույսեր header-ի վրա (աշխատում է fixed .site-header-ի հետ) */
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px; /* light1.png-ի բարձրությանը մոտ */

  background-image:
    url("/static/img/seasonal/light1.png"),
    url("/static/img/seasonal/light1.png"),
    url("/static/img/seasonal/light1.png");

  background-repeat: no-repeat, no-repeat, no-repeat;

  /* Կենտրոնից դեպի ներս բերված դիրքեր */
  background-position:
    20% center,   /* առաջին լույսը — ձախից λίγο ներս */
    45.5% center, /* երկրորդը — ճիշտ կենտրոնում */
    71% center;   /* երրորդը — աջից λίγο ներս */

  background-size: auto 100%, auto 100%, auto 100%;
  pointer-events: none;
}

/* Գլխարկ logo-ի վրա */
.logo-stack::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  left: 90px;   /* desktop-ի համար */
  top: -1px;
  background: url("/static/img/seasonal/hat_santa.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

/* Մոբայլում գլխարկի դիրքի շտկում */
@media (max-width: 768px) {
  .logo-stack::after {
    width: 48px;
    height: 195px;
    left: 125px;
    top: 2px;
  }
}

/* Desktop — ծառ + սանտա header-ի մեջ */
.header-christmas-left {
  position: absolute;
  left: 160px;
  bottom: -6px;
  width: 60px;
  height: 70px;
  background: url("/static/img/seasonal/tree-with-snow.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.header-christmas-right {
  position: absolute;
  right: 210px;
  bottom: -10px;
  width: 70px;
  height: 100px;
  background: url("/static/img/seasonal/santa_CL.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

/* Mobile override — նույն դեկորները, բայց reposition */
@media (max-width: 768px) {
  .header-christmas-left {
    left: 16px;
    bottom: -4px;
    width: 48px;
    height: 58px;
  }

  .header-christmas-right {
    right: 16px;
    bottom: -4px;
    width: 56px;
    height: 80px;
  }
}

/* Winter theme-ի ֆոն (եթե պետք է override անի base background-ը) */
body {
  background-color: #f5efe4; /* կամ այն գույնը, ինչ հիմա օգտագործում ես */
}
