/* Osnovni Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
	overflow-x: hidden; /* Sprečava horizontalno skrolovanje na mobilnom */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigacija */
.navbar {
    background: #0a1d37;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
	gap: 20px;
}

.nav-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 600;
}

.btn {
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.btn-orange { background: #f59e0b; color: white; }
.btn-blue { background: #1e40af; color: white; margin-left: 5px; }
.btn-dark { background: #0a1d37; color: white; margin-top: 20px; }
.btn-outline { border: 2px solid white; color: white; }

/* Hero Sekcija */
.hero {
    background: linear-gradient(rgba(10, 29, 55, 0.7), rgba(10, 29, 55, 0.7)), url("assets/hero.jpg"); /* Slika NTP */
    background-size: cover;
    background-position: center;
	min-height: 600px;
	display: block;
    color: white;
    padding: 80px 0;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-small {
    background: linear-gradient(rgba(10, 29, 55, 0.7), rgba(10, 29, 55, 0.7)), url("assets/hero-mali.jpg"); /* Isečena slika NTP */
    background-size: cover;
    background-position: center;
	display: block;
    color: white;
	min-height: 400px;
    max-height: 400px;
    overflow: hidden;
    padding: 80px 0;
}


.location-date {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.hero-actions {
    margin-top: 30px;
}

.download-link {
    display: block;
    margin-top: 15px;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

/* Deadline Card */
.deadline-card {
    background: rgba(10, 29, 55, 0.9);
    padding: 30px;
    border-radius: 8px;
    width: 360px;
    border-top: 4px solid #f59e0b;
}

.deadline-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.deadline-card .date {
    color: #fbbf24;
    font-weight: bold;
    margin-bottom: 15px;
}

.deadline-card hr {
    border: 0;
    border-top: 1px solid #444;
    margin-bottom: 15px;
}

.countdown {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    font-size: 18px;
}

.countdown span {
    font-size: 24px;
    font-weight: bold;
}

/* Sections */
.section-title {
    margin: 40px 0 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    font-size: 22px;
}

.section-gray {
    background: #ffffff;
    padding: 20px 0;
}

/* Grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border: 1px solid #e5e7eb;
	border-radius: 8px;
	
	display: flex;
	align-items: center;
	text-align: left;
	gap: 20px;
}


.feature-item i {
    font-size: 30px;
    color: #f59e0b;
    flex-shrink: 0;
}

.feature-item p {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.feature-item-tema {
    background: white;
	padding: 20px;
	display: flex;
	border-radius: 8px;
	align-items: center;
	text-align: left;
	gap: 80px;
}


.feature-item-tema i {
    font-size: 30px;
    color: #f59e0b;
    flex-shrink: 0;
	width: 33.5px;
	height: 30px;
	align-items: center;
	
}

.feature-item-tema p {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.speaker-card {
    border: 1px solid #e5e7eb;
}

.speaker-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.speaker-info {
    padding: 15px;
}

.speaker-info h4 { margin-bottom: 5px; }
.speaker-info .org { color: #666; font-size: 13px; }
.speaker-info .topic { font-style: italic; margin-top: 10px; font-weight: 600; }

.topics-grid {
    display: grid;
    /* Automatski pravi kolone koje su bar 250px široke, ali se šire da popune prostor */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.text-center { text-align: center; margin-bottom: 50px; }

/* TODO: Odavde je dodato do sledećeg TODO markera, proveri */

/* Vertikalna lista za Travel opcije */
.travel-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.travel-list .feature-item p {
    margin-bottom: 10px; /* Ovo pravi razmak ispod naslova "By Bus" */
    font-size: 17px; /* Blago veći naslov za bolju čitljivost */
    color: var(--primary-blue);
}

/* Razmak između ikonice i celog tekstualnog bloka */
.travel-list .feature-item {
    gap: 25px; /* Razmak između ikonice levo i teksta desno */
    align-items: flex-start; /* Poravnava ikonicu sa vrhom teksta */
    padding: 30px;
}

/* Stil za dodatni tekst (span) */
.travel-list .feature-item span {
    display: block; /* Osigurava da tekst uvek krene u novom redu ispod naslova */
    line-height: 1.7;
    color: #555;
}

/* Stil za ikonicu unutar Google Maps dugmeta */
.btn-outline i {
    margin-right: 8px;
    font-size: 14px;
}
/* Info box na Venue strani */
.info-box {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8fafc; /* Veoma svetlo siva/plava */
    border-left: 4px solid var(--accent-yellow); /* Tvoja zlatna boja */
    font-style: italic;
    font-size: 15px;
    color: #4b5563; /* Tamno siva za bolju čitljivost */
}

.info-box p {
    margin-bottom: 10px !important;
}

.info-box p:last-child {
    margin-bottom: 0 !important;
}

.info-box a {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: underline;
}

.info-box a:hover {
    color: var(--accent-yellow);
}

.info-box strong {
    font-style: normal; /* Naslov unutar boxa da ne bude u italiku */
    color: var(--primary-blue);
}

/* Venue Hero */
.venue-hero {
    background: #0a1d37;
    color: white;
    padding: 50px 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--accent-yellow);
    margin-top: 30px;
}

.venue-hero i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    display: block;
}

/* TODO: Do ovde je dodato za venue. U nastavku je još dodato za submissions do sledećeg TODO: */

/* Stil za Download kartice - tri jednake kolone na desktopu*/
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; /* Tri jednaka dela */
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

/* Stil za pojedinačni box */
.download-box {
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
}

/* Žuta boja za ikonice */
.download-box i {
    font-size: 30px;
    color: #f59e0b !important; /* TVOJA ŽUTA BOJA */
    flex-shrink: 0;
}

.download-box:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.download-box p {
    margin: 0 !important;
    font-size: 16px;
    color: #0a1d37;
}

.download-box span {
    font-size: 12px;
    color: #64748b;
}

.submission-note {
    margin-top: 50px; /* Povećan razmak iznad napomene */
    background: #f8fafc;
    border-left: 4px solid #f59e0b;
    padding: 20px;
}

/* Stil za tekstualni deo prijave */
.submission-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Diskretno ali jasno upozorenje za email */
.warning-box {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.warning-box i {
    font-size: 22px;
    color: #f59e0b;
}

/* --- COMPLIANCE & ETHICS BOX --- */
.compliance-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.compliance-header i {
    font-size: 24px;
    color: #f59e0b; /* Tvoja zlatno-žuta boja */
}

.compliance-header h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compliance-body p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 15px;
}

/* Posebna napomena za plagijat */
.plagiarism-note {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 14px;
    border-left: 4px solid var(--primary-blue);
}

.plagiarism-note i {
    color: var(--primary-blue);
}

/* Tekst upozorenja */
.warning-text {
    color: #c53030 !important; /* Tamno crvena za ozbiljnost */
    font-weight: 500;
}

/* Veće i uočljivije dugme */
.btn-large {
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(191, 34, 39, 0.2); /* Blaga senka u boji dugmeta */
}

.btn-large i {
    margin-left: 10px;
    font-size: 14px;
}

.btn-large:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(191, 34, 39, 0.3);
}

/* Centriranje */
.text-center {
    text-align: center;
}

/* --- REGISTRATION TABLE --- */
.table-container {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pricing-table th {
    background: #0a1d37;
    color: white;
    text-align: left;
    padding: 18px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
    font-size: 15px;
}

.pricing-table .price {
    font-weight: 700;
    color: #0a1d37;
}

.pricing-table .uklj {
    font-weight: 700;
    color: #f59e0b;
}

.included-item i {
    color: #f59e0b; /* Žuta boja kvačica/ikonica */
    font-size: 18px;
}

.table-subheader {
    background: #f8fafc;
}

.table-subheader td {
    font-weight: 700;
    color: #f59e0b; /* Tvoja žuta boja */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #edf2f7;
}

/* --- INCLUDED ITEMS GRID --- */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a5568;
}

.included-item i {
    color: #f59e0b; /* Žuta boja kvačica/ikonica */
    font-size: 18px;
}

/* TODO: Do ovde je dodato za submissions. ima i mali deo u delu za mobilne, isto je obeleženo sa TODO */

/* TODO: ovo je dodato za adresu na contact page: */
/* Stil za box sa adresom */
.address-box {
    display: flex;
    align-items: flex-start; /* Poravnava ikonicu sa prvim redom teksta */
    gap: 20px;
    padding: 25px !important; /* Malo više prostora unutra */
}

/* Stil za samu ikonicu */
.address-icon {
    color: #f59e0b !important; /* TVOJA ŽUTA BOJA */
    font-size: 24px;
    margin-top: 5px; /* Spušta je malo da bude u ravni sa prvim redom naslova */
    flex-shrink: 0;
}

.address-content strong {
    font-size: 18px;
    color: #0a1d37;
    display: block;
    margin-bottom: 5px;
}

.address-content p {
    margin-bottom: 0 !important;
    font-size: 15px;
}

/* TODO: do ovde je dodato za adresu na contact page. */

/* Footer */
.main-footer {
    background: #0a1d37;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
    font-size: 12px;
}

.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
}

/* About Conference */
.about-conference {
    padding: 60px 0;
    background-color: #ffffff;
    line-height: 1.8;
}

.about-conference p {
    font-size: 18px;
    color: #555; /* Tamno siva kao na tvojoj slici */
    margin-bottom: 25px;
    max-width: 1000px; /* Ograničavamo širinu radi lakšeg čitanja */
}

.about-conference strong {
    color: #0a1d37; /* Ističemo ključne reči tamno plavom */
}

.welcome-text {
    font-style: italic;
    font-weight: 600;
    color: #0a1d37 !important;
    margin-top: 30px;
}

/* TIMELINE STILOVI */
.important-dates {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-subtitle {
    color: #64748b;
    margin-top: -20px;
    margin-bottom: 50px;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

/* Horizontalna linija */
.timeline-line {
    position: absolute;
    top: 50px; /* Pozicija linije u odnosu na tačke */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Tačka na liniji */
.dot {
    width: 16px;
    height: 16px;
    background-color: #f59e0b; /* Zlatno-žuta */
    border: 4px solid #fef3c7; /* Svetliji prsten oko tačke */
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.timeline-item:hover .dot {
    transform: scale(1.3);
}

/* Kartica sa datumom */
.date-card {
    background: white;
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    width: 90%;
    max-width: 180px;
    border: 1px solid #f1f5f9;
}

.event-title {
    display: block;
    font-weight: 700;
    color: #0a1d37;
    font-size: 14px;
    margin-bottom: 5px;
}

.event-date {
    display: block;
    color: #64748b;
    font-size: 13px;
}

/* --- FOOTER STIL (PLAVO-ZLATNA TEMA) --- */
.main-footer {
    background-color: #0a1d37; /* Tamno plava kao navigacija */
    color: white;
    padding: 60px 0 0 0;
    border-top: 4px solid #f59e0b; /* Zlatna linija na vrhu */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-icon-box {
    color: #f59e0b; /* Zlatne ikonice */
    font-size: 22px;
    margin-top: 5px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1; /* Svetlo siva za bolju čitljivost na tamnom */
}

.footer-text strong {
    color: white;
}

.footer-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.phone-number {
    font-weight: 600;
}

/* Donji bar */
.footer-bottom {
    background-color: #061224; /* Još tamnija nijansa plave */
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
}


/* Stil za hamburger ikonicu - sakrivena na desktopu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Accordion Controls */
    .accordion-controls {
      display: flex;
      gap: 10px;
      margin-bottom: 1.5rem;
    }

    .accordion-controls button {
      padding: 8px 18px;
      border: 2px solid #0a1d37;
      background: white;
      color: #0a1d37;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .accordion-controls button:hover {
      background: #0a1d37;
      color: white;
    }

    /* ==========================================
       ACCORDION
       ========================================== */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 2rem;
    }

    .accordion-item {
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .accordion-header {
      width: 100%;
      background: white;
      border: none;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Open Sans', sans-serif;
      transition: background 0.2s;
    }

    .accordion-header:hover {
      background: #f8fafc;
    }

    .accordion-header.active {
      background: #f0f4ff;
      border-bottom: 2px solid #f59e0b;
    }

    .accordion-title {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .accordion-title .icon {
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .accordion-title h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #0a1d37;
      text-align: left;
    }

    .accordion-arrow {
      color: #f59e0b;
      font-size: 1.1rem;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .accordion-header.active .accordion-arrow {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .accordion-content.open {
      max-height: 1000px;
    }

    .accordion-inner {
      padding: 20px 20px 20px 52px;
      border-top: 1px solid #e2e8f0;
    }

    .accordion-inner ul {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 6px 20px;
    }

    .accordion-inner ul li {
      font-size: 14px;
      color: #4a5568;
      padding: 4px 0 4px 16px;
      position: relative;
      line-height: 1.4;
    }

    .accordion-inner ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      background: #f59e0b;
      border-radius: 50%;
    }
	
	.leadership-role {
      margin-bottom: 1.5rem;
    }

    .leadership-role:last-child {
      margin-bottom: 0;
    }

    .role-title {
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      color: #f59e0b;
    }

    .role-person {
      font-size: 1.1rem;
    }

    .role-person .name {
      font-weight: 600;
    }

.committees-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .card {
      background: var(--white);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: var(--shadow);
	  margin-top: 50px;
      border: 1px solid var(--border);
    }

    .card h2 {
      font-family: 'Open Sans', sans-serif; 
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.75rem;
      border-bottom: 3px solid var(--accent);
    }

    .committee-section {
      margin-bottom: 1.5rem;
    }

    .committee-section:last-child {
      margin-bottom: 0;
    }

    .section-title {
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .member-list {
      line-height: 1.8;
    }

    .member {
      padding: 0.25rem 0;
    }

    .member .name {
      font-weight: 600;
      color: var(--text);
    }

    .member .affiliation {
      color: var(--text-light);
      font-size: 0.9rem;
    }
	
	.cta-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta-btn {
      display: inline-block;
      padding: 10px 24px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
    }

    .cta-btn-primary {
      background: #f59e0b;
      color: #0a1d37;
    }

    .cta-btn-primary:hover { background: #d97706; color: white; }

    .cta-btn-secondary {
      background: white;
      color: #0a1d37;
      border: 2px solid #0a1d37;
    }

    .cta-btn-secondary:hover { background: #0a1d37; color: white; }
	
	/* ==========================================
       PARTNER GRIDS
       ========================================== */
    .partners-grid {
      display: grid;
      gap: 20px;
    }

    .partners-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .partners-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .partners-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

    /* Partner Card */
    .partner-card {
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      transition: box-shadow 0.2s, transform 0.2s;
      background: #fafafa;
	  text-decoration: none;
    }

    .partner-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.09);
      transform: translateY(-2px);
    }

    /* Logo placeholder box */
    .partner-logo-box {
      width: 100%;
      height: 100px;
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .partner-logo-box img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
    }

    /* Fallback placeholder when no image */
    .partner-logo-box .logo-placeholder {
      font-size: 13px;
      color: #94a3b8;
      font-style: italic;
    }

    .partner-name {
      font-size: 16px;
      font-weight: 700;
      color: #0a1d37;
      /*line-height: 1.3; */
    }

    .partner-country {
      font-size: 15px;
      color: #0a1d37;
    }

    .partner-link {
      font-size: 15px;
      color: #1e40af;
      font-weight: 600;
    }

    .partner-link:hover { /*text-decoration: underline; */ }
	
	.publication-list {
    display: flex;
    flex-direction: column;
    gap: 20px; / Razmak između dva velika bloka /
    width: 100%;
}

.publication-row {
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important; / Poravnava ikonu sa vrhom teksta /
    padding: 30px;
    background: white;
    border: 1px solid #e2e8f0;
}

/ Razmak između Naslova i Teksta unutar bloka /
.pub-title {
    margin-bottom: 15px !important; / VEĆI RAZMAK koji si tražila /
    font-size: 18px;
    color: #0a1d37;
}

.pub-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0 !important;
}

/ Indexing tagovi ispod teksta /
.indexing-tags {
    margin-top: 15px;
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
}

/ Isticanje žurnala */
.journal-highlight {
    border-left: 5px solid #f59e0b !important;
    background: #fffcf5 !important;
}

.journal-highlight i {
    color: #f59e0b !important;
}

.journal-details-box {
    margin-top: 30px;
    border-left: 4px solid #0a1d37;
}

/*  CAROUSEL     */
.carousel-wrapper {
  width: 100%;
  margin: 30px 0 10px;
}

/* Wrapper koji održava aspect-ratio 3:2 */
.carousel-ratio {
  position: relative;
  width: 100%;
  padding-top: 66.666%; /* 2/3 * 100 = aspect-ratio 3:2 */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 29, 55, 0.18);
  background: #e5e7eb;
}

/* Carousel se apsolutno pozicionira unutar ratio wrappera */
.carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 10px;
}

/* Slides traka */
.slides {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.slide.active img {
  transform: scale(1.04);
}

/* Prev / Next buttons */
.carousel-btn-prev,
.carousel-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 29, 55, 0.55);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.carousel-btn-prev { left: 16px; }
.carousel-btn-next { right: 16px; }

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
  background: rgba(245, 158, 11, 0.85);
  border-color: #f59e0b;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn-prev:active,
.carousel-btn-next:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev svg,
.carousel-btn-next svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: #f59e0b;
  width: 22px;
  border-radius: 4px;
}

/* Counter */
.carousel-counter {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  background: rgba(10, 29, 55, 0.55);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #f59e0b;
  z-index: 10;
  transition: width linear;
}


/* Prilagođavanje za mobilne telefone i tablete */
@media (max-width: 850px) {
    .hamburger {
        display: block; /* Prikazuje se samo na mobilnom */
    }
	
	.carousel-btn-prev,
  .carousel-btn-next {
    width: 38px;
    height: 38px;
  }

  .carousel-btn-prev { left: 8px; }
  .carousel-btn-next { right: 8px; }

  .carousel-btn-prev svg,
  .carousel-btn-next svg {
    width: 15px;
    height: 15px;
  }

  .carousel-dots { bottom: 10px; }

  .carousel-counter {
    font-size: 11px;
    top: 10px;
    right: 10px;
  }
	
	.publication-row {
        padding: 20px;
        gap: 15px;
    }
	
	 .partners-grid.cols-2,
      .partners-grid.cols-3,
      .partners-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
	
	 .card {
        padding: 1.5rem;
      }

      .card h2 {
        font-size: 1.2rem;
      }

      .leadership-card {
        padding: 1.5rem;
      }
	
	 .accordion-inner ul {
        grid-template-columns: 1fr;
      }

    .nav-links {
        display: none; /* Sakrivamo meni po defaultu */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Ispod navigacije */
        left: 0;
        width: 100%;
        background: #0a1d37;
        padding: 20px 0;
        z-index: 100;
        border-bottom: 3px solid #f59e0b;
    }

    /* Klasa koju će JavaScript dodati na klik */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        padding: 10px;
    }

    .nav-buttons {
        margin-right: 10px;
    }
    
    /* Menjamo flex-direction iz horizontalnog u vertikalno */
    .hero-flex {
        flex-direction: column;
        text-align: center; /* Centriramo tekst na mobilnom */
    }

    .hero-content {
        margin-bottom: 40px; /* Razmak između teksta i kartice sa datumima */
    }

    .hero-content h1 {
        font-size: 28px; /* Smanjujemo font naslova da bi stao na ekran */
    }

    /* Kartica sa rokovima (Deadline Card) */
    .deadline-card {
        width: 100%; /* Kartica sada zauzima punu širinu */
        max-width: 400px; /* Ali ne više od 400px da ne bi bila preširoka */
        margin: 0 auto; /* Centriramo je */
    }

    /* Prilagođavanje dugmića za mobilni */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        margin-left: 0;
        width: 100%;
    }
	
	/* About Conference */
	.about-conference {
        padding: 40px 20px;
        text-align: left;
    }
    .about-conference p {
        font-size: 16px;
    }

    /* Ostale sekcije - prebacivanje u jednu kolonu */
    .features-grid, .speakers-grid {
        grid-template-columns: 1fr; /* Sve ide jedno ispod drugog */
    }
	
	.features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolone na manjim ekranima */
	}
	
	.topics-grid {
        grid-template-columns: 1fr;
    }
	
	.timeline-line {
        display: none !important; /* Sakrivamo horizontalnu liniju na mobilnom */
    }

     .timeline-items {
        flex-direction: column !important; /* Force-uje vertikalni raspored */
        align-items: flex-start !important;
        gap: 30px;
        padding-left: 10px;
    }
	
	.timeline-item {
        flex-direction: row !important; /* Na mobilnom tačka ide levo, a kartica desno */
        justify-content: flex-start;
        width: 100%;
        text-align: left;
    }

    .dot {
        margin-bottom: 0 !important;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .date-card {
        width: 100% !important;
        max-width: none !important;
        text-align: left !important;
        padding: 15px 20px;
    }
	
	.footer-grid {
        grid-template-columns: 1fr !important; /* Sve ide u jednu kolonu */
        gap: 40px !important;
    }

    .footer-col {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-text {
        text-align: left;
    }
	
	/* TODO: Podešavanje za tabelu sa cenama: */
	.pricing-table th, .pricing-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
	
	/* TODO: I za dugmiće za download template-a kod submissions */
	.download-grid {
        grid-template-columns: 1fr !important; /* Na mobilnom idu jedan ispod drugog */
        gap: 15px !important;
    }
    
    .download-box {
        width: 100% !important;
        padding: 20px !important;
    }
}
}