/**
 * Cookie Consent Banner Styles — Diamant Kozijnen
 */

/* Cookie Banner Container */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #003b73 0%, #0066cc 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  display: none;
  animation: cookieSlideUp 0.5s ease-out;
}

.cookie-consent-banner.show {
  display: block;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}

.cookie-consent-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #87CEEB;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

.cookie-consent-text a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-consent-btn.accept {
  background: #ffd700;
  color: #003b73;
}

.cookie-consent-btn.accept:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cookie-consent-btn.decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-consent-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Cookie Settings Link in Footer */
.cookie-settings-link {
  display: inline-block;
  margin-top: 15px;
  color: #ffd700 !important;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-settings-link:hover {
  color: #ffed4e !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent-btn {
    flex: 1;
    min-width: 120px;
  }
}
