.phone-link {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4757;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        text-align: center;
        order: -1;
    }

    nav ul {
        justify-content: center;
        gap: 15px;
    }
}

.inst-icon{
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.inst-icon:hover {
    transform: scale(1.15); /* увеличение */
    filter: brightness(1.2); /* чуть ярче */
}

.tik-tok{
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.tik-tok:hover {
    transform: scale(1.15); /* увеличение */
    filter: brightness(1.2); /* чуть ярче */
}

nav ul li {
    height: 60px;
    display: flex;
    flex-direction: column; /* чтобы номер и время были друг под другом */
    align-items: center;    /* центр по горизонтали */
    justify-content: center;/* центр по вертикали (если есть высота) */
    text-align: center;     /* центр текста */
}


.niz {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.tik-tok {
    width:38px;
    height: 38px;
}