* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Raleway", sans-serif;
    }

    body {
        line-height: 1.6;
        color: #000000;
        overflow-x: hidden;
    }

    /* Navigace */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 155px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .nav {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 2rem;
            padding-right: 3rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #000000;
            text-decoration: none;
            font-size: 23px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        /* Mobile menu toggle */
            .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 3px 0;
            transition: 0.3s;
        }

        .underline-hover {
            position: relative;
            cursor: pointer;
        }

        .underline-hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            height: 3px;
            width: 0;
            background-color: #bd9e89;
            transition: width 0.3s ease;
        }

        .underline-hover:hover::after {
            width: 100%;
        }

    /* Hero Section */
    .hero {
        height: 100vh;
        width: 100vw;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        max-width: 800px;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 6.5rem;
        font-weight: 800;
        color: #f4f1eb;
        margin-bottom: 2rem;
        animation: slideUp 1s ease-out;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero p {
        font-size: 1.4rem;
        color: #f4f1eb;
        margin-bottom: 4rem;
        margin-top: -1rem;
        animation: slideUp 1s ease-out 0.6s both;
        opacity: 0.9;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: white;
        color: rgb(0, 0, 0);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        animation: slideUp 1s ease-out 0.9s both;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        cursor: pointer;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        color: white;
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        background: #bd9e89;
    }

    /* sekce kdo jsem */
        .kdo-jsme {
        background: #ffdec8;
        padding: 70px 100px;
        }

        .kdo-jsme-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
        }

        .kdo-jsme-text {
        flex: 1;
        min-width: 300px;
        color: #333;
        padding-top: 50px;
        }

        .kdo-jsme-text h1 {
        flex: 1;
        color: #000;
        font-size: 50px;
        min-width: 300px;
        padding-bottom: 15px;
        font-weight: 600;
        }

        .kdo-jsme-text h2 {
        font-size: 28px;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        font-weight: 400;
        }

        .kdo-jsme-img {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        text-align: right;
        }

        .kdo-jsme-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

    /* sekce kdo jsem */
        .interier {
        background: #e5c2ab;
        padding: 10px 70px 100px;
        }

        .interier-wrapper {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        }

        .interier-text{
        flex: 1;
        min-width: 300px;
        color: #333;
        padding-top: 50px;
        text-align: center;
        }

        .interier-text h1 {
        flex: 1;
        color: #000000;
        font-size: 50px;
        min-width: 300px;
        padding-bottom: 15px;
        font-weight: 600;
        }

        .interier-text h2 {
        font-size: 28px;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        font-weight: 400;
        }

        .interier-img {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 sloupce */
            gap: 20px;
            margin: 30px auto 0 auto; /* Vycentrování */
            max-width: 1200px;
            margin-top: 30px;
        }

        .interier-img img {
            width: 400px;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            max-width: 100%;
        }


    /* sekce oteviraci doba */
        .oteviraci-doba {
        padding: 80px 20px;
        background: #f9f9f9;
        text-align: center;
        }

        .oteviraci-doba h2 {
        font-size: 2.8rem;
        margin-bottom: 40px;
        color: #000;
        }

        .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        margin: 0 auto 50px;
        }

        .day-box {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        transition: transform 0.3s;
        }

        .day-box span {
        display: block;
        margin-top: 10px;
        font-size: 1.1rem;
        font-weight: 400;
        color: #666;
        }

        .day-box:hover {
        transform: translateY(-5px);
        }

        .special-box {
        background: #ffffff;
        color: #333;
        padding: 25px;
        border-radius: 12px;
        max-width: 500px;
        margin: 0 auto;
        font-size: 1.4rem;
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        };

        .special-box:hover {
        transform: translateY(-5px);
        }

        .special-box span {
        display: block;
        margin-top: 10px;
        font-size: 1.1rem;
        font-weight: 400;
        color: #666;
        }

        /* Instagram základní styly */
        .instagram {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #f9f9f9;
            padding: 60px 100px 100px;
            text-align: center;
        }

        .instagram-wrapper {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .instagram-media {
            width: 100% !important;
            max-width: 900px !important;
            min-width: auto !important;
            margin-bottom: 40px !important;
        }

        .instagram video {
            width: 500px;
            max-width: 100%;
            border-radius: 20px;
            height: 650px;
            object-fit: cover;
            border: solid 10px #ffffffb6;
            box-shadow: 0 0 15px 15px #00000065;
        }

    /* Kontakt */
    .contact {
        background: #bd9e89;
        color: #fff;
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 80px;
    }

    .contact h2 {
        color: #ffffff;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 50px;
        font-size: 2.8rem;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: #ffffff;
    }

    .contact-item {
        display: flex;
        align-items: baseline;
        margin-bottom: 2rem;
        gap: 1rem;
        font-size: 1rem;
    }

    .fa-solid,.fas {
        font-weight: 900;
        font-size: 22px;
        color: #ffffff
    }

    .contact-item div {
        color: #ded9d9;
        line-height: 1.6;
    }

    .contact-item strong {
        color: #ffffff;
        display: block;
        margin-bottom: 0.3rem;
    }

    .iframe-map {
        display: flex;
        justify-content: end;
    }

    .iframe-map iframe {
        width: 100%;
        max-width: 700px;
        height: 400px;
        border: none;
        border-radius: 10px;
    }

    /* Footer */
    .footer {
        background: #b0927d;
        color: #ffffff;
        text-align: center;
        padding: 1.5rem ;
    }

    .footer p {
        opacity: 0.8;
        font-size: 1.1rem;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .booking-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 50%;
    align-items: center;
    transition: opacity 0.3s ease;
    }

    .booking-icon:hover {
    opacity: 0.8;
    }

    .instagram-icon {
    width: 37px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
    }

    .instagram-icon:hover {
    opacity: 0.8;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        background-color: #977a66;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.4s ease;
    }

    .social-icon:hover {
    background-color: #ffffff;
    color: #222;
    transform: translateY(-5px);
    }

/* Sekce Menu */
.menu {
    background: #f9f6f2;
    padding: 80px 50px;
    min-height: 60vh;
}

.menu h2 {
    text-align: center;
    font-size: 3.7rem;
    color: #333;
    margin-top: 150px;
    font-weight: 600;
}

.menu h3{
    text-align: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Kontejner pro položky menu - dva obdélníky vedle sebe */
.menu-items-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Položky menu */
.menu-item-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    max-width: 350px;
    min-width: 250px;
}

.menu-item {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #333;
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 158, 137, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #bd9e89;
}

.menu-item-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bd9e89;
    display: block;
}

.menu-item-text {
    font-size: 1.7rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}


/* Prázdné menu */
.menu-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.menu-empty p {
    font-size: 1.3rem;
    color: #999;
    font-style: italic;
}

