@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: 'Playfair Display', serif;
  background: linear-gradient(135deg, #0f0606, #2a1b1b); /* Cinematic dark red-black gradient */
  margin: 0;
  padding: 20px;
  color: #e5c6a0; /* Golden accent text */
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(181, 34, 57, 0.4); /* Soft red shadow to match #b52239 */
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #b52239, #8b1a2c); /* Brand red 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, #8b1a2c, #b52239);
  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(181, 34, 57, 0.35); /* Red accent 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(181, 34, 57, 0.25); /* Red accent on hover */
}
.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay with cinematic red theme */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 6, 6, 0.95), rgba(15, 6, 6, 0)); /* Deep red-black */
  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: #e5c6a0; /* Golden title */
}
.spot-gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  background: #b52239; /* Brand red badge */
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.3s ease;
}
.spot-gallery-overlay span:hover {
  background: #8b1a2c; /* Darker red on hover */
}

/* Button Style */
.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background: #b52239;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}
.luxury-btn:hover {
  background: #8b1a2c;
}

/* 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;
  }
}



/* === COOKIE CONSENT BANNER (MATCHED THEME) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(40, 10, 10, 0.95), rgba(15, 15, 15, 0.95));
  color: #f8f8f8;
  padding: 20px 30px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.45);
  font-family: "Poppins", sans-serif;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e8e8e8;
}

.cookie-content a {
  color: #d6b46a;         /* Softer gold like layout */
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #f3d68b;
}

/* === BUTTONS === */
.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Accept Button – gold tone used across site */
.cookie-btn.accept {
  background-color: #d6b46a;
  color: #2d1a1a;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.cookie-btn.accept:hover {
  background-color: #f3d68b;
}

/* Decline Button – outlined gold */
.cookie-btn.decline {
  background-color: transparent;
  color: #d6b46a;
  border: 1px solid #d6b46a;
}

.cookie-btn.decline:hover {
  background-color: #d6b46a;
  color: #2d1a1a;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    flex: 1;
  }
}
