/* body {
  background-color: #f3e6c2 !important;
  background-image: url('/images/germany-1281059_1920.png') !important;
  background-size: 70% auto !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: center center !important;
  opacity: 1 !important;
} */

body {
  position: relative;
  background-color: #f3e6c2 !important;
  margin: 0; /* Ensure no default margin to cover full area */
  min-height: 100vh; /* Make sure body covers full viewport height */
}

body::before {
  content: "";
  position: fixed;
  top: 0; 
  left: 0; 
  width: 80%; /* Adjust width to match your background-size */
  height: 100%;
  background-image: url('/images/germany-1281059_1920.png');
  background-size: contain; /* or use cover or auto to fit your needs */
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3; /* Set the desired opacity here */
  z-index: -1;
  pointer-events: none; /* so it doesn’t interfere with clicks */
}


.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.ql-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  background: #f0e5c2;
  border: 3px solid #5ca3ff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #003366;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}


.ql-item:hover {
  background: #5ca3ff;
  color: white;
  border-color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  body {
    background-size: cover;
  }
  .quicklinks-grid{
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .ql-item {
    padding: 15px 10px;
    font-size: 16px;
  }
}

