/* ========== Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

body.fade-in {
  opacity: 1;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}



/* ========== Navigation ========== */
.header {
  background: #f00;
  padding: 0rem 0;
}

/* Hide toggle on desktop */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}


.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.lang-switch.active {
  font-weight: bold;
}

.regional-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  justify-items: center;
  align-items: center;
  padding: 2rem 1rem;
  background: #f4f4f4;
  border-radius: 12px;
}

.regional-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
 
  transition: transform 0.3s ease, filter 0.3s ease;
}

.regional-logo:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}




.card-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}



.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #000;
}



.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
  
}

.contact-form button {
  padding: 0.75rem;
  background: #F00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c00;
}




/* Optional: pointer disabled during transition */
body.is-transitioning {
  pointer-events: none;
}

/* Main cookie banner */
.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f5f5f5;
  padding: 1.5rem;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hide elements */
.hidden {
  display: none !important;
}

/* Button group */
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Button style */
.cookie-buttons button {
  padding: 0.75rem 1rem;
  background: #f00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-buttons button:hover {
  background: #c00;
}

/* Settings panel layout */
#cookie-settings-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Vertically stack checkboxes */
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
