@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Quicksand:wght@500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

 h1, h2, h3 {
    font-family: 'Quicksand', sans-serif;
  }

  body, p, span, li, a, button, input, textarea {
    font-family: 'Nunito', sans-serif;
  }
body {
    background-color: #E3F2FD;
    background: linear-gradient(135deg,#ffffff 0%,  #e3f2fd 100%);
}
a {
    text-decoration: none;
}

  nav.navbar {
   /* background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 70vw;
    margin: 0 auto;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }

  .nav-links li {
    display: inline-block;
  }

  .nav-links a, .nav-links span {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: #007BFF;
  }

  .logo img {
  position: absolute;
  height: 77px;
  top: -6px;
  left: -6px;
}

  .menu-icon {
    display: none;
  }
  
  
  .hero_img {
      max-width: 75px;
  }

  @media (max-width: 600px) {
    .menu-icon {
      display: block;
      font-size: 24px;
      cursor: pointer;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    #menu-toggle:checked ~ .nav-links {
      display: flex;
    }
  }

  .container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
  }

  .grid {
    column-count: 1;
    column-gap: 1rem;
    
  }

  @media (min-width: 768px) {
    .grid {
      column-count: 2;
    }
  }

  @media (min-width: 1024px) {
    .grid {
      column-count: 3;
    }
  }

  .grid-item {
  /*  background: #ffffff;*/
  background: rgba(0, 0, 0, 0.1); 
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    display: inline-block;
    width: 100%;
 /*   box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 11;
  }

.grid-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1); 
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);

  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1100;
}

.grid-item a:link,
.grid-item a:visited {
  color: inherit;
  text-decoration: none;
}

  .grid-item img.image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }

  .grid-item h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .labelvert {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
  }

  .labelfra {
    background: #4f46e5;
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
  }

  .labelblanc {
    background: #6b7280;
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
  }
  .labelred {
    background: #FF0000;
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
  }

  .rightside h6 {
    font-size: 0.875rem;
    color: #4b5563;
  }

 /* .footer {
   text-align: center;
    padding: 2rem 1rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    background: #f3f4f6;
    margin-top: 2rem;
     width: 70vw;
    margin: 0 auto;
 
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 70vw;
    margin: 0 auto;
    
  }*/

.footer {
  position: sticky;
  bottom: 0; 
  
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70vw;
  margin: 0 auto;
  z-index: 10;
}

  footer a {
    color: #000;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }
  
  
  
  
  
  .contact-form {
  max-width: 600px;
  margin: 5rem auto;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  color: #111827; /* Slate-900 */
  transition: all 0.3s ease;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
}

.contact-form button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: rgba(34, 197, 94, 0.3); /* Emerald-500 transparent */
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #065f46;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: rgba(34, 197, 94, 0.6);
  color: #ecfdf5;
}

/* DARK THEME */
body.dark .contact-form {
  background: rgba(30, 41, 59, 0.3); /* Slate-800 transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9; /* Slate-100 */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background: rgba(51, 65, 85, 0.6); /* Slate-700 */
  color: #f1f5f9;
}

body.dark .contact-form input:focus,
body.dark .contact-form textarea:focus {
  background: rgba(71, 85, 105, 0.8); /* Slate-600 */
}

body.dark .contact-form button {
  background: rgba(34, 197, 94, 0.15);
  color: #d1fae5;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

body.dark .contact-form button:hover {
  background: rgba(34, 197, 94, 0.5);
  color: #f0fdf4;
}

  
  
  
  
  
  
  
  
  
  
  
  body.dark {
  background: #0f172a;
  color: #f1f5f9;
}

body.dark nav.navbar {
  /*background: #1e293b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);*/
 /* background: linear-gradient(45deg, #000091, #E1000F);*/
}

body.dark .nav-links a,
body.dark .nav-links span {
  color: #e2e8f0;
}

body.dark .nav-links a:hover {
  color: #60a5fa;
}

body.dark .grid-item {
/*  background: #1e293b;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
  background: rgba(255, 255, 255, 0.1); 
}

body.dark .grid-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

body.dark .grid-item h2 {
  color: #f8fafc;
}

body.dark .rightside h6 {
  color: #94a3b8;
}

body.dark footer {
 /* background: #1e293b;*/
  color: #94a3b8;
}

body.dark footer a {
  color: #94a3b8;
}

#theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: inherit;
  transition: transform 0.2s ease;
}

#theme-toggle:hover {
  transform: rotate(15deg);
}


.center {/*
  display: flex;
  justify-content: center;
  align-items: center;*/
  
  margin: 0 auto;
}

.margin100 {
  margin: 100px;
}

.padding100 {
  padding: 100px;
}

.fullw {
  width: 100vw;
}

.absolute {
  position: absolute;
}


.hidden {
    display: none;
}


.liquid-glass {
  background: rgba(255, 255, 255, 0.1); 
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}


.expand {
  width: 40px; 
  overflow: hidden;
  white-space: nowrap;
  animation: expandWidth 0.3s ease-out forwards;
}



@keyframes expandWidth {
  from {
    width: 40px;
    opacity: 0;
  }
  to {
    width: 70vw;
    opacity: 1;
  }
}
/* HALOWEEEN */
.web {
position: absolute;
top: 0;
left: 0;
width: 250px;
height: 250px;
opacity: 0.25;
}

@media (max-width: 600px) {
  .logo img {
  
    height: 50px;
    margin: 0 auto;
    display: block;
    top: -9px;
  }
}