@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: url('images/texture.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  padding: 20px;
  color: #2c3e50; /* Dark blue-gray text for readability */
  text-align: center;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  z-index: -1;
  pointer-events: none;
}

/* Header */
h1, h2 {
  font-size: 3rem;
  color:#05212b;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 82, 150, 0.3); /* soft blue shadow */
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: transparent;
  color: #003B5C; /* Navy button text */
  border: 2px solid #003B5C;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
 
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-home:hover {
 background: #003B5C;
  color: #fff;
}

/* Logo Styling */
.logo-control {
  max-height: 250px;
  max-width: 250px;
  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(0, 82, 150, 0.35); /* blue 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, 82, 150, 0.08); /* soft blue shadow */
  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, 82, 150, 0.15); /* stronger blue shadow */
}

.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay with blue and green theme */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 82, 150, 0.92), rgba(0, 82, 150, 0)); /* blue gradient */
  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: #0074D9; /* bright blue badge */
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.3s ease;
}

.spot-gallery-overlay span:hover {
  background: #005bb5; /* darker blue on hover */
}

/* Button Style */
.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
background: transparent;
  color: #003B5C; /* Navy button text */
  border: 2px solid #003B5C;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}

.luxury-btn:hover {
   background: #003B5C;
  color: #fff;
}

/* 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;
  }
}
