body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}
.gallery-hero .image-placeholder {
background-color: #ddd;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
color: #555;
}
.gallery-content {
padding: 40px 20px;
text-align: center;
}
.gallery-content h1 {
color: #238d7a;
margin-bottom: 30px;
}
.gallery-content h2 {
margin-top: 40px;
color: #a5a04e;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.image-item {
background-color: #eee;
width: 250px;
height: 180px;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
color: #666;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}
.image-item:hover {
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
.gallery-grid {
flex-direction: column;
align-items: center;
}
}