

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

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

nav ul li {
    margin-left: 1rem;
}


.logo {
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
}

.navbutton{
    text-decoration: none;
    font-weight:500;
}

.navbutton:hover{
    color: hsl(0, 0%, 7%);
}




.form-row {
    display: flex;
    gap: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.package {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
}

.package img {
    max-width: 100%;
    height: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

#portfolio img {
    width: 100%;
    height: auto;
    cursor: pointer;
}



/*gallery */

.gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
.gallery a {
        margin: 10px;
    }
.gallery img {
        max-width: 550px;
        height: 550px;
        object-fit: cover;
    }
.hidden {
        display: none;
      }

.filter-buttons {
text-align: center;
    }

.filter-button{
    background-color: #f1f1f1;
    border: 0px;
}

