/*
 Theme Name:   Hello Biz Child
 Description:  Hello Biz Child Theme pro český web
 Author:       Lara
 Author URI:   https://www.lara-marketing.cz/
 Template:     hello-biz
 Version:      1.0.0
 Text Domain:  hello-biz-child
*/

@import url("../hello-biz/style.css");

/* =====================================================
   HLAVNÍ LAYOUT: levý mini kalendář + pravý panel
   ===================================================== */
.tec-events-layout,
.tec-calendar-layout {
  display: grid;
  grid-template-columns: minmax(340px, 380px) 1fr;
  gap: 32px;
  align-items: stretch;
}

/* =====================================================
   MINI KALENDÁŘ – OBAL
   ===================================================== */
.tec-mini-calendar {
  background: #23495C;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  min-width: 370px;
  transition: transform 0.25s ease;
}

.tec-mini-calendar.month-changing {
  transform: scale(0.98);
}

/* =====================================================
   HLAVIČKA KALENDÁŘE
   ===================================================== */
.tec-calendar-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  margin-bottom: 12px;
}

.month-title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.month-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: none;
}

.month-nav:hover {
  background: #FF8B42;
  color: #000000;
  transform: scale(1.1);
}

.month-nav:active {
  transform: scale(0.92);
}

/* =====================================================
   NÁZVY DNŮ
   ===================================================== */
.tec-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 13px;
  text-align: center;
  color: #b0bec5;
  margin-bottom: 6px;
}

/* =====================================================
   MŘÍŽKA KALENDÁŘE (7 sloupců = Po–Ne)
   ===================================================== */
.tec-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* =====================================================
   ZÁKLADNÍ STYL JEDNOHO DNE
   ===================================================== */
.tec-calendar-grid .day,
.tec-calendar-grid .empty {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
}

/* prázdné buňky (začátek měsíce) */
.tec-calendar-grid .empty {
  visibility: hidden;
  pointer-events: none;
}

/* =====================================================
   INTERAKCE – HOVER
   ===================================================== */
.tec-calendar-grid .day {
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.tec-calendar-grid .day:hover {
  background: rgba(255,139,66,0.15);
  transform: scale(1.08);
}

/* =====================================================
   KLIKNUTÍ ANIMACE
   ===================================================== */
@keyframes dayClick {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.tec-calendar-grid .day.clicked {
  animation: dayClick 0.3s ease;
}

/* =====================================================
   DEN S AKCÍ
   ===================================================== */
.tec-calendar-grid .day.has-event {
  font-weight: 600;
}

/* puntík pod číslem dne */
.tec-calendar-grid .day.has-event::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #FF8B42;
  border-radius: 50%;
  position: absolute;
  bottom: 6px;
}

/* =====================================================
   AKTIVNÍ (KLIKNUTÝ) DEN
   ===================================================== */
.tec-calendar-grid .day.active {
  background: transparent;
  color: #fff;
  font-weight: 600;
}

.tec-calendar-grid .day.active::after {
  background: #FF8B42;
}

/* aktivní den s akcí – oranžový okruh */
.tec-calendar-grid .day.has-event.active::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid #FF8B42;
  border-radius: 50%;
}

/* =====================================================
   DNEŠNÍ DEN
   ===================================================== */
.tec-calendar-grid .day.today {
  color: #FF8B42;
  font-weight: 600;
  background: transparent !important;
  border: none;
}

/* =====================================================
   PRAVÝ PANEL – DETAILY AKCÍ
   ===================================================== */
#event-detail {
  background: #23495C;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  flex: 1;
}

#event-detail h3 {
  background: #FF8B42;
  color: #000000;
  margin: 0 0 16px;
  font-size: 20px;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
}

/* =====================================================
   SEZNAM AKCÍ
   ===================================================== */
#event-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  overflow-y: auto;
}

#event-list li {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#event-list li:last-child {
  border-bottom: none;
}

#event-list li.empty,
#event-list li.loading {
  color: #888;
  font-style: italic;
}

/* =====================================================
   KARTA AKCE
   ===================================================== */
.event-item {
  cursor: pointer;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 0.2s ease;
  background: rgba(255,255,255,0.08);
}

.event-item:hover {
  background: rgba(255,255,255,0.14);
}

.event-item.featured {
  /* zvýrazněná akce */
}

.event-item strong {
  color: #ffffff;
  font-size: 16px;
}

.event-item {
  color: #e0e0e0;
  font-size: 14px;
}

.event-venue {
  color: #FF8B42;
  font-size: 14px;
  margin-top: 6px;
}

.event-past {
  background: rgba(255,0,0,0.15);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
}

/* =====================================================
   ANIMACE
   ===================================================== */
.tec-calendar-left,
.tec-calendar-right {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   MOBIL
   ===================================================== */
@media (max-width: 768px) {
  .tec-events-layout,
  .tec-calendar-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .tec-calendar-left,
  .tec-calendar-right {
    width: 100%;
  }

  .tec-mini-calendar {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .tec-calendar-grid .day {
    padding: 10px 0;
    font-size: 15px;
  }

  .tec-mini-calendar .tec-calendar-grid {
    grid-auto-rows: 1fr;
  }

  .tec-mini-calendar .tec-calendar-grid div {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================================
   ODSTRANĚNÍ ELEMENTOR FOCUS STYLU U ŠIPEK
   ===================================================== */
.tec-mini-calendar .tec-calendar-header .month-nav:focus,
.tec-mini-calendar .tec-calendar-header .month-nav:active,
.tec-mini-calendar .tec-calendar-header .month-nav:focus-visible {
  background: transparent !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: none !important;
}
/* =====================================================
   HOVER MUSÍ FUNGOVAT I PŘES FOCUS
   ===================================================== */
.tec-mini-calendar .tec-calendar-header .month-nav:hover,
.tec-mini-calendar .tec-calendar-header .month-nav:hover:focus,
.tec-mini-calendar .tec-calendar-header .month-nav:hover:active,
.tec-mini-calendar .tec-calendar-header .month-nav:hover:focus-visible {
  background: #FF8B42 !important;
  color: #000000 !important;
  transform: scale(1.1);
}


