@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');
/* =========================================
   GLOBAL BLUE-SILVER CINEMATIC STYLING
   ========================================= */

/* === BODY === */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #0a1a2f, #112d4e); /* Deep navy cinematic gradient */
  margin: 0;
  padding: 20px;
  color: #cfd9e7; /* Cool silver-blue text */
  text-align: center;
}

/* === HEADINGS === */
h1, h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(74,144,226,0.4); /* Subtle blue glow */
}

/* === BACK TO HOME BUTTON === */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #1e3a5f, #2a5298); /* Blue gradient */
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(74,144,226,0.4);
  transition: all 0.3s ease;
}
.back-to-home:hover {
  background: linear-gradient(to right, #4A90E2, #1e3a5f);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(160,196,255,0.6);
}

/* === LOGO === */
.logo-control {
  max-height: 150px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 12px;
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,50.0)) brightness(1.8);
}
.logo-control:hover {
  transform: scale(1.08);
 
}

/* =========================================
   SPOTLIGHT GALLERY
   ========================================= */
.spot-gallery {
  padding: 30px 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;
  background: rgba(20, 30, 50, 0.95);
  border: 1px solid rgba(160,196,255,0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
}
.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 35px rgba(74,144,226,0.4);
}
.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* === OVERLAY === */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.95), rgba(10, 20, 40, 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);
}

/* === OVERLAY TEXT === */
.spot-gallery-overlay h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #A0C4FF; /* Cool blue title */
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.spot-gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(to right, #4A90E2, #1e3a5f);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}
.spot-gallery-overlay span:hover {
  background: linear-gradient(to right, #A0C4FF, #4A90E2);
  color: #1a1a1a;
}

/* === BUTTON === */
.luxury-btn {
  margin-top: 10px;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  background: linear-gradient(90deg, #1e3a5f, #4A90E2);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74,144,226,0.25);
}
.luxury-btn:hover {
  background: linear-gradient(90deg, #A0C4FF, #4A90E2);
  color: #0a1a2f;
  box-shadow: 0 6px 20px rgba(160,196,255,0.5);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@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;
  }
  h1, h2 {
    font-size: 2.2rem;
  }
}
/* === CINEMATIC COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.98), rgba(0, 0, 0, 0.95));
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(74,144,226,0.3);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s cubic-bezier(0.55, 0, 0.1, 1);
  border-top: 1px solid rgba(74,144,226,0.4);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* Content Layout */
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 40px;
  font-size: 16px;
  line-height: 1.6;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: #dce9ff;
  font-weight: 300;
}

.cookie-link {
  color: #4A90E2;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cookie-link:hover {
  color: #a0c4ff;
  text-decoration: underline;
}

/* Buttons */
.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(74,144,226,0.3);
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #4A90E2, #003366);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg, #003366, #4A90E2);
  box-shadow: 0 0 30px rgba(74,144,226,0.7);
  transform: translateY(-3px);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #a0c4ff;
}
.cookie-btn.decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #4A90E2;
  color: #fff;
}

/* === Responsive (Tablet + Mobile Optimized) === */
@media (max-width: 1024px) {
  .cookie-banner {
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%);
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4), 0 0 30px rgba(74,144,226,0.4);
  }

  .cookie-banner.show {
    transform: translate(-50%, 0);
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    gap: 12px;
    text-align: center;
  }

  .cookie-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-buttons {
    justify-content: center;
    gap: 10px;
  }

  .cookie-btn {
    width: 110px;
    padding: 8px 0;
    font-size: 14px;
  }
}

/* Smaller mobile screens */
@media (max-width: 600px) {
  .cookie-banner {
    width: 92%;
    padding: 10px 0;
    bottom: 15px;
  }

  .cookie-content {
    padding: 15px 20px;
  }

  .cookie-content p {
    font-size: 13.5px;
  }

  .cookie-btn {
    width: 100px;
    padding: 7px 0;
  }
}