* {
  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;
}
.submit-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;
  }
  .submit-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;
  }
}


/* HERO */
.hero {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}
  
  /* LEFT SIDE */
  .hero-left {
    width: 50%;
    padding: 60px;
    background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* LOGO */
  .logo img {
    height: 200px;
    width: auto;
    display: block;
  }
  
  .badge {
    display: inline-block;
    background: #8e2a6b;
    color: #000;
    padding: 5px 12px;
    margin-top: 5px;
    font-weight: bold;
  }
  
  /* TITLE */
  .hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  /* TEXT */
  .hero-left p {
    max-width: 400px;
    color: #ccc;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
  }
  .hero-left p span {
    font-size: 22px; /* povećaj veličinu */
    font-weight: bold;
  
    background: linear-gradient(
      to bottom,
      #b03a87,   /* svjetlija gore */
      #8e2a6b,   /* sredina */
      #5a1a45    /* tamnija dole */
    );
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    display: inline-block;
  }
  @media (max-width: 991px) {
    .hero {
      position: relative;
    }
 
  
    .top-info {
      position: absolute;
      top: 80px; /* ispod headera */
      left: 50%;
      transform: translateX(-50%);
      
      width: 100%;
      text-align: center;
  
      z-index: 10;
    }
  
    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 120px;
  
      pointer-events: none;
      z-index: 5;
  
      /* FADE IZ CRNE U LJUBIČASTU */
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(20, 8, 18, 0.6) 40%,
        rgba(60, 18, 45, 0.9) 75%,
        rgba(111, 35, 84, 1) 100%
      );
    }
  }




  @media (max-width: 991px) {
    .hero {
      position: relative;
      padding-top: 150px;
    }
  
    .hero-right {
      width: 100%;
      position: static !important;
      background: none !important;
      display: block;
      margin: 0;
    }
  
    .top-info {
      position: absolute !important;
      top: 100px !important;
      left: 50% !important;
      right: auto !important;
      bottom: auto !important;
      transform: translateX(-50%) !important;
  
      width: auto !important;
      margin: 0 !important;
      text-align: center !important;
      z-index: 20;
  
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      line-height: 1.4;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #d36aac;
    }
  
    .top-info span {
      display: block;
    }
  
    .top-info span:first-child {
      font-weight: 600;
      color: #d36aac;
    }
  
    .top-info span:last-child {
      margin-top: 3px;
      font-size: 12px;
      color: #d36aac;
    }
  }
/*odbrojavanje*/



  .countdown {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }
  
  .time-box {
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border-radius: 8px;
  }
  
  .time-box span {
    display: block;
    font-size: 32px;
    font-weight: bold;
  
    background: linear-gradient(to bottom, #c94a9b, #8e2a6b, #4a1438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .time-box small {
    font-size: 14px;
    color: #aaa;
  }
  
  /* RIGHT SIDE */
  .hero-right {
    width: 50%;
    position: relative;
    background: url('pocetna.jpg') no-repeat center/cover;
    
  }
  
  /* TOP INFO */
  .top-info {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #ccc;
    font-size: 22px;
    line-height: 1.5;
  }
  
  @media (max-width: 991px) {
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: auto;
      padding: 110px 20px 70px;
      text-align: center;
    }
  
    .hero-left,
    .hero-right {
      width: 100%;
    }
  
    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .logo {
      margin-bottom: 20px;
    }
  
    .logo img {
      max-width: 110px;
      height: auto;
    }
  
    .hero h1 {
      font-size: 44px;
      line-height: 1.05;
      margin-bottom: 20px;
    }
  
    .hero p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 28px;
    }
  
    .hero p span {
      display: inline-block;
      margin-top: 6px;
    }
  
    .countdown {
      width: 100%;
      max-width: 620px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin: 0 auto;
    }
  
    .countdown .time-box {
      min-width: 0;
      padding: 14px 8px;
    }
  
    .countdown .time-box span {
      font-size: 30px;
      line-height: 1;
    }
  
    .countdown .time-box small {
      font-size: 11px;
      letter-spacing: 0.4px;
    }
  
    .hero-right {
      margin-top: 30px;
      display: flex;
      justify-content: center;
    }
  
    .top-info {
      text-align: center;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  @media (max-width: 576px) {
  .hero {
    padding: 95px 16px 55px;
  }

  .logo img {
    max-width: 90px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 320px;
  }

  .countdown .time-box {
    padding: 12px 8px;
  }

  .countdown .time-box span {
    font-size: 24px;
  }

  .countdown .time-box small {
    font-size: 10px;
  }

  .top-info {
    font-size: 14px;
    line-height: 1.5;
  }
}


  /*za pozadinu cijelog sajta*/
  .home-gradient-content {
    position: relative;
    background: linear-gradient(
      to bottom,
      #6f2354 0%,
      #4d183a 22%,
      #2b1025 48%,
      #140b16 72%,
      #060608 100%
    );
    overflow: hidden;
  }
  
  .home-gradient-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 20% 15%, rgba(201, 74, 155, 0.16), transparent 30%),
      radial-gradient(circle at 80% 35%, rgba(125, 36, 95, 0.12), transparent 28%),
      radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.03), transparent 22%);
    z-index: 0;
  }
  
  .home-gradient-content > section {
    position: relative;
    z-index: 1;
    background: transparent !important;
  }
  
  
  /* DUMMY SECTION */
  .dummy-section {
    min-height: 100vh;
    padding: 120px 60px;
    background: #111;
  }
  
  .dummy-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  
  .dummy-section p {
    font-size: 20px;
    color: #ccc;
  }



/*druga sekcija*/
  
.about-camp {
  position: relative;
  display: flex;
  min-height: 800px;
  overflow: hidden;
  background: transparent;
}

.about-camp::before,
.about-camp::after {
  display: none;
}




  /* LIJEVA SLIKA */
  .about-image,
  .about-content {
    position: relative;
    z-index: 2;
  }
  .about-image img {
    width: 100%;
    max-width: 500px;
    height: 420px;
    object-fit:contain;
    border-color: #77235c;
  
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: transform, opacity;
  
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
  }
  
  .about-image img.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* DESNI TEKST */
  .about-image {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
  }
  
  .about-content {
    width: 52%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* UVOD */
  .intro {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
  }
  
  /* LISTA */
  .arrow-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .arrow-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
  }
  
  /* STRELICA */
  .arrow-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
  
    font-size: 16px;
    font-weight: bold;
  
    background: linear-gradient(to bottom, #c94a9b, #8e2a6b, #4a1438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* ZADNJI TEKST */
  .highlight {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
  
    background: linear-gradient(to bottom, #c94a9b, #8e2a6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }





  
  .camp-details {
    position: relative;
    padding: 170px 60px 90px;
    overflow: hidden;
    background: transparent;
  }
  
  .camp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.16) 100%
    );
    pointer-events: none;
  }
  
  .camp-details::before {
    display: none;
  }
  

  
  .camp-details-inner,
.big-countdown {
  position: relative;
  z-index: 2;
}
  .camp-details h2 {
    text-align: center;
    font-size: 56px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    margin-top: 120px; 
  }

  
  .camp-columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .camp-column {
    width: 50%;
    text-align: center;
  }
  
  .camp-column h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 28px;
    text-transform: uppercase;
    text-align: center;
  }
  
  .info-list,
  .goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .info-list li,
  .goals-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .info-list li::before,
  .goals-list li::before {

    position: absolute;
    left: 0;
    top: 0;
    color: #c94a9b;
    font-size: 18px;
    font-weight: bold;
  }
  
  .info-list li span {
    font-weight: 700;
    color: #fff;
  }
  
  .camp-short-text {
    margin-top: 36px;
    max-width: 620px;
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .camp-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 55px;
  }
  
  .camp-info-btn {
    min-width: 420px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 22px 40px;
  
    background: linear-gradient(
    90deg,
    #c94a9b 0%,
    #8e2a6b 40%,
    #5a1a45 75%,
    #1a0d18 100%
  );

  color: #fff;

  
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  
  .camp-info-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
  }

  .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto; /* centriranje */
  
    border: 2px solid rgba(0, 0, 0, 0.8); /* TAMNI okvir */
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
  
    margin-bottom: 20px;
    font-size: 28px;
  
    background: rgba(0, 0, 0, 0.3); /* lagani tamni fill */
    backdrop-filter: blur(6px);
  }
  .icon i {
    color: #c94a9b; /* čista jaka ljubičasta */
    font-size: 26px;
  }
  .big-countdown {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
  
    display: flex;
    justify-content: center;
    gap: 22px;
  
    padding: 20px 30px;
    border-radius: 22px;
  
    background: rgba(12, 8, 18, 0.82);
    backdrop-filter: blur(12px);
  
    border: 1px solid rgba(201, 74, 155, 0.28);
  
    box-shadow:
      0 16px 45px rgba(0, 0, 0, 0.5),
      0 0 22px rgba(201, 74, 155, 0.16);
  }
  .big-countdown .time-box {
    min-width: 110px;
    padding: 14px 16px;
    border-radius: 16px;
    text-align: center;
  
    background: linear-gradient(
      180deg,
      rgba(201, 74, 155, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 100%
    );
  
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .big-countdown .time-box span {
    display: block;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-shadow:
      0 0 10px rgba(201, 74, 155, 0.45),
      0 4px 18px rgba(0, 0, 0, 0.35);
  }
  
  .big-countdown .time-box small {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #d36aac;
  }




  .sponsors-section {
    position: relative;
    overflow: hidden;
    padding: 120px 60px 100px;
    background: transparent;
  }
  
  .sponsors-top-fade {
    display: none;
  }
  
  
  .sponsors-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
  }
  
  .sponsors-kicker {
    text-align: center;
    margin-bottom: 55px;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.78);
  }
  
  .sponsors-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .sponsors-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s ease;
    will-change: transform;
  }
  
 
  .sponsor-slide {
    min-width: calc((100% - 60px) / 3);
    height: 200px; /* malo povećano */
    border-radius: 24px;
  
    display: flex;
    flex-direction: column; /* 👈 važno */
    align-items: center;
    justify-content: center;
  
    gap: 12px; /* razmak između slike i teksta */
  
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
  
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }
  
  .sponsor-slide img {
    max-width: 70%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
    opacity: 0.95;
  }
  .sponsor-name {
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
  
    color: rgba(255, 255, 255, 0.75);
  
    text-align: center;
  }
  .sponsor-slide:hover .sponsor-name {
    color: #d36aac;
    transition: 0.3s;
  }


  .organisers {
    position: relative;
    padding: 140px 60px 120px;
    background: transparent;
    overflow: hidden;
  }
  
  .organisers::before {
    display: none;
  }
 
  
  .organisers-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* NASLOV */
  .organisers-title {
    text-align: center;
    font-size: 48px;
    color: #fff;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* GRID */
 
 
  .organisers-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start; /* bolje nego center */
    gap: 40px;
    width: 100%;
  }
  
  /* KARTICE */
  .organiser-card {
    text-align: left;
  }
  
  /* SLIKA */
  .organiser-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 25px;
  
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    clip-path: polygon(
      0 0,
      92% 0,
      100% 100%,
      0% 100%
    );
  }
  
  .organiser-image img {
    width: 100%;
    height: 490px;
    object-fit:cover;
    display: block;
  }
  .organiser-card.left .organiser-image img {
    object-position: center 25%; /* ili npr center 20% */
  }
  /* IME */
  .organiser-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
  
    background: linear-gradient(to right, #ff6ec7, #c94a9b, #8e2a6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* TEKST */
  .organiser-card p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
  }
  
  /* CENTRALNI LOGO */
  .organiser-center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .organiser-center-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
  
    padding: 20px;
    border-radius: 16px;
  
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
  
    border: 1px solid rgba(255,255,255,0.08);
  
    box-shadow:
      0 20px 40px rgba(0,0,0,0.4),
      0 0 20px rgba(201,74,155,0.2);
  }



  .smjestaj {
    padding: 100px 10%;
    background: transparent;
    color: white;
  }
  
  .smjestaj-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  
  .smjestaj-text {
    flex: 1;
  }
  
  .smjestaj-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .smjestaj-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ddd;
  }
  
  .btn-smjestaj {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff4da6, #a64dff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  .btn-smjestaj:hover {
    opacity: 0.8;
  }
  
  .smjestaj-slika {
    flex: 1;
  }
  
  .smjestaj-slika img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    opacity: 50%;
  }


  .about-camp,
.camp-details,
.smjestaj,
.organisers,
.sponsors-section {
  position: relative;
}

.about-content,
.camp-details-inner,
.smjestaj-container,
.organisers-inner,
.sponsors-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
  
@media (max-width: 991px) {
  .about-camp {
    flex-direction: column;
    min-height: auto;
    padding: 70px 20px 40px;
  }

  .about-image,
  .about-content {
    width: 100%;
    padding: 0;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
  }

  .about-content {
    text-align: center;
  }

  .intro {
    font-size: 18px;
  }

  .arrow-list {
    text-align: left;
    max-width: 620px;
    margin: 20px auto;
  }

  .arrow-list li {
    font-size: 17px;
  }

  .highlight {
    font-size: 20px;
  }

  .camp-details {
    padding: 140px 20px 70px;
  }

  .camp-details h2 {
    font-size: 38px;
    margin-top: 110px;
    margin-bottom: 40px;
  }

  .camp-columns {
    flex-direction: column;
    gap: 50px;
  }

  .camp-column {
    width: 100%;
  }

  .camp-column h3 {
    font-size: 28px;
  }

  .info-list li,
  .goals-list li {
    font-size: 20px;
    padding-left: 24px;
  }

  .camp-short-text {
    font-size: 18px;
    max-width: 100%;
    margin: 30px auto 0;
  }

  .camp-info-btn {
    min-width: unset;
    width: 100%;
    max-width: 420px;
    font-size: 18px;
    padding: 18px 24px;
  }

  .big-countdown {
    top: 20px;
    width: calc(100% - 30px);
    max-width: 700px;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .big-countdown .time-box {
    min-width: 0;
    flex: 1;
    padding: 12px 8px;
  }

  .big-countdown .time-box span {
    font-size: 34px;
  }

  .big-countdown .time-box small {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .smjestaj {
    padding: 80px 20px;
  }

  .smjestaj-container {
    flex-direction: column;
    gap: 30px;
  }

  .smjestaj-text {
    text-align: center;
  }

  .smjestaj-text h2 {
    font-size: 34px;
  }

  .smjestaj-text p {
    font-size: 17px;
  }

  .organisers {
    padding: 90px 20px;
  }

  .organisers-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .organisers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .organiser-center-logo {
    order: -1;
  }

  .organiser-center-logo img {
    width: 110px;
    height: 110px;
  }

  .organiser-image img {
    height: auto;
    max-height: 420px;
  }

  .organiser-card {
    text-align: center;
  }

  .organiser-card h3 {
    font-size: 24px;
  }

  .organiser-card p {
    font-size: 16px;
  }

  .sponsors-section {
    padding: 80px 20px 90px;
  }
  
  .sponsors-kicker {
    font-size: 24px;
    margin-bottom: 35px;
  }
  
  .sponsors-carousel {
    overflow: hidden;
    width: 100%;
  }
  
  .sponsors-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  
  .sponsor-slide {
    flex: 0 0 calc((100% - 16px) / 2);
    height: 160px;
    border-radius: 18px;
  }
  
  .sponsor-slide img {
    max-width: 68%;
    max-height: 70px;
  }
  
  .sponsor-name {
    font-size: 13px;
  }

}


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;
  }
}
