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

body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 0.9vw, 20px);
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    left: 40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fa037e;
    display: none;
}

/* контейнер */
.container {
    max-width: 700px;
    margin: auto;
    padding: 60px 20px;
}

/* header */
.header {
    margin-bottom: 80px;
}

.header h1 {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.header p {
    margin-top: 6px;
    color: #888;
    font-size: 14px;
}


/* ICON */

.socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.socials img {
    filter: grayscale(100%);
    width: 23px;
    height: 23px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.socials img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

/* SECTION */
.section h2 {
    position: relative;
    padding-bottom: 10px;
}


h2 {
    color: rgb(47, 31, 17);
}


/* BLOCK */
.block {
    margin: 40px 0 50px;
}

.block h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #999;
    margin-bottom: 12px;
}

/* LIST */
.block ul {
    list-style: none;
}

.block li {
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
    transition: transform 0.2s ease;
}

.block li::before {
    content: "|";
    position: absolute;
    left: 0;
    color: #999;
}

.block li:hover {
    transform: translateX(1px);
}

.block:nth-child(1) { animation-delay: 0.2s; }
.block:nth-child(2) { animation-delay: 0.5s; }
.block:nth-child(3) { animation-delay: 0.8s; }

/* LINKS */


.link {
    color: #111;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link:hover {
    color: #f02206;
}

.my-link:hover {
    color: rgb(174, 200, 204); /* Стили при наведении */
}

/* вторичный текст */
.dirstyle {
    font-style: italic;
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
    white-space: normal;
}

/* разделитель */
.block + .block {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* 🔥 FADE-IN (через JS) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* 📱 MOBILE */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    .header h1 {
        font-size: 26px;
    }

    body::before {
        left: 12px;
        opacity: 0.3;
    }
}

/* 📱 SMALL MOBILE */
@media (max-width: 480px) {
    body::before {
        display: none;
    }
}

/* 🖥 4K / BIG SCREENS */
@media (min-width: 2000px) {
    .container {
        max-width: 900px;
    }

    body {
        font-size: 20px;
    }
}

@media (min-width: 3000px) {
    body {
        font-size: 24px;
    }
}


