:root {
  --color-scrollbar-thumb: #10b981;
  --color-scrollbar-thumb-hover: #059669;
  --header-total-height: 100px; /* header + marge top */
}



/* Glass effect navbar centered with 75% width */
.custom-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 16px 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* Flex container */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--color-scrollbar-thumb) ;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-scrollbar-thumb);
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 12px;
}
.button-full{
    background: linear-gradient(90deg, #00ff88, #007f5f, #001a0f);


}

.btn-outline {
  padding: 6px 16px;
  font-size: 0.85rem;
  border: 1px solid var(--color-scrollbar-thumb);
  color: var(--color-scrollbar-thumb);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff4e6;
}

.btn-dark {
  padding: 6px 16px;
  font-size: 0.85rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background-color: #333;
}

.logo-image{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.pannel{
    margin-top: 3%;
    backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 16px 32px;
  width: 90%;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
