@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== GENERAL BODY STYLING (SITE BRAND) ===== */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  margin: 0;
  padding: 20px;
  color: #0a2050;
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BACK TO HOME BUTTON ===== */

.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(244, 123, 32, 0.35);
}

.back-to-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(244, 123, 32, 0.55);
}

/* ===== LOGO STYLING ===== */

.logo-control {
  max-height: 150px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 20px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(10, 32, 80, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-control:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 32, 80, 0.2);
}

/* ===== SPOTLIGHT GALLERY (PREMIUM HOTEL STYLE) ===== */

.spot-gallery {
  padding: 40px 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: 28px;
}

.spot-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(10, 32, 80, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spot-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.spot-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(10, 32, 80, 0.25);
}

.spot-gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== OVERLAY (NAVY → TRANSPARENT) ===== */

.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(10, 32, 80, 0.95),
    rgba(10, 32, 80, 0.2),
    transparent
  );
  color: #ffffff;
  text-align: left;
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.45s ease;
}

.spot-gallery-item:hover .spot-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.spot-gallery-overlay h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* Badge */
.spot-gallery-overlay span {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* ===== BUTTON ===== */

.luxury-btn {
  margin-top: 12px;
  padding: 9px 18px;
  font-size: 14px;
  border: none;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(244, 123, 32, 0.35);
}

.luxury-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.55);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .spot-gallery-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .spot-gallery-wrapper {
    grid-template-columns: 1fr;
  }

  h1, h2 {
    font-size: 2.2rem;
  }
}
