*,
*:before,
*:after {
  box-sizing: border-box;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

nav {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    /* background-color: black; */
    /* padding: 1rem; */

    display: flex;
    /* gap: 1rem; */
}

nav a {
    align-self: stretch;

    display: flex;
    align-items: center;
    /* background-color: rgba(255, 0, 0, 0.337); */
    padding: 1rem;
    text-decoration: none;
    color: white;
}

nav a:hover {
    /* background-color: rgba(0, 0, 0, 0.4); */
    filter: brightness(66%);
}

#logo {
    display: block;
    /* fill: white; */
    /* width: 100px; */
    height: clamp(75px, 14vw, 100px);
}

#hero {
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/kitchen2.jpg");
    /* background-image: url("./assets/kitchen.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
}

#heroContent {
    /* font-size: 1.2rem; */
    font-size: clamp(0.6rem, 4vw, 1.2rem);
    flex: 1;

    color: white;

    display: flex;
    /* text-align: center; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;

    /* background-color:rgba(0, 0, 255, 0.25); */
}

#galleryButton {
    font-size: clamp(0.6rem, 4vw, 1.2rem);
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: white;
    cursor: pointer;
    padding: 1rem;
}

#galleryButton:hover {
    border: 1px solid white;
    filter: brightness(66%);
}

#about {
    display: flex;
    height: 90vh;
    background-color: white;
    color: black;
}

#contact {
    display: flex;
    height: 90vh;
    background-color: black;
    color: white;
}

#about img, #contact img {
    display: block;
    /* width: 40%; */
    height: 100%;
}

.not-img {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* padding: 1rem; */
    flex: 1;
}

.not-img h1 {
    padding: 1rem;
    text-align: center;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(0, 100, 100, 0.5); */
    flex: 1;
}

/* .not-img {
    background-color: rgba(100, 100, 0, 0.5);
    display: flex;
} */

/* #contact img {
    display: block;
    width: 33%;
    height: 100%;
}

#contact div {
    padding: 1rem;
    flex: 1;
    display: flex;
    justify-content: center;
} */

footer {
    padding: 1rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
}



#navLinks {
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    #about img, #contact img {
        display: none;
    }
}


@media (max-width: 400px) {
    nav {
        flex-direction: column;
        justify-content: center;
    }

    nav a {
        justify-content: center;
    }
}