/* === Сброс стилей === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", "Helvetica Neue", sans-serif;
}
html {
    scroll-behavior: smooth;
}

html, body {

    background-color: rgba(204, 204, 204, 0.40);

}

#tsparticles {
    position: fixed;   /* фиксируем на весь экран */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;       /* чтобы контент был поверх */
}


body {
    font-size: 16px;
    line-height: 1.5;
}

div.container{

    padding: 0 3% 0 3% ;

    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    box-sizing: border-box;
    flex-direction: column;
}


/* === Шапка === */

header {
    margin: 0 auto;

    background: rgba(255 255 255 / 63%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* общая шапка */
.header-container {

    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}



/* бургер */
.burger {
    display: none; /* по умолчанию скрыт */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
}

/* мобильная версия */
@media (max-width: 768px) {
    .header-left,
    .header-right {
        display: none !important;
    }

    .burger {
        display: flex;
    }
    header .logo {
        height: 40px !important;
        cursor: pointer;
    }
}


/* логотип */
header .logo {
    height: 50px;
    cursor: pointer;
}

/* меню слева */
.header-left {
    display: flex;
    gap: 30px;
}

.header-left a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-left a:hover {
    color: #432e6c;
}

/* блок справа */
.header-right a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
}





