.body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0f2a;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #000;
    color: #fff;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 12, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-container {
    position: relative;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }
  
  .nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .nav-menu ul li a:hover {
    color: #b03a87;
  }
  
  .nav-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .apply-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px 0 26px;
    min-width: 180px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(90deg, #8e2a6b 0%, #77235c 40%, #341526 72%, #08080c 100%);
    clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0 100%);
    transition: 0.3s ease;
  }
  
  .apply-btn:hover {
    transform: scale(1.03);
  }
  
  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }
  
  /* MOBILE */
  @media (max-width: 900px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: absolute;
      top: 85px;
      left: 0;
      transform: none;
      width: 100%;
    }
  
    .nav-menu ul {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      width: 100%;
      background: linear-gradient(135deg, #2d0b3f, #0b1448);
      padding: 25px 0;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
  
    .nav-menu ul.active {
      display: flex;
    }
  
    .apply-btn {
      padding: 11px 22px;
      font-size: 0.95rem;
      min-width: auto;
      height: 48px;
    }
  
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }

  

/* ===== DROPDOWN INFORMACIJE ===== */
/* ===== DROPDOWN INFORMACIJE ===== */

#navLinks .dropdown {
    position: relative;
  }
  
  #navLinks .dropdown > a {
    cursor: pointer;
  }
  
  #navLinks .dropdown .submenu {
    display: none;
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
  
    min-width: 150px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
  
    background: linear-gradient(180deg, #2a0d2e 0%, #4b1d52 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    z-index: 9999;
  }
  
  #navLinks .dropdown.active .submenu {
    display: block;
  }
  
  #navLinks .dropdown .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  #navLinks .dropdown .submenu li a {
    display: block;
    width: 100%;
    padding: 10px 14px;
    box-sizing: border-box;
  
    text-decoration: none;
    color: #f3d4f0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
  
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  #navLinks .dropdown .submenu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ff8de1;
  }
  
  /* mali razmak između opcija bez ružnog velikog praznog prostora */
  #navLinks .dropdown .submenu li + li a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* mobilni */
  @media (max-width: 768px) {
    #navLinks .dropdown .submenu {
      position: static;
      transform: none;
      min-width: 100%;
      margin-top: 8px;
      border-radius: 10px;
    }
  
    #navLinks .dropdown .submenu li a {
      padding: 10px 12px;
      font-size: 14px;
    }
  }
/*logo*/
.nav-logo {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-logo a {
    display: inline-block;
  }
  
  
  .nav-logo img {
    height: 100px;
    width: auto;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .nav-logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
  }  

  /* GALERIJA */
  .insta-gallery {
    padding: 80px 20px;
    background: radial-gradient(circle at 20% 30%, #3b0f3c, transparent 50%),
                radial-gradient(circle at 80% 70%, #1a1f4a, transparent 50%),
                #0b0f2a;
  }

  .gallery-title {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-bottom: 50px;
    padding-top: 70px;
  }

  .gallery-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* CARD */
  .insta-card {
    width: 400px;
    background: #111327;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
  }

  .insta-card:hover {
    transform: translateY(-10px);
  }

  /* HEADER */
  .insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }

  .profile-info {
    display: flex;
    
    align-items: center;
    gap: 10px;
  }

  .profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .profile-text h3 {
    font-size: 14px;
    color: white;
    margin: 0;
  }

  .profile-text span {
    font-size: 12px;
    color: #aaa;
  }

  .dots {
    color: white;
  }

  /* IMAGE */
  .insta-image-box {
    position: relative;
  }

  .main-post-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .slide-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
  }

  /* FOOTER */
  .insta-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    color: white;
  }

  .icons-left span,
  .icons-right span {
    margin-right: 10px;
    cursor: pointer;
  }

  /* SLIDER */
.slider {
    position: relative;
  }
  
  .slide {
    display: none;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  
  .slide.active {
    display: block;
  }
  
  /* STRELICE */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 22px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  
  /* TAČKICE */
  .dots-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
  }
  
  .dot {
    height: 6px;
    width: 6px;
    margin: 0 3px;
    background-color: #aaa;
    border-radius: 50%;
    display: inline-block;
  }
  
  .dot.active {
    background-color: white;
  }





footer {
    background: #0f0f0f;
    color: #fff;
    padding: 30px 40px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    align-items: flex-end;
  }
  .footer-left,
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 220px;
  }
  
  .footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-center img {
    max-height: 100px;
  }
  
  .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
  }
  
  .footer-item i {
    font-size: 25px;
    color: #590762;
    transition: 0.3s;
  }
  
  .footer-item:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-item:hover i {
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-left,
    .footer-right {
      align-items: center;
    }
  
    .footer-item:hover {
      transform: none;
    }
  }








footer {
    background: #0f0f0f;
    color: #fff;
    padding: 30px 40px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    align-items: flex-end;
  }
  .footer-left,
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 220px;
  }
  
  .footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-center img {
    max-height: 100px;
  }
  
  .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
  }
  
  .footer-item i {
    font-size: 25px;
    color: #590762;
    transition: 0.3s;
  }
  
  .footer-item:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-item:hover i {
    color: #ffffff;
  }
  
@media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-right {
      margin-left: 0 !important;
      align-items: center !important;
      text-align: center !important;
      width: 100%;
    }
  
    .footer-item {
      justify-content: center !important;
    }
  
    .footer-left,
    .footer-right {
      align-items: center;
      text-align: center; 
    }
    
    .footer-item:hover {
      transform: none;
    }
  }