* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.apple-logo {
    width: 60px;
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: rgb(255, 0, 200);
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: -100%;
        background-color: #000;
        width: 100%;
        transition: left 0.3s ease-in-out;
    }

    nav ul.show {
        left: 0;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: flex;
        position: absolute;
        top: 15px;
        right: 20px;
        flex-direction: column;
        cursor: pointer;
    }

    .burger .line {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 4px 0;
    }
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

#contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.social-icons {
    margin-bottom: 30px;
    text-align: center;
}

.social-icons a {
    margin: 0 20px;
}

.social-icons i {
    font-size: 36px; 
    color: #000; 
}

#map {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Poměr stran 16:9 */
    position: relative;
    margin-bottom: 30px;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #map {
        padding-bottom: 75%; /* Poměr stran 4:3 pro mobilní zařízení */
    }
}
