@media (min-width: 1024px) {

    /* === Wrapper === */
    .wcover {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    body {
        font-size: 18px;
        line-height: 1.7;
    }

    main {
        max-width: 1000px;
        margin: 0 auto;
        text-align: left;
        padding: 80px 40px;
    }

    h1, h2, h3 {
        margin-bottom: 24px;
    }

    p {
        max-width: 900px;
        margin-bottom: 24px;
    }

    /* === Hlavička === */
    .wcover > header,
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 60px;
        max-width: 1400px;
        margin: 0 auto;
        border-bottom: 2px solid var(--accent-color);
    }

    .logo {
        font-size: 2em;
        color: var(--accent-color);
    }

    .hamburger {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
        width: 40px;
        height: 32px;
        cursor: pointer;
        z-index: 201;
        margin-left: auto;
    }

    .hamburger div {
        height: 5px;
        background-color: var(--accent-color);
        border-radius: 3px;
    }

    /* === Side menu === */
    .side-menu {
        position: fixed;
        top: 0;
        right: -350px;
        width: 350px;
        height: 100%;
        background-color: var(--accent-color);
        color: var(--dark-color);
        padding: 100px 40px 40px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 200;
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu a {
        display: block;
        margin-bottom: 30px;
        font-size: 1.2em;
        color: var(--dark-color);
        text-decoration: none;
        font-weight: bold;
    }

    .side-menu .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .side-menu .close-menu::before,
    .side-menu .close-menu::after {
        content: '';
        position: absolute;
        top: 18px;
        left: 0;
        width: 100%;
        height: 5px;
        background-color: var(--dark-color);
        border-radius: 3px;
    }

    .side-menu .close-menu::before {
        transform: rotate(45deg);
    }

    .side-menu .close-menu::after {
        transform: rotate(-45deg);
    }

    /* === Video === */
    .video-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 60px 0;
        background: radial-gradient(circle at center, #1e1e1e 0%, #344e41 100%);
    }

    .video-container video {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 90vh;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        object-fit: contain;
        display: block;
    }

    .video-container::after {
        content: none;
    }

    /* === Kolečková tlačítka === */
    .circle-buttons {
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        gap: 20px;
    }

    .circle-button {
        width: 90px;
        height: 90px;
        font-size: 22px;
    }

    .circle-button span {
        font-size: 11px;
    }

    /* === Sekce === */
    .section {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    .section.reverse {
        flex-direction: row-reverse;
    }

    .section-image {
        flex: 0 0 300px;
    }

    .section-image img {
        width: 300px;
        height: 300px;
        border-radius: 16px;
        object-fit: cover;
    }

    .section-text {
        flex: 1 1 auto;
        max-width: 600px;
        text-align: left;
        padding: 0 20px;
    }

    /* === Stav box === */
    .stav-box {
        margin: 40px auto;
        max-width: 700px;
        font-size: 1.3em;
    }

    /* === Proč sekce === */
    .why-section {
        margin-top: 100px;
    }

    .why-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }

    .why-block {
        flex: 1 1 calc(33.333% - 30px);
        max-width: 400px;
        background: var(--accent-color);
        border: 2px solid var(--main-color);
        padding: 30px;
        border-radius: 16px;
        text-align: center;
    }

    .why-block img {
        max-height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    /* === Tlačítka === */
    .btn-wrapper {
        margin-top: 60px;
    }

    .btn-download,
    .contact-buttons a {
        font-size: 1.1em;
        padding: 16px 40px;
        min-width: 240px;
    }

    .btn-download:hover,
    .contact-buttons a:hover {
        background-color: #2a3e34;
    }

    /* === Kontakt a otevírací doba === */
    .contact-info {
        max-width: 800px;
        margin: 0 auto 40px;
        font-size: 1.2em;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        margin-bottom: 60px;
    }

    .opening-hours {
        max-width: 600px;
        margin: 40px auto;
        padding: 30px;
    }

    .opening-hours h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .opening-hours table td {
        padding: 10px 0;
        font-size: 1.1em;
    }

    /* === Sociální ikony === */
    .social-icons {
        gap: 30px;
        margin: 40px 0;
    }

    .social-icons a img {
        width: 50px;
        height: 50px;
        transition: transform 0.3s ease;
    }

    .social-icons a:hover img {
        transform: scale(1.2);
    }
}
