@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(to right, #0f2d3f, #c8040d); /* Reverse gradient on hover */; /* White background to match logo */
  margin: 0;
  padding: 20px;
  color: #0f2d3f; /* Dark navy text for readability */
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  color: #fff; /* Dark navy for headings */
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(200, 4, 13, 0.3); /* Soft red shadow */
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #c8040d, #0f2d3f); /* Red to Navy 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, #0f2d3f, #c8040d); /* Reverse gradient on hover */
  transform: scale(1.05);
}

/* Logo Styling */
.logo-control {
  max-height: 100px;
  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(15, 45, 63, 0.35); /* Navy shadow */
}

/* === Unique Spotlight Gallery (Brand Colors) === */
.spot-gallery {
  padding: 20px 20px;
 
  text-align: center;
}

.spot-gallery-wrapper {
  max-width: 1200px;
  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 brand colors */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 45, 63, 0.92), rgba(15, 45, 63, 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: #ffffff; /* White heading */
}

.spot-gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  background: #c8040d; /* Bright red from logo */
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.3s ease;
}
.spot-gallery-overlay span:hover {
  background: #a8020b; /* Darker red on hover */
}

/* Button Style */
.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background: #c8040d;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}
.luxury-btn:hover {
  background: #a8020b;
}

/* 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;
  }
}

.photogallery-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-decoration:none;
}
.photogallery-description {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
  text-decoration:none;
}.photogallery-description a{
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
  text-decoration:none;
  font-weight:bold;
}