
body {
    background-color: #ffffff;
    color: #333;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}


header {
    display: flex;
flex-direction: column;
    align-items: center;
background-color: #f5f5f5;
justify-content: space-between;
    color: #333;
    padding-bottom: 20px;
padding: 20px 0;

}

.header-content {
    display: flex;
    align-items: center;
}


header h1 {
    margin: 0;
    padding: 20px 0;
    color: #333; 
}

.logo {
    width: 40 px; 
    height: auto;
    margin-right: 10px; 
}




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

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #aeb3b5;
    color: #4b5052;
    text-decoration: none;
    border-radius: 5px;
}

nav ul li a:hover {
background-color: #9da1a3;    
color: #404242;
}



#categories button, .filter-button {
    background-color: #e7e7e7;
    color: #333;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

#categories button:hover, .filter-button:hover {
    background-color: #d4d4d4;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fafafa;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 40px;
    padding: 30px;
}

.item {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.item img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}


footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

footer a {
    color: #9ecfcf;
}

footer a:hover {
    color: #ffffff;
}

/* Modal base styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding: 20px;
}

/* Modal content box */
.modal-content {
  background-color: #e0dede;
  margin: 10% auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #e0dede;
  cursor: pointer;
}

.close-btn:hover {
  color: #e3e1e1;
}

/* Footer link */
.privacy-link {
  display: block;
  margin-top: 10px;
  color: #d6d4d4;
  text-decoration: none;
  font-size: 14px;
}

.privacy-link:hover {
  text-decoration: underline;
}
