@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #121015;
  color: #ff6ec7;
  font-family: 'Barlow Condensed', sans-serif;
  text-align: center;
}

header {
  padding: 20px 0;
}

.logo {
  width: 60px;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 36px;
  color: #ff6ec7;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.nav-buttons button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-buttons button:hover {
  color: #ff6ec7;
}

.contact-info {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #ff6ec7;
}

.gallery {
  column-count: 4;
  column-gap: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ff6ec7;
  background: none;
  border: none;
  cursor: pointer;
}

.slideshow-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.slideshow-controls button {
  background: #ff6ec7;
  color: #121015;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.slideshow-controls button:hover {
  background: #ff94da;
}

