/* ===========================================================
   MOCORGÓ Óvoda demó kiegészítés · Conen DIGITAL Studio
   Interaktív napirend + első napi csomagolólista + jelvény
   Minden más stílus az eredeti sablonból jön.
   =========================================================== */

.day-sec{
    position: relative;
    padding: 100px 0 110px;
    background-color: #f7f5ff;
    overflow: hidden;
}
.day-head{
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.day-head .sub-heading{
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff604a;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.day-head .heading{
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1b3a4e;
    margin: 10px 0 14px;
}
.day-head p{
    font-family: 'Roboto', sans-serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #6b7280;
    margin: 0;
}

/* --- Idővonal --- */
.day-timeline{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 0 0 42px;
    padding: 0 4px;
}
.day-timeline::before{
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 21px;
    height: 3px;
    border-radius: 3px;
    background-color: #e3ddf7;
}
.day-slot{
    position: relative;
    z-index: 2;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6a54a9;
}
.day-slot .dot{
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #e3ddf7;
    box-shadow: 0 6px 14px -8px rgba(27, 58, 78, .5);
    position: relative;
    transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}
.day-slot .dot::after{
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 12px; height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background-color: #ffd300;
    transition: background-color .3s ease;
}
.day-slot:hover .dot{ transform: scale(1.08); border-color: #ffd300; }
.day-slot.is-active .dot{
    border-color: #6a54a9;
    background-color: #6a54a9;
    transform: scale(1.1);
}
.day-slot.is-active .dot::after{ background-color: #ffd300; }
.day-slot.is-active{ color: #1b3a4e; }

/* --- Aktuális sáv kártyája --- */
.day-card{
    background-color: #ffffff;
    border-radius: 18px;
    padding: clamp(26px, 3.2vw, 44px);
    box-shadow: 0 34px 60px -44px rgba(27, 58, 78, .55);
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) minmax(0, 300px);
    gap: 30px;
    align-items: center;
    border-left: 6px solid #ff604a;
}
.day-icon{
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background-color: #fdf0ed;
    color: #ff604a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.day-card h5{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1b3a4e;
    margin: 0 0 10px;
}
.day-card p{
    font-family: 'Roboto', sans-serif;
    font-size: 15.2px;
    line-height: 1.8;
    color: #5b6570;
    margin: 0;
}
.day-tips{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.day-tips li{
    display: flex;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #3f4a54;
}
.day-tips i{ color: #6a54a9; margin-top: 4px; flex: none; }
.day-tip-label{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #6a54a9;
    margin-bottom: 12px;
}

/* --- Csomagolólista --- */
.pack-box{
    margin-top: 54px;
    background-color: #ffffff;
    border-radius: 18px;
    padding: clamp(26px, 3.2vw, 42px);
    box-shadow: 0 34px 60px -44px rgba(27, 58, 78, .45);
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}
.pack-box h5{
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #1b3a4e;
    margin: 0 0 10px;
}
.pack-box .pack-sub{
    font-family: 'Roboto', sans-serif;
    font-size: 14.4px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0 0 18px;
}
.pack-progress{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6a54a9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pack-bar{
    position: relative;
    flex: 1;
    height: 8px;
    border-radius: 8px;
    background-color: #ece7fb;
    overflow: hidden;
}
.pack-bar span{
    display: block;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff604a, #ffd300);
    transition: width .45s ease;
}
.pack-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
}
.pack-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #efeaf9;
    cursor: pointer;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14.6px;
    color: #3f4a54;
    transition: border-color .25s ease, background-color .25s ease;
}
.pack-item:hover{ border-color: #d9cff3; }
.pack-item input{ display: none; }
.pack-item .tick{
    width: 24px;
    height: 24px;
    flex: none;
    border-radius: 8px;
    border: 2px solid #d9cff3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: background-color .25s ease, border-color .25s ease;
}
.pack-item input:checked ~ .tick{
    background-color: #6a54a9;
    border-color: #6a54a9;
}
.pack-item input:checked ~ .tick::after{
    content: "";
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -2px);
}
.pack-item input:checked ~ .pack-text{
    color: #a7a2b8;
    text-decoration: line-through;
}
.pack-item:has(input:checked){
    border-color: #6a54a9;
    background-color: #faf8ff;
}

/* --- Galéria záró sor: szélesebb gomb --- */
.portfolio-foot-detail .btn{
    white-space: nowrap;
    min-width: 100%;
    padding-left: 26px;
    padding-right: 26px;
    text-align: center;
}

/* --- Header: nagyobb logó --- */
header .navbar-brand img{ max-width: 148px; }

/* --- Demó jelvény --- */
.demo-badge{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10060;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px 11px 14px;
    background: rgba(27, 58, 78, .94);
    color: #fff;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 12.8px;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
    transition: transform .4s ease, background .3s ease;
}
.demo-badge:hover{ transform: translateY(-3px); background: #1b3a4e; color: #fff; text-decoration: none; }
.demo-badge .demo-dot{
    width: 8px; height: 8px; border-radius: 50%;
    background: #ffd300;
    box-shadow: 0 0 0 4px rgba(255, 211, 0, .3);
    animation: demoPulse 2.4s infinite;
}
.demo-badge strong{ font-weight: 600; }
@keyframes demoPulse{
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 211, 0, .35); }
    50%      { box-shadow: 0 0 0 9px rgba(255, 211, 0, 0); }
}

/* --- Reszponzív --- */
@media (max-width: 991px){
    .day-sec{ padding: 70px 0; }
    .day-head .heading{ font-size: 32px; }
    .day-card{ grid-template-columns: 1fr; gap: 22px; }
    .day-icon{ width: 72px; height: 72px; font-size: 30px; border-radius: 18px; }
    .pack-box{ grid-template-columns: 1fr; gap: 26px; }
    .pack-list{ grid-template-columns: 1fr; }
}
@media (max-width: 767px){
    .day-timeline{ overflow-x: auto; padding-bottom: 6px; }
    .day-slot{ min-width: 62px; font-size: 12.5px; }
    .day-slot .dot{ width: 34px; height: 34px; }
    .day-timeline::before{ top: 17px; }
    .demo-badge{ left: 12px; bottom: 12px; font-size: 11.2px; padding: 9px 14px; }
}
