@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 RED & WHITE VIBRANT STYLING
   ========================================= */

/* === BODY === */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #ffffff; /* --- CHANGE: Set background to white --- */
  margin: 0;
  color: #333333; /* --- CHANGE: Set main text to dark grey for readability --- */
  text-align: center;
}

/* === HEADINGS === */
h1, h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #1a1a1a; /* --- CHANGE: Dark heading color --- */
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(236, 43, 33, 0.2); /* --- CHANGE: Subtle red glow --- */
}

/* === BACK TO HOME BUTTON === */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #ec2b21, #c0221a); /* --- CHANGE: Red gradient --- */
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(236, 43, 33, 0.4); /* --- CHANGE: Red shadow --- */
  transition: all 0.3s ease;
}
.back-to-home:hover {
  background: linear-gradient(to right, #d1271c, #ec2b21); /* --- CHANGE: Brighter red gradient on hover --- */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(236, 43, 33, 0.6); /* --- CHANGE: Stronger red shadow --- */
}

/* === 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,0.3)); /* --- CHANGE: Neutral shadow for better compatibility --- */
}
.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: #f5f5f5; /* --- CHANGE: Light grey background for the item card --- */
  border: 1px solid #ddd;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  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(236, 43, 33, 0.3); /* --- CHANGE: Red shadow on hover --- */
}
.spot-gallery-item:hover img {
  transform: scale(1.06);
}

/* === OVERLAY (FIXED) === */
/*
  FIX: The overlay now covers the entire image (top: 0, height: 100%).
  The content is pushed to the bottom using flexbox for the same text position.
  This creates the "full cover" effect you wanted on hover.
*/
.spot-gallery-overlay {
  position: absolute;
  top: 0; /* --- FIX: Start from the top --- */
  left: 0;
  width: 100%;
  height: 100%; /* --- FIX: Cover the full height --- */
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); /* --- CHANGE: Black overlay --- */
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  /* --- FIX: Use Flexbox to align content to the bottom --- */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box; /* Ensures padding is included in height */
}
.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: #ec2b21; /* --- CHANGE: Use red for the title --- */
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.spot-gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  background: #ec2b21; /* --- CHANGE: Solid red background --- */
  color: #ffffff; /* --- CHANGE: White text --- */
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}
.spot-gallery-overlay span:hover {
  background: #ffffff; /* --- CHANGE: White background on hover --- */
  color: #ec2b21; /* --- CHANGE: Red text on hover --- */
}

/* === BUTTON === */
.luxury-btn {
  margin-top: 10px;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  background: #ec2b21; /* --- CHANGE: Solid red background --- */
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(236, 43, 33, 0.25);
}
.luxury-btn:hover {
  background: #333333; /* --- CHANGE: Dark grey on hover --- */
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* =========================================
   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;
  }
}
/* === VIBRANT COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a); /* --- CHANGE: Dark grey/black gradient --- */
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s cubic-bezier(0.55, 0, 0.1, 1);
  border-top: 1px solid #444;
}

.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: #e0e0e0;
  font-weight: 300;
}

.cookie-link {
  color: #ec2b21; /* --- CHANGE: Link color to red --- */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cookie-link:hover {
  color: #ff5c5c;
  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(0,0,0,0.4);
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #ec2b21, #b52118); /* --- CHANGE: Red gradient --- */
  color: #fff;
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg, #b52118, #ec2b21);
  box-shadow: 0 0 30px rgba(236, 43, 33, 0.7);
  transform: translateY(-3px);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid #777;
  color: #e0e0e0;
}
.cookie-btn.decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ec2b21;
  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);
  }

  .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;
  }
}