/* Reset & base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif !important;
  background: transparent;
  color: #cacaca;
  line-height: 1.6;
  z-index: 1;
  
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul {
  list-style: none;
}

.block-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 6px; /* space for underline */
}

.block-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 100%; 
  height: 0.5px;
  border-radius: 0px;

  /* Glassy gradient with glow */
  background: linear-gradient(90deg, rgba(140, 140, 140, 0.4), rgba(202, 202, 202, 0.3));
  backdrop-filter: blur(6px);

  box-shadow: 
    0 0 6px rgba(254, 254, 254, 0.2),
    0 0 12px rgba(169, 169, 169, 0.15);
}


/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 0 2rem;
  height: 75px;
  position: sticky;
  top: 0;
  z-index: 1000;

}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0a183d;
  letter-spacing: 1px;
  margin-left: .5rem;
  order: 1;
}
.logo img { height: 56px; filter: invert(100%); }

/* Drawer menu (mobile) */
.nav-links {
  position: fixed;
  left: -100vw;
  top: 45px;
  height: 100vh;
  width: 20%;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 5rem 2rem 2rem;
  gap: 2rem;

  z-index: 2000;
  order:2;
}
.nav-links.open { left: 0; }

.nav-links li a {
  display: block;
  width: 100%;
  font-weight: 500;
  padding: .5rem .5rem;
  border-radius: 6px;
  transition: background .2s, color .2s, border-radius .2s;
  font-size: 1.2rem;
  text-align: left;
  color: #fff;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ===== Desktop navbar (>=900px): frosted row + underline ===== */
@media (min-width: 900px) {
  /* frosted glass + vignette bar */
  .navbar {
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    background: rgba(18,18,18,.36);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .navbar::before{
    content:"";
    position:absolute; inset:0; pointer-events:none;
    background:
      radial-gradient(150% 100% at 50% -40%, rgba(255,255,255,.12), transparent 60%),
      linear-gradient(90deg, rgba(0,0,0,.35), transparent 20%, transparent 80%, rgba(0,0,0,.35));
  }

  /* hide burger (your button has id="hamburger-menu") */
  #hamburger-menu { display: none !important; }

  /* turn drawer into horizontal row */
  .nav-links {
    position: static !important;
    left: auto; top: auto; height: auto; width: auto;
    background: transparent; box-shadow: none; padding: 0;
    display: flex !important; flex-direction: row; align-items: center;
    margin-left: auto; gap: clamp(18px, 3vw, 40px);
  }

    #nav-links {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: 0 !important;

    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    margin-left: auto;
    z-index: 1000; /* below navbar pseudo, above page */
  }
  .nav-links > li { display: inline-block; }

  .nav-links a {
    position: relative;
    color: #d7d7d7;
    font-weight: 600;
    letter-spacing: .2px;
    padding: 8px 0;
    transition: color .15s ease;
  }
  .nav-links a:hover,
  .nav-links a.active { color: #fff; }

  /* hover underline */
  .nav-links a::after{
    content:"";
    position:absolute; left:0; right:0; bottom:-6px; height:2px;
    background:#fff; opacity:0; transform: translateY(4px) scaleX(.5);
    transition: transform .25s ease, opacity .25s ease; border-radius: 2px;
  }
  .nav-links a:hover::after{ opacity:.85; transform: translateY(0) scaleX(1); }

  /* active underline element (inserted via JS) */
  .nav-links { position: relative; }
  .nav-links .active-underline{
    position:absolute; bottom:-6px; height:2px; width:0;
    background:#ffffff; border-radius: 2px; opacity:.9;
    transition: left .25s ease, width .25s ease, opacity .25s ease;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:#000000; /* dark blue background */
  /*background-image: 
    url('../assets/Texturelabs_Water_152L.jpg'), 
    linear-gradient(#ffffff, #b3b3b3); /* base color layer */
  /*background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode:screen; /* blends texture with color */ 
}

#bg3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none; /* clicks pass through */
  z-index: 2;
}



.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
  
}
.hero-content h1 {
  font-size: 10rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 1200;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
  
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-content img {
    height: 330px;
    margin-bottom: 3 rem;
    max-width: 180vw;
}
/*
.hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px; 
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(255,255,255,0));
  z-index: 2; 
  pointer-events: none; 
}

*/

/*blurry background blobs */
.blurry-bg {
  position: fixed;
  inset: 0;
  z-index: -1; /* always behind content */
  overflow: hidden;
  background: #000000;
}

.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  animation: move 15s infinite alternate ease-in-out;
}

/* Different colors + positions */
.blob:nth-child(1) {
  background: #ff6600;
  top: 60%;
  left: 5%;
  animation-duration: 15s;
}

.blob:nth-child(2) {
  background: #ff8d4a;
  bottom: 70%;
  right: -20%;
  animation-duration: 18s;
}

.blob:nth-child(3) {
  background: #2200ff;
  top: 40%;
  left: 50%;
  animation-duration: 14s;
}

/* Smooth floating animation */
@keyframes move {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(100px, -80px) scale(1.2); }
  100% { transform: translate(-120px, 100px) scale(0.9); }
}
/*
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; 
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(255,255,255,0));
  z-index: 2; 
  pointer-events: none; 
}
*/
.section-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #a7a7a7, transparent);
  margin: 2rem 0;
}

.cta-btn {
  background: rgba(0, 0, 0, 0.36);          /* semi-transparent, not solid */
  backdrop-filter: blur(16px) saturate(1.2) !important;
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: rgba(0, 0, 0, 0.85);;
  color: #ffffff;
}

/* Sections */
section {
  padding: 4rem 0 3rem 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
h2 {
  font-size: 2.2rem;
  color: #cacaca;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.8rem;
  color: #cacaca;
  margin-bottom: 1 rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2.Gallery {
  font-size: 2.2rem;
  color: #cacaca;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

h2.about {
  color: #cacaca;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}





/* keep the section positioned so the overlay can sit behind the text */
.about-section {
  position: relative;
  width: 100%;
  isolation: isolate; /* prevents backdrop bleeding from outside */
}

/* blur + slight darkening so text stays readable */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);          /* semi-transparent, not solid */
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1); /* Safari */
  z-index: 1;
}

/* content above the overlay */
.about-section .container {
  position: relative;
  z-index: 2;
}

/* optional: soft edges like a vignette inside the section */
.about-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mask-image: radial-gradient(120% 80% at 50% -10%, #000 40%, transparent 90%);
  background: rgba(0,0,0,0.25);
}



/* Team */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 3rem;
  margin-top: 2rem;
}
.player-card {
  position: relative; /* make sure pseudo-element can overlay */
  overflow: hidden;   /* keep vignette inside rounded corners */
  width: 230px;
  height: 280px; 
  background: rgba(0, 0, 0, 0.35);   /* transparent "frosted glass" */
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4); 
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s;

  /* glass effect */
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);

  border: 1px solid rgba(185, 185, 185, 0.2); /* subtle glass border */
}
.player-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.player-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255,255,255,0.15);
}
.player-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}
.player-card p {
  color: #eaeaea;
  font-size: 0.95rem;
}

.player-card::before,
.fixture-card::before {
  content: "";
  position: absolute;
  inset: 0; /* cover the whole card */
  border-radius: inherit;
  
  /* vignette effect: transparent center, dark edges */
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0) 70%,
    rgba(54, 54, 54, 0.35) 100%
  );

  pointer-events: none; /* let clicks pass through */
  z-index: 2;           /* above content background but below text/images */
}

/* Fixtures */
.fixtures-list {
  margin-top: 1.5rem;
  padding-left: 0;
}
.fixtures-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #454545;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 1.1rem;
}
.fixture-date {
  font-weight: 700;
  color: #d3d3d3;
}
.fixture-opponent {
  font-weight: 500;
  color: #d3d3d3;
}
.fixture-location {
  font-size: 0.95rem;
  color: #d3d3d3;
}

/* === Grid modern pentru galerie === */
.team-gallery .gallery-grid {
  --tile-min: 220px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--tile-min), 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;                 /* tile-uri consistente */
  border-radius: 12px;
  overflow: hidden;
  background: #1f1f1f;
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
  transform: translateZ(0);            /* performance */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .2s ease;
}

.gallery-item::after {
  /* overlay subtil + iconă apariție */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08), rgba(0,0,0,.35));
  opacity: 0; transition: opacity .25s ease;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }

/* === Lightbox === */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  place-items: center;
  z-index: 1000;
  padding: 4rem clamp(12px, 4vw, 48px);
}

.lightbox[aria-hidden="false"] { display: grid; }

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
  user-select: none;
}

.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border: 0; border-radius: 10px;
  background: rgba(255,255,255,.14);
  color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; backdrop-filter: blur(4px);
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border: 0; border-radius: 12px;
  background: rgba(255,255,255,.14);
  color: #fff; font-size: 2rem; cursor: pointer;
  backdrop-filter: blur(4px);
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav:hover { background: rgba(255,255,255,.24); }

.lightbox-caption {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: .75rem; align-items: center;
  padding: .4rem .75rem;
  background: rgba(0,0,0,.5);
  color: #eee; border-radius: 8px; font-size: .95rem;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .team-gallery .gallery-grid { --tile-min: 160px; gap: .75rem; }
  .lightbox { padding: 3.5rem 12px; }
  .lightbox-nav { width: 48px; height: 48px; font-size: 1.6rem; }
}


/* Contact */
.contact-section a {
  color: #0066cc;
  text-decoration: underline;
}
.contact-section a:hover {
  color: #004080;
}

/* Footer */
footer {
  position: relative;
  background: #000000;
  color: #cacaca;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  overflow: hidden;
  
}

.footer-badges {
  display: flex;
  justify-content: center; /* center both badges horizontally */
  gap: 20px;               /* space between badges */
  margin-top: 1rem;

}

.footer-badge {
  width: 120px;
  height: 120px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent; /* no background color */
  opacity: 1; /* fully visible */
}

.footer-badge.badge1 {
  background-image: url('../assets/images-3.png');
}

.footer-badge.badge2 {
  background-image: url('../assets/images-2.png');
  filter: invert(100%)
}


footer * {
  position: relative; /* keep content above background */
  z-index: 1;
}



/* wrapper cu butoane pe lateral, fără suprapunere */
.fixtures__viewport {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 16px;
  margin-top: 1.25rem;
}

/* butoane */
.fixtures__arrow {
  width: 56px; height: 56px;
  border: 0; border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff; font-size: 1.6rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s, transform .1s, opacity .2s;
}
.fixtures__arrow:hover { background: rgba(255,255,255,.22); }
.fixtures__arrow:active { transform: scale(.96); }
.fixtures__arrow:disabled { opacity: .4; cursor: not-allowed; }

/* containerul care derulează */
.fixtures__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;       /* snap la card */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;                /* Firefox */
}
.fixtures__scroller::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.fixtures__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* cardurile */
.fixture-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 360px);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);   /* frosted transparent */
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 1rem 1.25rem;
  text-align: center;
  transition: transform .15s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;

  /* glass effect */
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fixture-card.next-fixture {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25); 
  transform: scale(1.02);
}


/* tipografie */
.fixture-date {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: .25rem;
  white-space: nowrap;
}
.fixture-opponent {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}
.fixture-location {
  display: block;
  opacity: .85;
  margin-top: .25rem;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 768px) {
  .fixtures__viewport { grid-template-columns: 48px 1fr 48px; gap: 12px; }
  .fixtures__arrow { width: 48px; height: 48px; font-size: 1.4rem; }
  .fixture-card { width: clamp(240px, 70vw, 320px); }

   .fixtures__viewport {
    grid-template-columns: 48px 1fr 48px;
    gap: 12px;
  }
  .fixture-card {
    width: clamp(120px, 20vw, 150px); /* încape 2–3 pe ecran */
    padding: .85rem 1rem;
  }
  .fixture-date { font-size: 1rem; }
  .fixture-opponent { font-size: .95rem; }
  .fixture-location { font-size: .85rem; }
  
  #hamburger-menu { display: flex; }

 
}

@media (max-width: 480px) {
  .fixtures__viewport {
    grid-template-columns: 40px 1fr 50px;
    gap: 20px;
  }
  .fixture-card {
    width: clamp(165px, 80vw, 150px); /* 2–3 vizibile pe rând */
    padding: .75rem .9rem;
  }
  .fixture-date { font-size: .6rem; }
  .fixture-opponent { font-size: .7rem; }
  .fixture-location { font-size: .7rem; }
}




/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }
  .navbar {
    padding: 0 1rem;
    justify-content: space-between;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
  }

  .nav-links li a::after {

  width: 20%;

}

  
  .hamburger-menu {
    display: flex;
    order: 2;
  }

  



  .hero-content h1 {
    font-size: 6rem; /* Smaller hero title */
  }
  .hero-content p {
    font-size: 1.1rem; /* Smaller hero text */
  }
}
@media (max-width: 700px) {
  .nav-links {
    width: 60%;
    /* No right property here */
  }
  .nav-links.open {
    /* No right property here */
  }
  .hamburger-menu {
    display: flex;
  }

  .hero {
  position: relative;
  min-height: 60vh;
  max-height: 70vh;
  
}

#page-content {
  transition: filter 0.3s ease;
}

.blurred {
  filter: blur(5px);
  pointer-events: none; /* Prevent clicking blurred elements */
}


@media (max-width: 600px) {
  .players-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 110px)); /* narrower cards */
    gap: 1.75rem; /* smaller gap */
  }

  .player-card {
    padding: 1rem 0.5rem; /* less padding */
    width: 120px;
    height: 180px;
  }

  .player-card img {
    width: 50px;
    height: 50px; /* smaller images */
  }

  .player-card h3 {
    font-size: 0.6rem; /* smaller name text */
  }

  .player-card p {
    font-size: 0.7rem !important; /* smaller position text */
  }
   h2 {
    font-size: 1.5rem;  /* Smaller title */
  }

  /* Optional: reduce logo text size too */
  .logo span {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 4rem; /* Smaller hero title */
  }
  .hero-content p {
    font-size: 1rem; /* Smaller hero text */
  }

  .hero-content img {
    height: 220px;
    margin-bottom: 3 rem;
    max-width: 120vw;
  }
  .gallery-grid {
    gap: 1rem;
  }

  .gallery-grid img {
    width: min(200px, 80vw); /* smaller on mobile */
  }

  .container h2{
    font-size: 1.5rem; /* Smaller section titles */

  }

  .container p{
    font-size: 1rem; /* Smaller paragraph text */
  }

  .logo img{
    height: 40px; /* Smaller logo */
  }

  /* fixtures */
  .fixtures-list li {
    font-size: 0.9rem;
}

@media (max-width: 468px) {

  .hero-content h1 {
    font-size: 3.5rem; /* Smaller hero title */
  }

  .navbar {
  height: 45px;

}

}
@media (max-width: 468px){

  h2 {
    font-size: 1rem;   /* titlu principal */
  }
  h3 {
    font-size: 1.1rem;     /* subtitluri mai mici */
  }

  .cta-btn {
    font-size: 0.8rem;  /* buton mai mic */
    padding: 0.7rem 1.5rem;
  }

  /* ===== Desktop frosted glass navbar (>=900px) ===== */
@media (min-width: 900px) {
  .navbar {
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    background: rgba(0, 0, 0, 0.26);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  /* vignette subtil pe bară */
  .navbar::before{
    content:""; position:absolute; inset:0; pointer-events:none;
    

  /* ascundem burger-ul pe desktop */
  #hamburger-menu { display: none !important; }

  /* transformăm meniul lateral într-un rând de linkuri */
  .nav-links {
    position: static !important;
    left: auto; top: auto; height: auto; width: auto;
    background: transparent; box-shadow: none; padding: 0; gap: clamp(18px, 3vw, 40px);
    display: flex !important; align-items: center;
    margin-left: auto;  /* împinge linkurile la dreapta */
  }

  /* scoatem dot-urile de listă și așezăm <li> pe un rând */
  .nav-links > li { display: inline-block; }

  /* link look + hover underline */
  .nav-links a {
    position: relative; color: #d7d7d7; font-weight: 600; letter-spacing: .2px;
    padding: 8px 0; transition: color .15s ease;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a::after{
    content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
    background:#fff; opacity:0; transform: translateY(4px) scaleX(.5);
    transition: transform .25s ease, opacity .25s ease; border-radius: 2px;
  }
  .nav-links a:hover::after { opacity:.85; transform: translateY(0) scaleX(1); }

  /* underline-ul activ care se mișcă sub linkul activ */
  .nav-links { position: relative; }
  .nav-links .active-underline {
    position:absolute; bottom:-6px; height:2px; width:0;
    background:#fff; border-radius:2px;
    transition: left .25s ease, width .25s ease, opacity .25s;
    opacity:.9;
  }
}

/* ===== Mobile (<=900px) — rămâne burger + drawer-ul tău ===== */
@media (max-width: 900px) {
  /* burger vizibil */
  #hamburger-menu { display: flex; }

  /* ascunde underline-ul animat pe mobil (nu e nevoie în drawer) */
  .nav-links .active-underline { display: none; }
}


}
}

}

}