@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(180deg, #adebad 0%, #e9f7df 100%);
  margin: 0;
  padding: 20px;
  color: #e5e7eb;
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  color: #0f172a;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #d4af37, #c9a227);
  color: #0f172a;
  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, #c9a227, #d4af37);
  transform: scale(1.05);
}

/* Logo Styling */
.logo-control {
  max-height: 150px;
  max-width: 150px;
  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(212, 175, 55, 0.35);
}

/* === Gallery === */
.spot-gallery {
  padding: 20px;
}
.spot-gallery-wrapper {
  max-width: 1300px;
  margin: 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: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.spot-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.spot-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}
.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay */
.spot-gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0));
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  text-align:left;
}
.spot-gallery-item:hover .spot-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.spot-gallery-overlay h3 {
  font-size: 18px;
  color: #fff;
 
}
.spot-gallery-overlay span {
  font-size: 14px;
  background: #d4af37;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 20px;
 
}
.spot-gallery-overlay span:hover {
  background: #c9a227;
}

/* Button */
.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #d4af37;
  color: #0f172a;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.luxury-btn:hover {
  background: #c9a227;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 4px solid #6CB33F;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 9999;
  display: none;
  font-size: 16px;
  color: #003B5C;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  line-height: 1.6;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  color: #003B5C;
  border: none;
}

.cookie-btn.accept:hover {
  background: linear-gradient(90deg, #e55a00, #ff9900);
  transform: translateY(-3px);
}

.cookie-btn.decline {
  background: transparent;
  color: #ff7300;
  border: 2px solid #ff7300;
}

.cookie-btn.decline:hover {
  background: #ff7300;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    justify-content: center;
  }
}