body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #0066cc;
color: white;
padding: 20px;
text-align: center;
}
.container {
padding: 30px;
max-width: 1000px;
margin: auto;
background-color: white;
}
h1, h2 {
color: #004080;
}
.details {
margin-top: 30px;
}
.contact {
margin-top: 40px;
padding: 20px;
background-color: #e6f2ff;
border: 1px solid #b3d1ff;
}
footer {
text-align: center;
padding: 15px;
background-color: #f0f0f0;
font-size: 0.9em;
margin-top: 40px;
}


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

.gallery img {
width: 100%;
height: auto;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}

.gallery img:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.85);
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 1000;
}

.lightbox.active {
display: flex;
}

.lightbox img {
max-width: 90%;
max-height: 80vh;
border-radius: 10px;
margin-bottom: 20px;
}

.lightbox-caption {
  margin-top: 20px;
  color: white;
  font-size: 18px;
}

.lightbox-controls {
display: flex;
gap: 40px;
font-size: 40px;
color: white;
user-select: none;
cursor: pointer;
}

.lightbox-controls span:hover {
color: #ccc;
}

@media (max-width: 600px) {
.lightbox-controls {
  font-size: 30px;
  gap: 20px;
}
}
