@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Monda:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* { color: black;}

body, html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    font-size: 1rem;
    font-weight: 400;
    overflow-x: hidden;
    color: black;
}

h1 { font-size: 2.5rem;}
h2 { font-size: 2.1rem;}
h3 { font-size: 1.7rem;}
p { font-size: 1rem; font-weight: 400;}

/* Animace pozadi*/
@keyframes slidein {
from {background-position: top;background-size:3000px; }
to {background-position: -100px; background-size:2750px;}
}

@keyframes zoomOut {
    0% {transform: scale(1.2);}
    100% {transform: scale(1);}
}

.panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    z-index: 22;
    color: black;
}

.spacer { 
    height: 90px;
    display: block;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;
    color: white;
    background-color: white;
}
.menu a {
    color: black;
    text-decoration: none;
    padding: 10px;
}
.menu-items {
    display: flex;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.menu .logo {
    color: #433b2c;
    font-family: "Dancing Script";
    font-size: 2rem;
    text-shadow: 0 1px 2px gray;
}

.welcome {
    width: 100vw;
    padding: 100px 0 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url('../images/bystrice.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: slidein 100s;
    animation: slidein 100s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.welcome .mini-title {
    color: #aa936a;
    font-weight: bold;
    background-color: black;
    padding: 5px;
}

.welcome h1 {
    color: white;
    text-shadow: 0 1px 5px black;
}

.welcome p {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 5px black;
}

.welcome .vice {
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px white;
    text-decoration: none;
}

.welcome i {
    color: white;
}

.description {
    width: 100vw;
    min-height: 90vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
}

.description .mini-title {
    color: #aa936a;
    font-weight: bold;
    padding: 5px;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.line {
    border-bottom: solid 1px lightgray;
}

.picto {
    margin-top: 15px;
}

.picto i {
    color: #aa936a;
}

/* CENIK */
.cenik {
    width: 100vw;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    background-color:floralwhite;
}

.cenik .mini-title {
    color: #aa936a;
    font-weight: bold;
    padding: 5px;
}

.cenik .price {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    color: white;
    border-radius: 5px;
    background-color: brown;
}

.price i {
    color: mistyrose;
}

.galerie {
    width: 100vw;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 50px 0;
    background-color: white;
}

.galerie .mini-title {
    color: #aa936a;
    font-weight: bold;
    padding: 5px;
}



/* FOTOGALERIE */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.gallery img {
    width: 200px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}
.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 1px 0 5px black;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}
.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.overlay.active {
    display: flex;
    z-index: 30;
}

/* KONTAKT */
.kontakt {
    width: 100vw;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    background-color: floralwhite;
}

.kontakt .mini-title {
    color: #aa936a;
    font-weight: bold;
    padding: 5px;
}

.kontakt iframe {
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
}

address {
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    padding-left: 5px;
}


/* MEDIA - MOBILE */
@media (max-width: 1024px) {
    body {
        font-size: 0.9rem;
    }
    .menu-items {
                display: none;
                flex-direction: column;
                width: 100vw;
                position: absolute;
                top: 100px;
                left: 0;
                text-align: left;
            }
    .menu-items a:hover {
        background-color: #aa936a;
        color: white;
    }
    
    .menu-toggle {
        display: block;
        color: #333;
    }
    #menu-toggle:checked ~ .menu-items {
        display: flex;
        background-color: white;
        width: 100%;
    }
    
    .menu .logo {
    color: #433b2c;
    font-family: "Dancing Script";
    font-size: 1.6rem;
    text-shadow: 0 1px 2px gray;
    }
}