@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* 🎯 General Body Styling */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #1a1f1c, #2c4631); /* Dark green to soft green */
  margin: 0;
  padding: 20px;
  color: #1a1f1c; /* Dark text */
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(74, 123, 108, 0.3); /* soft green shadow */
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #4a7b6c, #1a1f1c); /* green gradient */
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-home:hover {
  background: linear-gradient(to right, #1a1f1c, #4a7b6c);
  transform: scale(1.05);
}

/* Logo Styling */
.logo-control {
  max-height: 150px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 20px;
  padding: 8px 16px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-control:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(26, 31, 28, 0.35); /* dark green shadow */
}

/* === Unique Spotlight Gallery (Brand Colors) === */
.spot-gallery {
  padding: 20px 20px;
  text-align: center;
}

.spot-gallery-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.spot-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #ffffff;
  border: 1px solid #eeeeee;
}

.spot-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spot-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay with green theme */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(26, 31, 28, 0.92), rgba(26, 31, 28, 0));
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.spot-gallery-item:hover .spot-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.spot-gallery-overlay h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.spot-gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  background: #4a7b6c; /* soft green badge */
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.3s ease;
}

.spot-gallery-overlay span:hover {
  background: #365c41; /* darker green on hover */
}

/* Button Style */
.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background: #4a7b6c;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}

.luxury-btn:hover {
  background: #365c41;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .spot-gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .spot-gallery-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Global Firefly Layer */
.firefly-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; /* don’t block clicks */
  z-index: 9999; /* adjust: above backgrounds, below UI */
}

/* Fireflies */
.firefly {
  position: absolute;
  background:yellow;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 200, 0.9),
              0 0 30px rgba(255, 255, 150, 0.7);
  animation: drift 6s infinite ease-in-out, blink 2s infinite alternate;
  will-change: transform;
}

/* Drift animation */
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -60px) scale(1.3); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Blink animation */
@keyframes blink {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 0.2; }
}