.image {
    width: 100%;
    /* height: 400px; */
    /* object-position: top; */
    object-fit: cover;
}

.photo {
    cursor: pointer;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: .5rem;
    margin-top: 1rem;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.logoImage {
    width: 13rem;
    height: auto;
}

nav {
    position: relative;
    background: white;
    padding: 1rem;
    display: flex;
    justify-content: center;
    /* center links by default */
    align-items: center;
}

.nav-links {
    text-align: center;
    display: flex;
    justify-content: center;
    /* horizontal center */
    gap: 3rem;
    list-style: none;
    margin-top: 0;
    padding: 0;
}

/* hamburger lines */
.hamburger {
    display: none;
    /* hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 0px;
    height: 0px;
    position: absolute;
    right: 20px;
    top: 20px;
    /* stick to right side */

    /* margin-top: 0; */
}

.hamburger span {
    display: block;
    height: 4px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* h3 {
    align-items: center;
} */

header {
    text-align: center;
    /* color: red; */
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 0 3rem;
}

.section-black {
    margin-top: 3rem;
    /* min-width: mw; */
    background-color: rgb(53, 50, 50);
    color: white;
    padding: 1rem 0;
}

.row {
    display: flex;
    gap: .5rem;
}

.box {
    flex: 1;
    padding: 1rem;
    /* text-align: center; */
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
}

@media (max-width: 600px) {
    p {
        text-align: center;
    }

    .logoImage {
        width: 10rem;
        height: auto;
    }


    .row {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        /* hide links by default */
        flex-direction: column;
        gap: .5rem;
        margin-top: 10px;

    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        width: 30px;
        height: 22px;
        display: flex;
    }
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}