* {
    box-sizing: border-box;
}

html, body {
    height: auto;
    overflow: auto;
}

[data-scroll-container] {
    overflow: visible;
    min-height: 100vh;
    will-change: transform;
}

body {
    font-family: Arial, sans-serif;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0;
    line-height: 1.6;
}

/* -------------------------------------------------------- */

#menu1 {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
#menu2 {
    display: block;
    margin-right: 20px;
    text-align: right;
}

#menu2 img{
    width: 26px;
    height: auto;
    margin: 0px;
}

.menu {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding-top: 2px;
    padding-bottom: 5px;
    text-align: center;
    background-color: rgb(32,70,135);
    z-index: 10;
}

#menu1 a {
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
    color: white;
    font-size: 12px;
    border-bottom: 1px solid;
    border-bottom-color: rgba(255,255,255,0.5);
    padding: 5px 20px 5px 20px;
    opacity: 0.7;
    transition: 0.2s ease;
}

#menu2 a {
    margin: 0px;
    padding: 5px 0px 5px 0px;
    opacity: 0.7;
    transition: 0.2s ease;
}

#menu1 a:hover, #menu2 a:hover {
    opacity: 1;
    transition: 0.2s ease;
}

/* -------------------------------------------------------- */
/* Sekce */
/* -------------------------------------------------------- */

section {
    padding: 40px 20px;
    margin-left: 30px;
    margin-right: 30px;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    font-family: Poppins;
    text-align: center;
    background: 
        linear-gradient(
            to right, 
            rgba(255,195,195,0) 0%,
            rgba(255,195,195,0.5) 10%, 
            rgba(255,195,195,1) 50%, 
            rgba(255,195,195,0.5) 90%, 
            rgba(255,195,195,0) 100%
        );
}

section h1{
    font-family: Poppins;
    font-size: 22px;
}

section h2{
    font-size: 22px;
    margin-bottom: 10px;
}

section p{
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    font-size: 15px;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

/* -------------------------------------------------------- */

#sekce0 {
    background: 
        linear-gradient(
            to right, 
            rgba(49,85,143,0) 0%,
            rgba(49,85,143,0.5) 10%, 
            rgba(49,85,143,1) 50%, 
            rgba(49,85,143,0.5) 90%, 
            rgba(49,85,143,0) 100%
        );
    color: white;
    padding: 60px 0px 70px 0px;
    text-align: center;
    margin-left: 0px;
    margin-right: 0px;
    border-top: 0px solid transparent;
}

#sekce0 h1{
    font-family: Poppins;
    font-size: 22px;
}

#sekce0 h2{
    font-family: PlayfairDisplay;
    font-style: italic;
    font-size: 15px;
}

#sekce1 p {
    text-align: justify;
    margin-top: 30px;
}

#sekce_about p {
    margin-bottom: 50px;
}

/* -------------------------------------------------------- */

select, input, button {
    margin: 10px 0;
    padding: 8px;
    font-size: 16px;
}

.slot {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
}

.slot.reserved {
    background: #f88;
    cursor: not-allowed;
}

.slot.available {
    background: #8f8;
}

.slot.break {
    background: #ccc;
    cursor: not-allowed;
}

.error {
    color: red;
    font-size: 14px;
}