/* MAIN.CSS - Zaktualizowany z nową paletą kolorów */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary, 'Arial', sans-serif);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    margin: 0;
    padding: 0;
}

/* Custom cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-primary);
    mix-blend-mode: difference;
}

/* Cursor na ciemnych sekcjach */
.cursor.dark-section {
    border-color: var(--color-secondary);
}

/* Main content */
.main-content {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Content container */
.content-container {
    position: relative;
    z-index: 2;
}



.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.2);
}

.dot:hover {
    border-color: var(--color-accent);
}

/* Slide up animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* DODAJ na koniec pliku css/main.css */

/* ===== POMARAŃCZOWE ZAZNACZENIE TEKSTU ===== */
::selection {
    background: #ff631e; /* Pomarańczowy jak na stronie */
    color: #ffffff; /* Biały tekst */
}

::-moz-selection {
    background: #ff631e; /* Dla Firefox */
    color: #ffffff;
}

/* ===== POMARAŃCZOWY PASEK PRZEWIJANIA ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Szare tło */
}

::-webkit-scrollbar-thumb {
    background: #ff631e; /* Pomarańczowy uchwyt */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a1f; /* Ciemniejszy przy hover */
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff631e #f1f1f1;
}