
body {
background-color: #f3e5f5;
padding: 0;
font-family: sans-serif;
margin: 0;
}

.site-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 30px;
}

.logo {
font-weight: bold;
font-size: 1.5rem;
color: #4527a0;
letter-spacing: 1px;
}

.nav-links {
list-style: none;
display: flex;
gap: 20px;
}

.nav-links a {
text-decoration: none;
color: #4527a0;
font-weight: 500;
}

/* gallery grid... */
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 250px;
gap: 15px;
max-width: 1000px;
margin: 0 auto 50px auto;
padding: 0 20px;

grid-template-areas:
"photo-1 photo-2 photo-3"
"photo-4 photo-2 photo-5"
"photo-6 photo-7 photo-7";
}

.photo-1 { grid-area: photo-1; }
.photo-2 { grid-area: photo-2; }
.photo-3 { grid-area: photo-3; }
.photo-4 { grid-area: photo-4; }
.photo-5 { grid-area: photo-5; }
.photo-6 { grid-area: photo-6; }
.photo-7 { grid-area: photo-7; }

.item {
overflow: hidden;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

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

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1; /* makes all 3 columns take up equal space */
}

/* cleaning up the lists and form elements */
.footer-col ul { list-style: none; margin-top: 10px; }
.footer-col li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-form input, .footer-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
}