/* ============================================
   NEMANJA PETROVIC - PERSONAL WEBSITE
   Index: 87/2025
   Matematicki fakultet, Beograd
   ============================================ */

/* Reset i osnovni stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Boje */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #f5f5f5;
    --text-dark: #1a1a2e;
    --text-muted: #888;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    
    /* Fontovi */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    
    /* Velicine */
    --nav-height: 70px;
    --container-width: 1200px;
    --section-padding: 80px;
    
    /* Tranzicije */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* ============================================
   NAVIGACIJA
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo a {
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.nav-logo a:hover {
    color: var(--highlight-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: var(--transition-medium);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--highlight-color);
}

.nav-contact {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   HERO SEKCIJA - POCETNA
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 20s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(22, 33, 62, 0.7) 50%,
        rgba(15, 52, 96, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-small {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.title-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.cta-button:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   KONTEJNERI I SEKCIJE
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: var(--section-padding) 0;
}

/* ============================================
   O MENI SEKCIJA
   ============================================ */

.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--highlight-color);
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Liste */
.skills-list {
    list-style: none;
    margin: 1.5rem 0;
}

.skills-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.skills-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

/* ============================================
   EDUKACIJA SEKCIJA
   ============================================ */

.education-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.education-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.education-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--highlight-color);
}

/* Tabele */
.education-table,
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.education-table th,
.education-table td,
.stats-table th,
.stats-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.education-table th,
.stats-table th {
    background: rgba(233, 69, 96, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.education-table tr:hover,
.stats-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Awards lista */
.awards-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.awards-list li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
}

/* ============================================
   INTERESI SEKCIJA
   ============================================ */

.interests-section {
    background: var(--bg-light);
}

.interests-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.interest-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.interest-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.interest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.interest-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.interest-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info p {
    margin: 0.5rem 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--highlight-color);
}

.footer-contact a {
    color: var(--highlight-color);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   TEMA STRANA - DEAD INTERNET THEORY
   ============================================ */

.topic-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.topic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: -1;
}

.topic-hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.topic-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fff, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topic-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.topic-main {
    background: var(--bg-light);
    padding: 4rem 0;
}

.topic-section {
    margin-bottom: 4rem;
}

.topic-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.topic-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--highlight-color);
}

.topic-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Koncept kartice */
.concepts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.concept-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    opacity: 0;
    transform: translateY(20px);
}

.concept-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.concept-card h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Argumenti */
.arguments-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.argument-for,
.argument-against {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.argument-for.animate-in,
.argument-against.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.argument-for h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.argument-against h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.argument-for ul,
.argument-against ul {
    list-style: none;
}

.argument-for li,
.argument-against li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.argument-for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.argument-against li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Implikacije */
.implications-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.implications-list li {
    padding: 1rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Reference */
.references {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
}

.references h2 {
    color: var(--text-light) !important;
}

.references-list {
    list-style: none;
}

.references-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.references-list a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.references-list a:hover {
    text-decoration: underline;
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================
   KONTAKT STRANA
   ============================================ */

.contact-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(15, 52, 96, 0.8) 100%
    );
    z-index: -1;
}

.contact-hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-main {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Kontakt informacije */
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateX(-20px);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.contact-item p {
    margin: 0.5rem 0;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--highlight-color);
    text-decoration: none;
}

/* Kontakt forma */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--highlight-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio i checkbox */
.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal !important;
}

.radio-label input,
.checkbox-label input {
    width: auto !important;
}

.checkbox-group {
    margin-top: 1rem;
}

/* Dugmad */
.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--highlight-color);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Lokacija */
.location-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.location-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* FAQ */
.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVNOST
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concepts-grid,
    .arguments-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .nav-links {
        margin: 1rem 0;
        gap: 1rem;
    }
    
    .title-large {
        font-size: 2.5rem;
    }
    
    .topic-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .title-large {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .topic-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMACIJE I EFEKTI
   ============================================ */

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--highlight-color);
}

/* Selekcija teksta */
::selection {
    background: var(--highlight-color);
    color: white;
}
