/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/*
    Created on : 26. 11. 2025, 7:55:13
    Author     : egrat
*/


/* ==============================
   ZÁKLADNÍ STYL (mobil first)
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');
.overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgb(100, 30, 33);
    z-index: 10000;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
body {
    background-image: url('../images/pc.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Open Sans',sans-serif !important;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    overflow-y: auto;
}
.body-no-scroll {
    overflow: hidden;
}
.footer {
    text-align: center;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100vw;
    background-color: white;
    color: black;
    z-index: 100;
    height: auto;
    box-shadow: 0px 0px 64px 14px #FFF;
    display: grid;
    justify-content: center;
}
h1,h2,h3,h4 {
    font-family: Italianno,arial !important;

}
h1 {
    font-size: 10vw  !important;
}
.logo1,.logo2 {
    width: 100px;
    height: 15vw;

}
.logo1 {
    background: url('../images/logo1.svg') center/contain no-repeat;
    background-position: top;
}
.logo2 {
    background: url('../images/logo2.svg') center/contain no-repeat;
    background-position: top;
}
.section {
    color:white;
    padding: 20px;
    background-color: #f4f4f4;
    font-size: 16px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.23) !important;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);

}

.page {
    width:100vw;

}

.head {
    color: white;
    display: flex;
    text-align: center;
    margin:10px;
    height: auto;
    justify-content: space-between;
    padding: 20px;
}
.calendar {
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 80px;
    gap: 10px; /* mezery mezi "kameny" */

    /* výchozí — mobil */
    grid-template-columns: repeat(2, 1fr);
    z-index: 2;
}
.stone {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height:150px;
    background: rgba(255, 255, 255, 0.23) !important;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    z-index: 100;
}


.zoom {
    transition: transform 0.25s ease-in-out; /* Animation */
    animation: zoom-out-shadow 0.25s ease-out forwards;
}
.zoom:hover {
    z-index: 110;

    transform: scale(1.1); /* (150% zoom-Note: if the zoom is too large, it will go outside of the viewport) */
    animation: zoom-in-shadow 0.25s ease-in forwards;
}
.zoom:hover .tree {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}
@keyframes zoom-in-shadow {
    0%{
        -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.8);
        box-shadow: 0px 0px 0px 0px rgba(100,30,33,0.8);
    }
    100%{
        -webkit-box-shadow: 0px 0px 50px 49px rgba(255,255,255,0.8);
        box-shadow: 0px 0px 50px 49px rgba(100,30,33,0.8);
    }
}
@keyframes zoom-out-shadow {
    0%   {
        box-shadow: 0 0 50px 40px rgba(100,30,33,0.8);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(100,30,33,0.0);
    }
}
.tree {
    width: 80%;
    height: 80%;
    background: url('../images/g13.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

/* Mobilní telefony (do 600px) */
@media (max-width: 600px) {
    body {
        background-image: url('../images/mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    body::before{
        content: "";
        background: url('../images/mobile.png') center/cover no-repeat;
        position: fixed;
        inset: 0;
        z-index: -1;
    }
    .section {
        color:white;
        padding: 15px;
        font-size: 15px;
        margin: 20px auto;
        background: rgba(255, 255, 255, 0.23) !important;
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(7.1px);
        -webkit-backdrop-filter: blur(7.1px);
    }
    .calendar {
        width: 100%;
        height: 100%;
        display: grid;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
        gap: 10px; /* mezery mezi "kameny" */

        /* výchozí — mobil */
        grid-template-columns: repeat(2, 1fr);
    }
    .number {
        width: 80%;
        height: 80%;
        position: absolute;
        font-size: 4em;
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

/* Tablety (601px – 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    body {
        background-image: url('../images/tablet.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        position: static;
    }
    body::before{
        content: "";
        background: url('../images/mobile.png') center/cover no-repeat;
        position: fixed;
        inset: 0;
        z-index: -1;
    }
    .section {
        color:white;
        padding: 30px;
        font-size: 18px;
        margin: 20px auto;
        background: rgba(255, 255, 255, 0.23) !important;
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(7.1px);
        -webkit-backdrop-filter: blur(7.1px);
    }
    .calendar {
        width: 100%;
        height: 100%;
        display: grid;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
        gap: 10px; /* mezery mezi "kameny" */

        /* výchozí — mobil */
        grid-template-columns: repeat(3, 1fr);
    }
    .number {
        width: 80%;
        height: 80%;
        position: absolute;
        font-size: 4em;
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

/* Počítače (od 1025px) */
@media (min-width: 1025px) {
    body {
        background-image: url('../images/pc.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .section {
        color:white;
        padding: 50px;
        font-size: 20px;
        max-width: 1200px;
        margin: 20px auto;
        background: rgba(255, 255, 255, 0.23) !important;
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(7.1px);
        -webkit-backdrop-filter: blur(7.1px);
    }
    .calendar {
        width: 100%;
        height: 100%;
        display: grid;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
        gap: 10px; /* mezery mezi "kameny" */

        /* výchozí — mobil */
        grid-template-columns: repeat(5, 1fr);
    }
    .number {
        width: 80%;
        height: 80%;
        position: absolute;
        font-size: 4em;
        color: rgba(255, 255, 255, 0.6) !important;
    }
}



.glow {
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}

.jello-horizontal {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-26 18:35:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/*loader*/
svg {
    max-height: 60vh;
    max-width: 90vw;
    overflow:visible;
}
path {
    fill: #379157;
    stroke: #379157;
    stroke-width: .2;
    transform: scale(0);
    transform-origin: 50% 50%;
    animation: star 8s ease-in-out infinite;
    animation-delay: calc( var(--no) * .025s );
    transform-box: fill-box;
}
@keyframes star {
    0% {
        transform: scale(0);
        animation-timing-function: cubic-bezier(.74,1.72,.57,1.01)
    }
    10% {
        transform: scale(1);
    }
    65% {
        transform: translateY(0px) scale(1);
    }
    75% {
        transform: translateY(50px) scale(0);
    }
    100% {
        transform: translateY( 0px ) scale(0);
    }
}

body:after {
    color: #fff;
    font-family: sans-serif;
    position: absolute;
    bottom: 1vh;
    right: 1vw;
}

/*snowflake*/
.snowflake {
    color: #fff;
    font-size: 3em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
}

@-webkit-keyframes snowflakes-fall {
    0% {
        top: -10%;
    }
    100% {
        top: 100%;
    }
}
@-webkit-keyframes snowflakes-shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
}
@keyframes snowflakes-fall {
    0% {
        top: -10%;
    }
    100% {
        top: 100%;
    }
}
@keyframes snowflakes-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(80px);
    }
}
.snowflake {
    position: fixed;
    top: -10% ;
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}
.snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s;
}
.snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, 0.5s;
    animation-delay: 6s, 0.5s;
}
.snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s;
}
.snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s;
}
.snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s;
}
.snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s;
}
.snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s;
}
.snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s;
}
.snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s;
}
.snowflake:nth-of-type(10) {
    left: 25%;
    -webkit-animation-delay: 2s, 0s;
    animation-delay: 2s, 0s;
}
.snowflake:nth-of-type(11) {
    left: 65%;
    -webkit-animation-delay: 4s, 2.5s;
    animation-delay: 4s, 2.5s;
}

/*MODAL*/
#xmas-modal div{

    color: white;
    border-radius: 15px;
    border-bottom: none;
}

#xmas-modal .modal-content {
    background-color: #7E1E22;
    -webkit-box-shadow: 0px 0px 46px 34px #FFFFFF;
    box-shadow: 0px 0px 46px 34px #FFFFFF;
    display: grid;
    justify-content: center;
}
#xmas-modal .modal-header {
    font-family: Italianno, Arial;
    font-size: 4em;

    text-align: center;
}
#xmas-modal .btn-close {
    font-size: 14px;
}
.mauticform-label {
    font-family: 'Open Sans', arial !important;
}
#xmas-modal .btn-close {
    top: 20px;
    right: 20px;
    display: block;
    position: absolute;
}
.gift {
    display: block;
    z-index: 20000;
    width: 95vw;
    height: 95vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    top: calc((100vh - 95vh) * 0.3);
    left: calc((100vw - 95vw)*0.5);
    background: url('../images/vanoce.jpg') center/cover no-repeat;
    border-radius: 10px;
    display:none;
    padding: 20px;
}

.gift-header {
    font-family: Italianno, Arial;
    color: white;
    font-size: 5em;
    text-align: center;
}
.cls-btn {
    color: white;
    font-family: arial;
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 800;
    width: 30px;
    text-align: center;
    height:30px;
    alignment-adjust:central;
}
.cls-btn:hover {
    background-color: white;
    border-radius: 5px;
    color: black;
}

@media (max-width: 600px) {
    .gift-body {
        color:white;
        font-size:1.3em;
    }
}

/* Tablety (601px – 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .gift-body {
        color:white;
        font-size:1.3em;
    }
}

/* Počítače (od 1025px) */
@media (min-width: 1025px) {
    .gift-body {
        color:white;
        font-size:1.1em;
    }
}
