
body{
  background-color: black;
}

.navbar-container {
    background-color: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    max-height: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links li a:hover {
    color: #c40000;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 18px;
    cursor: pointer;
    z-index: 200;
    position: relative;
  }
  
  .menu-toggle span {
    display: none;

  }
  
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  
  /* Responsive nav */
  @media (max-width: 768px) {


    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        transition: all 0.4s ease-in-out;
        transform-origin: center;
      }

    .nav-links {
        flex-direction: column;
        background: rgba(17, 17, 17, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        padding-left: 30px;
        padding-right: 30px;
        transition: left 0.4s ease-in-out;
        z-index: 99;
        box-shadow: inset 0 0 60px rgba(255, 0, 51, 0.15);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
      }
      
  
    .nav-links li {
      border-bottom: 1px solid #333;
      padding: 15px 0;
    }
  
    .nav-links.show {
      left: 0;
    }
  
    .menu-toggle {
      display: flex;
      z-index: 100;
    }
  }

  
  .hero-banner {
    background-image: url('../assets/img/bg5.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 40px 40px;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(184, 166, 166, 0.03), inset 0 0 20px rgba(109, 99, 99, 0.05);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #c40000;
    margin-bottom: 10px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
  }
  
  .breadcrumb-nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
  }
  
  .breadcrumb-nav a:hover {
    color: #c40000;
    text-decoration: underline;
  }

  .site-footer {
    background-color: #000;
    padding: 60px 20px 30px;
    color: #ccc;
    border-top: 1px solid white;
  }
  
  .footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
  }
  
  .footer-text {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #aaa;
  }
  
  .footer-divider {
    width: 60px;
    height: 3px;
    background-color: #9a001f;
    margin: 25px auto 25px;
    border-radius: 5px;
    opacity: 0.8;
    
  }
  
  .footer-copy {
    font-size: 0.9rem;
    color: #666;
  }
  
  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #c40000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .icon-circle:hover {
    background-color: #ff1a4d;
    transform: scale(1.1);
  }
  

  .butonizer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
  }
  
  #butonizer-toggle {
    width: 54px;
    height: 54px;
    background-color: #c40000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    cursor: pointer;
    animation: pulse 1.6s infinite;
    transition: transform 0.3s ease;
  }
  
  #butonizer-toggle:hover {
    transform: scale(1.1);
  }
  
  .butonizer-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 70px;
    left: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;

  }

  .butonizer-options a{
    text-decoration: none;
  }
  
  .butonizer.active .butonizer-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .buton-circle {
    width: 44px;
    height: 44px;
    background-color: #111;
    color: #d40404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .buton-circle:hover {
    background-color: #a50101;
    color: #fff;
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
  }
  
.welcome {
  background-color: black;
}
  
.block {
    border-radius: 20px;
    margin: 40px auto;
    padding: 30px;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #111;
  }
  
  .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
  }
  
  .headline {
    color: #ff0033;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px #ff0033;
  }
  
  .desc {
    font-size: 1.1rem;
    color: #eee;
    line-height: 1.8;
  }
  
  .services h2,
  .cta h2 {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 0 8px #fff;
    margin-bottom: 20px;
  }
  
  .cta {
    text-align: center;
  }
  
  .services ul {
    list-style: none;
    padding: 0;
  }
  
  .services li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #ff0033;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 0 15px #ff0033;
    transition: background-color 0.3s ease;
    
  }
  
  .cta-btn:hover {
    background-color: #ff1a4d;
    box-shadow: 0 0 25px #ff1a4d;
  }
  .fancy-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .fancy-list li {
    text-transform: capitalize;
    font-size: 1.1rem;
    padding: 12px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  }
  
  .fancy-list li span {
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  
  .fancy-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }
  .uvod {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 26, 77, 0.3);
  }
  
  .tekst {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 15px;
  }
  
  .tekst strong {
    color: #fff;
    font-weight: 600;
  }
  
  .highlight {
    color: #ff0033;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 0, 51, 0.5);
  }

  .offers {
    display: grid;
    gap: 20px;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    background: none !important;
}

#ponude{
    background-color: black;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff4141;
    text-shadow: 0 2px 5px rgba(255, 72, 72, 0.692);
}

.offer-card h3 {
  font-size: 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));

  border-radius: 10px;
  padding: 5px;
  padding-left: 10px;
  
  color: #000000;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.692);
}

.offer-card hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ff4d4d, #fff);
    margin: 10px 0;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.6;
}


#cenovnik {
    background-color: black;
    padding-bottom: 30px;
}

.filter-nav {
    background: #1111116c;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 20;
    z-index: 80;

    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .filter-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .filter-nav li {
    display: inline-block;
    margin: 0 12px;
  }
  
  .filter-nav a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.492);
  }
  
  .filter-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.7);
  }
  
  .filter-nav a i {
    margin-right: 6px;
  }
  
  .filter-nav a:hover {
    color: #ff0033;
  }
  
  .pricing-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .pricing-section h2 {
    text-align: center;
    color: #ff0033;
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
  
  .pricing-card {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    transition: 0.3s;
    color: white;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
  }
  
  .pricing-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .price {
    color: #ff0033;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
  }
  
  .pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  
  .pricing-card ul li i {
    margin-right: 10px;
    color: #fff;
  }
  
  .featured {
    border: 2px solid #ff0033;
  }
  
  .vip {
    background: #220011;
    border: 2px solid #ff0044;
  }
  
  .gold {
    border: 2px solid #ffaa00;
  }
  
  .single-column {
    justify-content: center;
  }
  
  .full {
    width: 100%;
    max-width: 700px;
  }
  
  
  .calculator {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    margin: 0px auto;

    max-width: 55%;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.1);
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .calculator {
 max-width: 90%;

      }
  }  

  .calculator h2 {
    color: #ff0033;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .calculator label {
    display: block;
    margin-top: 20px;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .calculator input[type="number"],
  .calculator select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    margin-top: 5px;
    background: #222;
    color: #fff;
  }
  
  .calculator input[type="checkbox"] {
    margin-top: 10px;
    transform: scale(1.2);
  }
  
  .calculator button {
    margin-top: 25px;
    padding: 12px 20px;
    background: #ff0033;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
  }
  
  .calculator button:hover {
    background: #ff1a4d;
  }
  
  .total {
    margin-top: 30px;
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
  }
  

  /*pojekti*/

  /* Section background and base style */
.projects-block {
    background-color: #000;
    color: #fff;
    font-family: 'Anton', sans-serif;
    padding: 60px 0;
  }
  
  /* Subtitle */
  .projects-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  /* Title */
  .projects-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  
  /* Highlighted words in title */
  .projects-title .highlight {
    color: #b30000;
  }
  
  /* Divider */
  .projects-divider {
    border: none;
    border-top: 3px solid #b30000;
    width: 100px;
    margin: 30px 0;
    border-radius: 4px;
  }
  
  /* Description text */
  .projects-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }
  
  /* Project image style */
  .project-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
  }
  
  .project-img:hover {
    transform: scale(1.02);
  }


  .artists-block {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    font-family: 'Anton', sans-serif;
  }
  
  .artists-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: left;
  }
  
  /* Artist block */
  .artist-entry {
    padding: 40px 20px;
    background-color: #242424;
    border-bottom: 1px solid #8b001c;
    margin-bottom: 40px;
    border-radius: 15px;
  }
  

.insta-link{
    margin-top: 15px;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;

    padding: 10px;

    border-radius: 10px;
}

  .insta-link:hover {
    background-color: #700016;
  }
  
  /* Artist info - whole right side */
  .col-lg-6.col-md-12 {
    text-align: left;
  }

  .artist-img-wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
  .artist-img-wrapper img {
    width: 250px;
  }
  
  
  /* Labels and Titles */
  .artist-label {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #b8b8b8;
  }
  
  .artist-name {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .artist-song {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .artist-song i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .artist-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* Metrics - mini blokovi */
  .artist-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-left: 5px;
  }
  
  .artist-metrics .col-6 {
    flex: 0 0 calc(50% - 10px);
    text-align: left;
    padding: 0;
    
  }
  
  .metric-icon {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 8px;
  
  }
  
  .metric-title {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 5px;
  }
  
  .metric-title a {
    color: #ccc;
    text-decoration: none;
  }
  
  .metric-title a:hover {
    color: #fff;
  }
  
  .metric-number {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
  }
  
  /* Report Button */
  .report-button-wrapper {
    margin-top: 20px;
  }
  
  .download-report-btn {
    background-color: #8b001c;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .download-report-btn:hover {
    background-color: #700016;
  }
  
  
  .stats-line {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 600px;
  }
  
  .highlighted-number {
    color: #c33d3d;
  
    font-size: 20px;
    
  }
  