/* General Styling */
body {
  margin: 0;
  padding: 0;
  background: #1B1D28;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Header with Logo */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;

}
.logo {
  height: 50px;
}

/* Fixed Footer with Address */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ccc;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  z-index: 1100;
}

/* Horizontal Scrolling Gallery with Vertical Centering */
.gallery-container {
  display: flex;
  align-items: center; /* Vertically centers the gallery items */
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px;
  height: calc(100vh - 70px);
  scrollbar-width: none; /* Firefox */
}
.gallery-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Gallery Layout */
.gallery {
  display: flex;
  gap: 20px;
}

/* Each Gallery Item */
.gallery-item {
  display: inline-block;
  text-align: center;
}

.gallery-item img {
  max-height: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Caption Styling */
.caption {
  margin-top: 8px;
  font-size: 1em;
  color: #ccc;
}
/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.2s;
}

.close {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 2000;
}

/* Cookie Consent Banner */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 50px; /* Adjust so it sits above the footer */
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1200;
  font-size: 14px;
}
#cookie-banner button {
  background: #5cb85c;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
}