* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #2c2c2c;
      color: #f0f0f0;
      transition: background-color 1.1s ease, color 1.1s ease;
      height: 100%;
      margin: 0;

    }


    html, body {
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1 0 auto;
    }

    footer {
      background-color: #111;
      color: #ccc;
      text-align: center;
      padding: 15px 10px;
      font-size: 14px;
      flex-shrink: 0;
    }
    
    .wybor {
      background-color: #0f0f0f;
      padding: 0.75rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position:relative;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
      /* border-bottom: 1px solid #222; */
    }

    .wybor div {
      font-weight: 500;
      transition: color 1.1s ease;
    }

    .wybor div:hover {
      color: #d1d1d1;
      cursor: pointer;
      
      
    }

    header {
      background-color: #1a1a1a;
      padding: 0 1.5rem;
      padding-bottom: 1rem;
      width: 100%;
      display: flex;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: background-color 1.1s ease, color 1.1s ease;
    }

    header img {
      width: 150px;
      height: auto;
      padding-top:20px;
    }

    nav{
      display:flex;
      justify-content: center; /* <-- dodaj to */
      align-items: center;     /* <-- dodaj to */
      gap: 20px;               /* opcjonalne: kontroluje odstępy */
      flex: 1;
      padding-right: 100px;
      
    }

    nav a{
      text-decoration: none;
      color: #f0f0f0;
      font-size:2rem;
      padding-top:20px;
      padding-inline: 20px;
      transition: background-color 0.5s ease, color 0.5s ease;
     
      
    }


    nav a:hover{
      color: #d1d1d1;
      cursor: pointer;
    }
    @media (max-width: 1024px) {

        nav{
            padding-right:0px;
        }
  .slider-button {
    display: none; /* lub: */
    /* font-size: 18px; padding: 4px 6px; opacity: 0.5; */
  }
}


    /*

    main{
      margin-top:50px;
      text-align: center;
      width:100%;
      
    }
    
    main h1{
      padding:20px;
    }

    .summary{
      display:flex;
      justify-content:center;
      border: 3px solid #1a1a1a;
      border-radius:5%;
      width:50%;
      height:500px;
      margin:auto;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    }

    .summary ul{
      display:block;
      margin-top:150px;
      margin-left:40px;
      padding-left:30px;
      height:200px;
      border: 3px solid #1a1a1a;
      border-radius:5%;
      background-color: #292929;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
      
      
    }

    .summary ul li{
      margin:10px;
      height:10px;
      padding:20px;
      text-align:left;
      font-size:large;
      font-weight: bold;
    }

    */
    
    
    
    .light-mode{
      color: #212121;
      background-color: #f5f5f5;
    
    }
   

    .light-mode header{
      background-color: white;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    
      transition: background-color 1.1s ease, color 1.1s ease;
    }
    .light-mode nav a{
      color: black;
      transition: color 1.1s ease;
     
    }
    .mode{
      width:70px;
      height:30px;
      border-radius:10px;
      border:2px solid black;
      background-color:rgba(0, 0, 0, 0.438);
      transition: background-color 1.1s ease;
      font-size: 0.9rem;
      cursor:pointer;
    }
    
    .social-media{
        left:100px;
    }

    .social-media img{
      width: 20px;
    }

    .social-media ul li{
        list-style: none;
        display: inline-block;
    }
    .mode-icon {
      display: inline-block;
      transition: opacity 0.4s ease;
    }

    .mode-icon.fade-out {
      opacity: 0;
    } 
    .icons {
      width: 25px;
      height: 25px;
      text-decoration: none;
      color: white;
      background-color: gray;
      border-radius: 50%;      
      padding: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 2px;
      transition: transform 0.15s ease;
    }
    #facebook-icon {
      background-color: blue;
    }
    #yt-icon {
      background-color: red;
    }
    .icons:hover {
      transform: scale(1.1);
    }
    .lang-dropdown{
      position:relative;
      display:inline-block;
    }
    .lang-btn{
      background-color:transparent;
      color:white;
      border:none;
      cursor:pointer;
      font-weight:500;
      display:flex;
      align-items:center;
      gap:8px;
    }

    .flag-icon{
      width:20px;
      height:auto;
      border-radius:3px;
    }
    .lang-selector{
      min-width: 100px;
    }
    .lang-menu {
      position: absolute; 
      display: none;
      background-color: #1e1e1e;
      min-width: 120px;
      border: 1px solid #444;
      border-radius: 4px;
      z-index: 101; 
      top: 100%;
      left: 11px;
      margin-top: -12px;
    }

    .lang-selector.open .lang-menu {
      display: block; 
    }

    .lang-option{
      padding:8px 12px;
      transition:0.3s;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:8px;
      color:white;
    }
    .lang-option:hover{
      transition:0.3s;
      background-color:#333;
    }

    .lang-selector.open .arrow-icon {
      transform: rotate(180deg);
    }
    .arrow-icon {
      margin-left:-5px;
      transition: transform 0.3s ease;
    }
    .arrow-icon path{
      stroke:white;
    }
    .slider-container {
      
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 436px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .light-mode .slider-container {
    background-color: #F5F5F5 ;
  }

  .slider {
    display: flex;
    
    transition: transform 0.7s ease-in-out;
    will-change: transform;
  }

  .slide {
    position: relative;
    min-width: 100%;
    min-height: 376px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    transition: background-color 1.1s ease;
  }
  .light-mode .slide{
    background:#e0dddd ;
    transition: background-color 1.1s ease;
  }
  

  .slide img {
    max-width: 100%;
    max-height: 376px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    transition: transform 0.4s ease;
    animation: shine 6s infinite linear;
    will-change: transform;
  }

  .slide:hover img {
    transform: scale(1.01);
  }

  .slide-content {
    position: absolute;
    bottom: 10%;
    left: 8%;
    background: rgba(0, 0, 0, 0.4);
    padding: 18px 26px;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
    transition: background-color 1.1s ease;
  }
 .light-mode .slide-content {
  background-color: rgba(255, 255, 255, 0.80);
  transition: background-color 1.1s ease, color 1.1s ease;
} 
  .slide-content h2 {
    font-size: 2rem;
    color: #007cc2;
    margin-bottom: 8px;
  }

  .slide-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
  }
  .light-mode .slide-content p{
    color:rgb(9, 8, 8);
  }
  .light-mode .slide-content a{
    color:rgba(0, 0, 0, 0.721)
  }

  .slide-content a {
    display: inline-block;
    padding: 10px 20px;
    background: #007cc2;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px #007cc2;
  }

  .slide-content a:hover {
    background: #007cc2;
    transform: scale(1.05);
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes shine {
    0% { filter: drop-shadow(0 0 10px rgba(211, 212, 212, 0.2)); }
    50% { filter: drop-shadow(0 0 16px rgba(211,212,212,0.4)); }
    100% { filter: drop-shadow(0 0 10px rgba(211,212,212,0.2)); }
  }

  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border:none;
    /* backdrop-filter: blur(6px); */
    /* border: 1px solid rgba(0, 255, 255, 0.25); */
    color: #00f0ff;
    font-size: 2rem;
    padding: 5px 5px;
    /* border-radius: 50%; */
    cursor: pointer;
    z-index: 10;
    /* box-shadow: 0 0 12px rgba(0,255,255,0.15); */
    transition: all 0.3s ease;
  }

  .slider-button:hover {
    /* background: rgba(0, 255, 255, 0.15); */
    transform: translateY(-50%) scale(1.1);
  }

  .prev { left: 20px; }
  .next { right: 20px; }

      .dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 30px;
    transition: background-color 1.1s ease;
  }
  



  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }
  .light-mode .dot{
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
   
  }
 
  .dot.active {
    background: #00f0ff;
    transform: scale(1.3);
  }
  .dot:hover {
      transform: scale(1.4);
      background: rgba(0, 255, 255, 0.5);
  }
  @media (max-width: 768px) {
  .slide-content {
    max-width: 90%;
    left: 10%;
    right: 10%;
    bottom: 5%;
  }

  .slide-content h2 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slide img {
    max-width: 80%;
  }
}

main {
  width: 100%;
  padding: 5vw;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow-x: visible;
}

/* Burger base (hidden by default) */
.burger {
  display: none;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: color 1.1s ease;
}
.light-mode .burger{
  color:black;
  transition: color 1.1s ease;
}

/* Responsive nav styles */
@media (max-width: 1024px) {
  .slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .slider {
    cursor: grab;
    user-select: none;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease;
  }

  nav a {
    padding: 20px;
    font-size: 2rem;
    color: #f0f0f0;
    text-decoration: none;
    transition: color 1.1s ease;
  }

  nav.active {
    display: flex;
    transition: color 1.1s ease;
  }
  .light-mode nav.active{
    transition: color 1.1s ease;
    background-color: rgba(185, 185, 185, 0.868);
  }
  

  .burger {
    display: block;
    padding-top: 20px;
  }

  .burgerIcon {
    position: relative;
  }
}

/* ========== DESKTOP DROPDOWN ========== */
@media (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }

  .dropdown1 {
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }


  .dropdown1 > a {
    color: white;
    font-size: 2rem;
    padding: 12px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 8px;
  }

  .dropdown1 > a:hover {
    color: #007cc2;
  }

  .dropdown1-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;

  }
  .light-mode .dropdown1-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
  }
  .light-mode .dropdown1-content {
    color:white;
    transition: all 0.3s ease;
  }


  .dropdown1:hover .dropdown1-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
 
  .dropdown1-content a {
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .light-mode .dropdown1-content a {

    color: white;
    
    transition: background 0.3s ease, color 0.3s ease;
  }

  .dropdown1-content a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #007cc2;
  }

  .dropdown1-content a::before {
    content: "📦";
    font-size: 1rem;
  }
}

/* ========== MOBILE AKORDEON ========== */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 2rem;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid #555;
    cursor: pointer;
  }
  .light-mode .accordion-toggle{
    color:black;
    border-bottom:1px solid white;
  }
  .accordion-toggle i {
    transition: transform 0.3s ease;
  }

  .accordion-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
    flex-direction: column;
  }

  .accordion-content a {
    display: block;
    padding: 12px 20px;
    font-size: 1.5rem;
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid #444;
    text-align: center;
  }

  .accordion-content a:hover {
    background-color: #555;
  }

  .accordion-content.open {
    max-height: 600px;
    padding: 10px 0;
  }
}

footer{
  margin-top: auto;
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;

}






* {
         margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          font-family: 'Inter', sans-serif;
          background-color: #2c2c2c;
          color: #f0f0f0;
          transition: background-color 1.1s ease, color 1.1s ease;
        }
    
      html, body {
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
      }

      main {
        flex: 1 0 auto;
      }

      footer {
        background-color: #111;
        color: #ccc;
        text-align: center;
        padding: 15px 10px;
        font-size: 14px;
        flex-shrink: 0;
      }

        .wybor {
        position: relative;
        background-color: #0f0f0f;
        padding: 0.75rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: none;
        transition: box-shadow 0.3s ease;
        }

        .wybor.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
        }
        .wybor div {
          font-weight: 500;
          transition: color 1.1s ease;
        }
    
        .wybor div:hover {
          color: #d1d1d1;
          cursor: pointer;
          
          
        }
    
        header {
          background-color: #1a1a1a;
          padding: 0 1.5rem;
          padding-bottom: 1rem;
          width: 100%;
          display: flex;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
          transition: background-color 1.1s ease, color 1.1s ease;
        }
    
        header img {
          width: 150px;
          height: auto;
          padding-top:20px;
        }
    
        nav{
          display:flex;
          justify-content: center; 
          align-items: center;     
          gap: 20px;             
          flex: 1;
          padding-right: 100px;
          
        }
    

        .onas{
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;   
          overflow-x: visible;          
        }

        nav a{
          text-decoration: none;
          color: #f0f0f0;
          font-size:2rem;
          padding-top:20px;
          padding-inline: 20px;
          transition: background-color 1.1s ease, color 1.1s ease;
          
        }
    
        nav a:hover{
          color: #d1d1d1;
          cursor: pointer;
        }

        .aside a{
          color: #f0f0f0;
        }

        .light-mode{
          color: #212121;
          background-color: #f5f5f5;
        
        }
        .light-mode .summary ul{
      
          border: 3px solid #1a1a1a;
          border-radius:5%;
          background-color: #00000035;
          transition: background-color 1.1s ease, border-color 1.1s ease;
    
        }
        .light-mode header{
          background-color: white;
          
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
         .light-mode nav a{
          color: black;
          transition: color 1.1s ease;
         
        }
        .mode{
          width:70px;
          height:30px;
          border-radius:10px;
          border:2px solid black;
          background-color:rgba(0, 0, 0, 0.438);
          transition: background-color 1.1s ease;
          font-size: 0.9rem;
          cursor:pointer;
        }
        
        .social-media{
            left:100px;
        }
    
        .social-media img{
          width: 20px;
        }
    
        .social-media ul li{
            list-style: none;
            display: inline-block;
        }
        .mode-icon {
          display: inline-block;
          transition: opacity 0.4s ease;
        }
    
        .mode-icon.fade-out {
          opacity: 0;
        } 
        .icons {
          width: 25px;
          height: 25px;
          text-decoration: none;
          color: white;
          background-color: gray;
          border-radius: 50%;      
          padding: 5px;
          display: flex;
          justify-content: center;
          align-items: center;
          margin: 2px;
          transition: transform 0.15s ease;
        }
        #facebook-icon {
          background-color: blue;
        }
        #yt-icon {
          background-color: red;
        }
        .icons:hover {
          transform: scale(1.1);
        }
        .lang-dropdown{
          position:relative;
          display:inline-block;
        }
        .lang-btn{
          background-color:transparent;
          color:white;
          border:none;
          cursor:pointer;
          font-weight:500;
          display:flex;
          align-items:center;
          gap:8px;
        }
    
        .flag-icon{
          width:20px;
          height:auto;
          border-radius:3px;
        }
        .lang-selector{
          min-width: 100px;
        }
        .lang-menu {
          position: absolute; 
          display: none;
          background-color: #1e1e1e;
          min-width: 120px;
          border: 1px solid #444;
          border-radius: 4px;
          z-index: 101; 
          top: 100%;
          left: 11px;
          margin-top: -12px;
        }
    
        .lang-selector.open .lang-menu {
          display: block; 
        }
    
        .lang-option{
          padding:8px 12px;
          transition:0.3s;
          cursor:pointer;
          display:flex;
          align-items:center;
          gap:8px;
          color:white;
        }
        .lang-option:hover{
          transition:0.3s;
          background-color:#333;
        }
    
        .lang-selector.open .arrow-icon {
          transform: rotate(180deg);
        }
        .arrow-icon {
          margin-left:-5px;
          transition: transform 0.3s ease;
        }
        .arrow-icon path{
          stroke:white;
        }
        main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   
  overflow-x: visible;
}

.container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  margin:auto;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  border-radius: 16px;
}

.container img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text-container {

  line-height: 1.7;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.text-container p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.text-container ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc !important;
  font-size: 1.05rem;
  
}

.text-container ul li {
  margin-bottom: 10px;

}

.text-container img {
  margin: 20px 0;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.container-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
    font-size: 30px;
    font-weight: 600;
    box-shadow: 0px 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.light-mode .container-section{
  background-color: rgb(230, 230, 230);
}
.dealerzy {
    position: relative; 
    box-sizing: border-box;
    color: black;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dealerzy-img {
    width: 250px !important;
    height: 250px;
    box-shadow: 0 0px 8px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.15s ease-in-out;
    background-color: #1e1e1e;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: cover;
    padding: 0px;
}
.light-mode .dealerzy-img{
  background-color: rgb(240, 239, 239);
}

.dealerzy-img img {
    max-width: 200px;
    position: relative;
    z-index: 1;
}

.dealerzy-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-size: 30px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.7); 
    border-radius: 10px;
    text-align: center;
}

.dealerzy:hover .dealerzy-name {
    opacity: 1;
}

.dealerzy-name a {
    color: black;
    text-decoration: none;
}
.dealer-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

      /* Burger base (hidden by default) */

.burger {
  display: none;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: color 1.1s ease;
}
.light-mode .burger{
  color:black;
  transition: color 1.1s ease;
}

/* Responsive nav styles */
@media (max-width: 1024px) {

    nav{
      padding-right:0px;
    }
    
  .slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  
  .slider {
    cursor: grab;
    user-select: none;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease;
  }

  nav a {
    padding: 20px;
    font-size: 2rem;
    color: #f0f0f0;
    text-decoration: none;
  }

  nav.active {
    display: flex;
    transition: color 1.1s ease;
  }
  .light-mode nav.active{
    transition: color 1.1s ease;
    background-color: rgba(185, 185, 185, 0.868);
  }
  

  .burger {
    display: block;
    padding-top: 20px;
  }

  .burgerIcon {
    position: relative;
  }
}
/* ========== DESKTOP DROPDOWN ========== */
@media (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }

  .dropdown1 {
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }


  .dropdown1 > a {
    color: white;
    font-size: 2rem;
    padding: 12px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 8px;
  }

  .dropdown1 > a:hover {
    color: #007cc2;
  }


}

/* ========== MOBILE AKORDEON ========== */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 2rem;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid #555;
    cursor: pointer;
  }
   .light-mode .accordion-toggle{
    color:black;
    border-bottom:1px solid white;
  }
 

  .accordion-toggle i {
    transition: transform 0.3s ease;
  }

  .accordion-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
    flex-direction: column;
  }

  .accordion-content a {
    display: block;
    padding: 12px 20px;
    font-size: 1.5rem;
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid #444;
    text-align: center;
  }

  .accordion-content a:hover {
    background-color: #555;
  }

  .accordion-content.open {
    max-height: 600px;
    padding: 10px 0;
  }

}