* {
    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;
    font-family: 'Poppins', sans-serif;
}

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);
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.gallery-item {
    flex: 1 0 30%;
    margin: 10px;
    text-align: center;
}

.gallery-item img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

.gallery-item a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 0 100%;
    }
}

@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;
    }
    .gallery-item {
        flex: 1 0 45%;
    }

    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;
    }
}